aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--example/reader_util.c25
-rw-r--r--src/include/ndpi_api.h3
-rw-r--r--src/include/ndpi_typedefs.h16
-rw-r--r--src/lib/ndpi_utils.c128
-rw-r--r--src/lib/protocols/ftp_control.c12
-rw-r--r--src/lib/protocols/mail_imap.c10
-rw-r--r--src/lib/protocols/mail_pop.c12
-rw-r--r--src/lib/protocols/mail_smtp.c149
8 files changed, 250 insertions, 105 deletions
diff --git a/example/reader_util.c b/example/reader_util.c
index dffd0128c..a8b91cd8e 100644
--- a/example/reader_util.c
+++ b/example/reader_util.c
@@ -948,25 +948,14 @@ void process_ndpi_collected_info(struct ndpi_workflow * workflow, struct ndpi_fl
snprintf(flow->info, sizeof(flow->info), "%s", flow->ndpi_flow->protos.ubntac2.version);
}
/* FTP */
- else if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_FTP_CONTROL) {
- if(flow->ndpi_flow->protos.ftp.username[0] != '\0')
+ else if((flow->detected_protocol.app_protocol == NDPI_PROTOCOL_FTP_CONTROL)
+ || /* IMAP */ (flow->detected_protocol.app_protocol == NDPI_PROTOCOL_MAIL_IMAP)
+ || /* POP */ (flow->detected_protocol.app_protocol == NDPI_PROTOCOL_MAIL_POP)
+ || /* SMTP */ (flow->detected_protocol.app_protocol == NDPI_PROTOCOL_MAIL_SMTP)) {
+ if(flow->ndpi_flow->protos.ftp_imap_pop_smtp.username[0] != '\0')
snprintf(flow->info, sizeof(flow->info), "User: %s][Pwd: %s",
- flow->ndpi_flow->protos.ftp.username,
- flow->ndpi_flow->protos.ftp.password);
- }
- /* IMAP */
- else if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_MAIL_IMAP) {
- if(flow->ndpi_flow->protos.imap.username[0] != '\0')
- snprintf(flow->info, sizeof(flow->info), "User: %s][Pwd: %s",
- flow->ndpi_flow->protos.imap.username,
- flow->ndpi_flow->protos.imap.password);
- }
- /* POP */
- else if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_MAIL_POP) {
- if(flow->ndpi_flow->protos.pop.username[0] != '\0')
- snprintf(flow->info, sizeof(flow->info), "User: %s][Pwd: %s",
- flow->ndpi_flow->protos.pop.username,
- flow->ndpi_flow->protos.pop.password);
+ flow->ndpi_flow->protos.ftp_imap_pop_smtp.username,
+ flow->ndpi_flow->protos.ftp_imap_pop_smtp.password);
}
/* KERBEROS */
else if(flow->detected_protocol.app_protocol == NDPI_PROTOCOL_KERBEROS) {
diff --git a/src/include/ndpi_api.h b/src/include/ndpi_api.h
index ad7f96fbd..372eddf72 100644
--- a/src/include/ndpi_api.h
+++ b/src/include/ndpi_api.h
@@ -837,8 +837,9 @@ extern "C" {
char *outbuf, u_int outbuf_len);
char* ndpi_ssl_version2str(u_int16_t version, u_int8_t *unknown_tls_version);
void ndpi_patchIPv6Address(char *str);
- void ndpi_user_pwd_payload_copy(u_int8_t *dest, u_int dest_len,
+ void ndpi_user_pwd_payload_copy(u_int8_t *dest, u_int dest_len, u_int offset,
const u_int8_t *src, u_int src_len);
+ u_char* ndpi_base64_decode(const u_char *src, size_t len, size_t *out_len);
int ndpi_flow2json(struct ndpi_detection_module_struct *ndpi_struct,
struct ndpi_flow_struct *flow,
diff --git a/src/include/ndpi_typedefs.h b/src/include/ndpi_typedefs.h
index 8eeb025e1..64644d76f 100644
--- a/src/include/ndpi_typedefs.h
+++ b/src/include/ndpi_typedefs.h
@@ -1130,7 +1130,8 @@ struct ndpi_flow_struct {
/* init parameter, internal used to set up timestamp,... */
u_int16_t guessed_protocol_id, guessed_host_protocol_id, guessed_category, guessed_header_category;
- u_int8_t l4_proto, protocol_id_already_guessed:1, host_already_guessed:1, init_finished:1, setup_packet_direction:1, packet_direction:1, check_extra_packets:1;
+ u_int8_t l4_proto, protocol_id_already_guessed:1, host_already_guessed:1,
+ init_finished:1, setup_packet_direction:1, packet_direction:1, check_extra_packets:1;
/*
if ndpi_struct->direction_detect_disable == 1
@@ -1235,17 +1236,10 @@ struct ndpi_flow_struct {
} http;
struct {
+ u_int8_t auth_found;
char username[16], password[16];
- } ftp;
-
- struct {
- char username[16], password[16];
- } imap;
-
- struct {
- char username[16], password[16];
- } pop;
-
+ } ftp_imap_pop_smtp;
+
struct {
/* Bittorrent hash */
u_char hash[20];
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c
index 58da998d0..dbe5d7901 100644
--- a/src/lib/ndpi_utils.c
+++ b/src/lib/ndpi_utils.c
@@ -756,23 +756,99 @@ void ndpi_patchIPv6Address(char *str) {
/* ********************************** */
void ndpi_user_pwd_payload_copy(u_int8_t *dest, u_int dest_len,
- const u_int8_t *src, u_int src_len) {
- u_int i, j, k = dest_len-1;
+ u_int offset,
+ const u_int8_t *src, u_int src_len) {
+ u_int i, j=0, k = dest_len-1;
- for(i=5, j=0; i<src_len; i++) {
- if((j == k) || ((src[i] == '\r')
- || (src[i] == '\n')
- || (src[i] == ' ')
- ))
+ for(i=offset; (i<src_len) && (j<=k); i++) {
+ if((j == k) || (src[i] < ' '))
break;
dest[j++] = src[i];
}
-
- dest[k] = '\0';
+
+ dest[j <=k ? j : k] = '\0';
+}
+
+/* ********************************** */
+/* ********************************** */
+
+/* http://web.mit.edu/freebsd/head/contrib/wpa/src/utils/base64.c */
+
+static const unsigned char base64_table[65] =
+ "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";
+
+/**
+ * base64_decode - Base64 decode
+ * @src: Data to be decoded
+ * @len: Length of the data to be decoded
+ * @out_len: Pointer to output length variable
+ * Returns: Allocated buffer of out_len bytes of decoded data,
+ * or %NULL on failure
+ *
+ * Caller is responsible for freeing the returned buffer.
+ */
+u_char* ndpi_base64_decode(const u_char *src, size_t len, size_t *out_len) {
+ u_char dtable[256], *out, *pos, block[4], tmp;
+ size_t i, count, olen;
+ int pad = 0;
+
+ memset(dtable, 0x80, 256);
+ for (i = 0; i < sizeof(base64_table) - 1; i++)
+ dtable[base64_table[i]] = (u_char) i;
+ dtable['='] = 0;
+
+ count = 0;
+ for (i = 0; i < len; i++) {
+ if (dtable[src[i]] != 0x80)
+ count++;
+ }
+
+ if (count == 0 || count % 4)
+ return NULL;
+
+ olen = count / 4 * 3;
+ pos = out = ndpi_malloc(olen);
+ if (out == NULL)
+ return NULL;
+
+ count = 0;
+ for (i = 0; i < len; i++) {
+ tmp = dtable[src[i]];
+ if (tmp == 0x80)
+ continue;
+
+ if (src[i] == '=')
+ pad++;
+ block[count] = tmp;
+ count++;
+ if (count == 4) {
+ *pos++ = (block[0] << 2) | (block[1] >> 4);
+ *pos++ = (block[1] << 4) | (block[2] >> 2);
+ *pos++ = (block[2] << 6) | block[3];
+ count = 0;
+ if (pad) {
+ if (pad == 1)
+ pos--;
+ else if (pad == 2)
+ pos -= 2;
+ else {
+ /* Invalid padding */
+ ndpi_free(out);
+ return NULL;
+ }
+ break;
+ }
+ }
+ }
+
+ *out_len = pos - out;
+
+ return out;
}
/* ********************************** */
+/* ********************************** */
int ndpi_flow2json(struct ndpi_detection_module_struct *ndpi_struct,
struct ndpi_flow_struct *flow,
@@ -894,31 +970,45 @@ int ndpi_flow2json(struct ndpi_detection_module_struct *ndpi_struct,
ndpi_serialize_start_of_block(serializer, "http");
if(flow->host_server_name[0] != '\0')
ndpi_serialize_string_string(serializer, "hostname", (const char*)flow->host_server_name);
- ndpi_serialize_string_string(serializer, "url", flow->http.url);
- ndpi_serialize_string_uint32(serializer, "code", flow->http.response_status_code);
+ ndpi_serialize_string_string(serializer, "url", flow->http.url);
+ ndpi_serialize_string_uint32(serializer, "code", flow->http.response_status_code);
ndpi_serialize_end_of_block(serializer);
break;
case NDPI_PROTOCOL_MAIL_IMAP:
ndpi_serialize_start_of_block(serializer, "imap");
- ndpi_serialize_string_string(serializer, "user", flow->protos.imap.username);
- ndpi_serialize_string_string(serializer, "password", flow->protos.imap.password);
+ ndpi_serialize_string_string(serializer, "user", flow->protos.ftp_imap_pop_smtp.username);
+ ndpi_serialize_string_string(serializer, "password", flow->protos.ftp_imap_pop_smtp.password);
+ ndpi_serialize_end_of_block(serializer);
+ break;
+
+ case NDPI_PROTOCOL_MAIL_POP:
+ ndpi_serialize_start_of_block(serializer, "pop");
+ ndpi_serialize_string_string(serializer, "user", flow->protos.ftp_imap_pop_smtp.username);
+ ndpi_serialize_string_string(serializer, "password", flow->protos.ftp_imap_pop_smtp.password);
+ ndpi_serialize_end_of_block(serializer);
+ break;
+
+ case NDPI_PROTOCOL_MAIL_SMTP:
+ ndpi_serialize_start_of_block(serializer, "smtp");
+ ndpi_serialize_string_string(serializer, "user", flow->protos.ftp_imap_pop_smtp.username);
+ ndpi_serialize_string_string(serializer, "password", flow->protos.ftp_imap_pop_smtp.password);
ndpi_serialize_end_of_block(serializer);
break;
case NDPI_PROTOCOL_FTP_CONTROL:
ndpi_serialize_start_of_block(serializer, "ftp");
- ndpi_serialize_string_string(serializer, "user", flow->protos.ftp.username);
- ndpi_serialize_string_string(serializer, "password", flow->protos.ftp.password);
+ ndpi_serialize_string_string(serializer, "user", flow->protos.ftp_imap_pop_smtp.username);
+ ndpi_serialize_string_string(serializer, "password", flow->protos.ftp_imap_pop_smtp.password);
ndpi_serialize_end_of_block(serializer);
break;
case NDPI_PROTOCOL_SSH:
ndpi_serialize_start_of_block(serializer, "ssh");
- ndpi_serialize_string_string(serializer, "client_signature", flow->protos.ssh.client_signature);
- ndpi_serialize_string_string(serializer, "server_signature", flow->protos.ssh.server_signature);
- ndpi_serialize_string_string(serializer, "hassh_client", flow->protos.ssh.hassh_client);
- ndpi_serialize_string_string(serializer, "hassh_server", flow->protos.ssh.hassh_server);
+ ndpi_serialize_string_string(serializer, "client_signature", flow->protos.ssh.client_signature);
+ ndpi_serialize_string_string(serializer, "server_signature", flow->protos.ssh.server_signature);
+ ndpi_serialize_string_string(serializer, "hassh_client", flow->protos.ssh.hassh_client);
+ ndpi_serialize_string_string(serializer, "hassh_server", flow->protos.ssh.hassh_server);
ndpi_serialize_end_of_block(serializer);
break;
diff --git a/src/lib/protocols/ftp_control.c b/src/lib/protocols/ftp_control.c
index 23d27f241..135096743 100644
--- a/src/lib/protocols/ftp_control.c
+++ b/src/lib/protocols/ftp_control.c
@@ -47,15 +47,15 @@ static int ndpi_ftp_control_check_request(struct ndpi_flow_struct *flow,
#endif
if(ndpi_match_strprefix(payload, payload_len, "USER")) {
- ndpi_user_pwd_payload_copy((u_int8_t*)flow->protos.ftp.username,
- sizeof(flow->protos.ftp.username),
+ ndpi_user_pwd_payload_copy((u_int8_t*)flow->protos.ftp_imap_pop_smtp.username,
+ sizeof(flow->protos.ftp_imap_pop_smtp.username), 5,
payload, payload_len);
return 1;
}
if(ndpi_match_strprefix(payload, payload_len, "PASS")) {
- ndpi_user_pwd_payload_copy((u_int8_t*)flow->protos.ftp.password,
- sizeof(flow->protos.ftp.password),
+ ndpi_user_pwd_payload_copy((u_int8_t*)flow->protos.ftp_imap_pop_smtp.password,
+ sizeof(flow->protos.ftp_imap_pop_smtp.password), 5,
payload, payload_len);
return 1;
}
@@ -1017,10 +1017,10 @@ static void ndpi_check_ftp_control(struct ndpi_detection_module_struct *ndpi_str
#ifdef FTP_DEBUG
printf("%s() [user: %s][pwd: %s]\n", __FUNCTION__,
- flow->protos.ftp.username, flow->protos.ftp.password);
+ flow->protos.ftp_imap_pop_smtp.username, flow->protos.ftp_imap_pop_smtp.password);
#endif
- if(flow->protos.ftp.password[0] == '\0')
+ if(flow->protos.ftp_imap_pop_smtp.password[0] == '\0')
flow->ftp_control_stage = 0;
else
ndpi_int_ftp_control_add_connection(ndpi_struct, flow);
diff --git a/src/lib/protocols/mail_imap.c b/src/lib/protocols/mail_imap.c
index 1ebb18487..24b596b6b 100644
--- a/src/lib/protocols/mail_imap.c
+++ b/src/lib/protocols/mail_imap.c
@@ -175,8 +175,8 @@ void ndpi_search_mail_imap_tcp(struct ndpi_detection_module_struct *ndpi_struct,
if(column) {
column[0] = '\0';
- snprintf(flow->protos.imap.username,
- sizeof(flow->protos.imap.username),
+ snprintf(flow->protos.ftp_imap_pop_smtp.username,
+ sizeof(flow->protos.ftp_imap_pop_smtp.username),
"%s", item);
column = strchr(&column[1], '"');
@@ -186,8 +186,8 @@ void ndpi_search_mail_imap_tcp(struct ndpi_detection_module_struct *ndpi_struct,
if(column) {
column[0] = '\0';
- snprintf(flow->protos.imap.password,
- sizeof(flow->protos.imap.password),
+ snprintf(flow->protos.ftp_imap_pop_smtp.password,
+ sizeof(flow->protos.ftp_imap_pop_smtp.password),
"%s", item);
}
}
@@ -319,7 +319,7 @@ void ndpi_search_mail_imap_tcp(struct ndpi_detection_module_struct *ndpi_struct,
|| (flow->l4.tcp.mail_imap_stage == 5)
|| (flow->l4.tcp.mail_imap_stage == 7)
) {
- if((flow->protos.imap.username[0] != '\0')
+ if((flow->protos.ftp_imap_pop_smtp.username[0] != '\0')
|| (flow->l4.tcp.mail_imap_stage >= 7)) {
NDPI_LOG_INFO(ndpi_struct, "found MAIL_IMAP\n");
ndpi_int_mail_imap_add_connection(ndpi_struct, flow);
diff --git a/src/lib/protocols/mail_pop.c b/src/lib/protocols/mail_pop.c
index 7d25d34df..c3ab9ffe0 100644
--- a/src/lib/protocols/mail_pop.c
+++ b/src/lib/protocols/mail_pop.c
@@ -70,8 +70,8 @@ static int ndpi_int_mail_pop_check_for_client_commands(struct ndpi_detection_mod
&& (packet->payload[1] == 'S' || packet->payload[1] == 's')
&& (packet->payload[2] == 'E' || packet->payload[2] == 'e')
&& (packet->payload[3] == 'R' || packet->payload[3] == 'r')) {
- ndpi_user_pwd_payload_copy((u_int8_t*)flow->protos.pop.username,
- sizeof(flow->protos.pop.username),
+ ndpi_user_pwd_payload_copy((u_int8_t*)flow->protos.ftp_imap_pop_smtp.username,
+ sizeof(flow->protos.ftp_imap_pop_smtp.username), 5,
packet->payload, packet->payload_packet_len);
flow->l4.tcp.pop_command_bitmask |= POP_BIT_USER;
@@ -80,8 +80,8 @@ static int ndpi_int_mail_pop_check_for_client_commands(struct ndpi_detection_mod
&& (packet->payload[1] == 'A' || packet->payload[1] == 'a')
&& (packet->payload[2] == 'S' || packet->payload[2] == 's')
&& (packet->payload[3] == 'S' || packet->payload[3] == 's')) {
- ndpi_user_pwd_payload_copy((u_int8_t*)flow->protos.pop.password,
- sizeof(flow->protos.pop.password),
+ ndpi_user_pwd_payload_copy((u_int8_t*)flow->protos.ftp_imap_pop_smtp.password,
+ sizeof(flow->protos.ftp_imap_pop_smtp.password), 5,
packet->payload, packet->payload_packet_len);
flow->l4.tcp.pop_command_bitmask |= POP_BIT_PASS;
@@ -172,10 +172,8 @@ void ndpi_search_mail_pop_tcp(struct ndpi_detection_module_struct
if((bit_count + flow->l4.tcp.mail_pop_stage) >= 3) {
if(flow->l4.tcp.mail_pop_stage > 0) {
NDPI_LOG_INFO(ndpi_struct, "mail_pop identified\n");
-
- // printf("==> %u\n", flow->l4.tcp.mail_pop_stage);
- if((flow->protos.pop.password[0] != '\0')
+ if((flow->protos.ftp_imap_pop_smtp.password[0] != '\0')
|| (flow->l4.tcp.mail_pop_stage > 3))
ndpi_int_mail_pop_add_connection(ndpi_struct, flow);
}
diff --git a/src/lib/protocols/mail_smtp.c b/src/lib/protocols/mail_smtp.c
index af3d628a4..5899027b9 100644
--- a/src/lib/protocols/mail_smtp.c
+++ b/src/lib/protocols/mail_smtp.c
@@ -1,8 +1,8 @@
/*
* mail_smtp.c
*
- * Copyright (C) 2009-2011 by ipoque GmbH
* Copyright (C) 2011-19 - ntop.org
+ * Copyright (C) 2009-2011 by ipoque GmbH
*
* This file is part of nDPI, an open source deep packet inspection
* library based on the OpenDPI and PACE technology by ipoque GmbH
@@ -19,7 +19,7 @@
*
* You should have received a copy of the GNU Lesser General Public License
* along with nDPI. If not, see <http://www.gnu.org/licenses/>.
- *
+ *
*/
@@ -45,17 +45,18 @@
#define SMTP_BIT_RSET 0x1000
#define SMTP_BIT_TlRM 0x2000
+/* #define SMTP_DEBUG 1 */
+
static void ndpi_int_mail_smtp_add_connection(struct ndpi_detection_module_struct
- *ndpi_struct, struct ndpi_flow_struct *flow)
-{
- ndpi_set_detected_protocol(ndpi_struct, flow, NDPI_PROTOCOL_MAIL_SMTP, NDPI_PROTOCOL_UNKNOWN);
+ *ndpi_struct, struct ndpi_flow_struct *flow) {
+ ndpi_set_detected_protocol(ndpi_struct, flow,
+ NDPI_PROTOCOL_MAIL_SMTP, NDPI_PROTOCOL_UNKNOWN);
}
-void ndpi_search_mail_smtp_tcp(struct ndpi_detection_module_struct
- *ndpi_struct, struct ndpi_flow_struct *flow)
-{
+void ndpi_search_mail_smtp_tcp(struct ndpi_detection_module_struct *ndpi_struct,
+ struct ndpi_flow_struct *flow) {
struct ndpi_packet_struct *packet = &flow->packet;
-
+
NDPI_LOG_DBG(ndpi_struct, "search mail_smtp\n");
if((packet->payload_packet_len > 2)
@@ -67,24 +68,25 @@ void ndpi_search_mail_smtp_tcp(struct ndpi_detection_module_struct
NDPI_PARSE_PACKET_LINE_INFO(ndpi_struct, flow,packet);
- for (a = 0; a < packet->parsed_lines; a++) {
+ for(a = 0; a < packet->parsed_lines; a++) {
// expected server responses
- if (packet->line[a].len >= 3) {
- if (memcmp(packet->line[a].ptr, "220", 3) == 0) {
+ if(packet->line[a].len >= 3) {
+ if(memcmp(packet->line[a].ptr, "220", 3) == 0) {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_220;
- } else if (memcmp(packet->line[a].ptr, "250", 3) == 0) {
+ } else if(memcmp(packet->line[a].ptr, "250", 3) == 0) {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_250;
- } else if (memcmp(packet->line[a].ptr, "235", 3) == 0) {
+ } else if(memcmp(packet->line[a].ptr, "235", 3) == 0) {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_235;
- } else if (memcmp(packet->line[a].ptr, "334", 3) == 0) {
+ } else if(memcmp(packet->line[a].ptr, "334", 3) == 0) {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_334;
- } else if (memcmp(packet->line[a].ptr, "354", 3) == 0) {
+ } else if(memcmp(packet->line[a].ptr, "354", 3) == 0) {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_354;
}
}
+
// expected client requests
- if (packet->line[a].len >= 5) {
- if ((((packet->line[a].ptr[0] == 'H' || packet->line[a].ptr[0] == 'h')
+ if(packet->line[a].len >= 5) {
+ if((((packet->line[a].ptr[0] == 'H' || packet->line[a].ptr[0] == 'h')
&& (packet->line[a].ptr[1] == 'E' || packet->line[a].ptr[1] == 'e'))
|| ((packet->line[a].ptr[0] == 'E' || packet->line[a].ptr[0] == 'e')
&& (packet->line[a].ptr[1] == 'H' || packet->line[a].ptr[1] == 'h')))
@@ -92,29 +94,93 @@ void ndpi_search_mail_smtp_tcp(struct ndpi_detection_module_struct
&& (packet->line[a].ptr[3] == 'O' || packet->line[a].ptr[3] == 'o')
&& packet->line[a].ptr[4] == ' ') {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_HELO_EHLO;
- } else if ((packet->line[a].ptr[0] == 'M' || packet->line[a].ptr[0] == 'm')
+ flow->protos.ftp_imap_pop_smtp.auth_found = 0;
+ } else if((packet->line[a].ptr[0] == 'M' || packet->line[a].ptr[0] == 'm')
&& (packet->line[a].ptr[1] == 'A' || packet->line[a].ptr[1] == 'a')
&& (packet->line[a].ptr[2] == 'I' || packet->line[a].ptr[2] == 'i')
&& (packet->line[a].ptr[3] == 'L' || packet->line[a].ptr[3] == 'l')
&& packet->line[a].ptr[4] == ' ') {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_MAIL;
- } else if ((packet->line[a].ptr[0] == 'R' || packet->line[a].ptr[0] == 'r')
+ flow->protos.ftp_imap_pop_smtp.auth_found = 0;
+ } else if((packet->line[a].ptr[0] == 'R' || packet->line[a].ptr[0] == 'r')
&& (packet->line[a].ptr[1] == 'C' || packet->line[a].ptr[1] == 'c')
&& (packet->line[a].ptr[2] == 'P' || packet->line[a].ptr[2] == 'p')
&& (packet->line[a].ptr[3] == 'T' || packet->line[a].ptr[3] == 't')
&& packet->line[a].ptr[4] == ' ') {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_RCPT;
- } else if ((packet->line[a].ptr[0] == 'A' || packet->line[a].ptr[0] == 'a')
+ flow->protos.ftp_imap_pop_smtp.auth_found = 0;
+ } else if((packet->line[a].ptr[0] == 'A' || packet->line[a].ptr[0] == 'a')
&& (packet->line[a].ptr[1] == 'U' || packet->line[a].ptr[1] == 'u')
&& (packet->line[a].ptr[2] == 'T' || packet->line[a].ptr[2] == 't')
&& (packet->line[a].ptr[3] == 'H' || packet->line[a].ptr[3] == 'h')
&& packet->line[a].ptr[4] == ' ') {
+#ifdef SMTP_DEBUG
+ printf("%s() AUTH [%s]\n", __FUNCTION__, packet->line[a].ptr);
+#endif
+
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_AUTH;
+ flow->protos.ftp_imap_pop_smtp.auth_found = 1;
+ } else {
+ if(packet->line[a].ptr[3] != ' ') {
+#ifdef SMTP_DEBUG
+ printf("%s() => [%s]\n", __FUNCTION__, packet->line[a].ptr);
+#endif
+
+ if(flow->protos.ftp_imap_pop_smtp.auth_found) {
+ if(flow->protos.ftp_imap_pop_smtp.username[0] == '\0') {
+ /* Username */
+ u_int8_t buf[48];
+ u_char *out;
+ size_t out_len;
+
+ ndpi_user_pwd_payload_copy(buf, sizeof(buf), 0,
+ packet->line[a].ptr, packet->line[a].len);
+
+#ifdef SMTP_DEBUG
+ printf("%s() => [auth: %u] (1) [%s]\n", __FUNCTION__, flow->protos.ftp_imap_pop_smtp.auth_found, buf);
+#endif
+
+ out = ndpi_base64_decode((const u_char*)buf, (size_t)strlen((const char*)buf), &out_len);
+
+ if(out) {
+ snprintf(flow->protos.ftp_imap_pop_smtp.username,
+ sizeof(flow->protos.ftp_imap_pop_smtp.username), "%s", out);
+
+ ndpi_free(out);
+ }
+ } else if(flow->protos.ftp_imap_pop_smtp.password[0] == '\0') {
+ /* Password */
+ u_int8_t buf[48];
+ u_char *out;
+ size_t out_len;
+
+ ndpi_user_pwd_payload_copy(buf, sizeof(buf), 0,
+ packet->line[a].ptr, packet->line[a].len);
+
+#ifdef SMTP_DEBUG
+ printf("%s() => [auth: %u] (2) [%s]\n", __FUNCTION__, flow->protos.ftp_imap_pop_smtp.auth_found, buf);
+#endif
+
+ out = ndpi_base64_decode((const u_char*)buf, (size_t)strlen((const char*)buf), &out_len);
+
+ if(out) {
+ snprintf(flow->protos.ftp_imap_pop_smtp.password,
+ sizeof(flow->protos.ftp_imap_pop_smtp.password), "%s", out);
+ ndpi_free(out);
+ }
+ } else {
+ NDPI_EXCLUDE_PROTO(ndpi_struct, flow);
+ return;
+ }
+
+ flow->protos.ftp_imap_pop_smtp.auth_found++;
+ }
+ }
}
}
- if (packet->line[a].len >= 8) {
- if ((packet->line[a].ptr[0] == 'S' || packet->line[a].ptr[0] == 's')
+ if(packet->line[a].len >= 8) {
+ if((packet->line[a].ptr[0] == 'S' || packet->line[a].ptr[0] == 's')
&& (packet->line[a].ptr[1] == 'T' || packet->line[a].ptr[1] == 't')
&& (packet->line[a].ptr[2] == 'A' || packet->line[a].ptr[2] == 'a')
&& (packet->line[a].ptr[3] == 'R' || packet->line[a].ptr[3] == 'r')
@@ -126,47 +192,55 @@ void ndpi_search_mail_smtp_tcp(struct ndpi_detection_module_struct
}
}
- if (packet->line[a].len >= 4) {
- if ((packet->line[a].ptr[0] == 'D' || packet->line[a].ptr[0] == 'd')
+ if(packet->line[a].len >= 4) {
+ if((packet->line[a].ptr[0] == 'D' || packet->line[a].ptr[0] == 'd')
&& (packet->line[a].ptr[1] == 'A' || packet->line[a].ptr[1] == 'a')
&& (packet->line[a].ptr[2] == 'T' || packet->line[a].ptr[2] == 't')
&& (packet->line[a].ptr[3] == 'A' || packet->line[a].ptr[3] == 'a')) {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_DATA;
- } else if ((packet->line[a].ptr[0] == 'N' || packet->line[a].ptr[0] == 'n')
+ } else if((packet->line[a].ptr[0] == 'N' || packet->line[a].ptr[0] == 'n')
&& (packet->line[a].ptr[1] == 'O' || packet->line[a].ptr[1] == 'o')
&& (packet->line[a].ptr[2] == 'O' || packet->line[a].ptr[2] == 'o')
&& (packet->line[a].ptr[3] == 'P' || packet->line[a].ptr[3] == 'p')) {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_NOOP;
- } else if ((packet->line[a].ptr[0] == 'R' || packet->line[a].ptr[0] == 'r')
+ } else if((packet->line[a].ptr[0] == 'R' || packet->line[a].ptr[0] == 'r')
&& (packet->line[a].ptr[1] == 'S' || packet->line[a].ptr[1] == 's')
&& (packet->line[a].ptr[2] == 'E' || packet->line[a].ptr[2] == 'e')
&& (packet->line[a].ptr[3] == 'T' || packet->line[a].ptr[3] == 't')) {
flow->l4.tcp.smtp_command_bitmask |= SMTP_BIT_RSET;
}
}
-
}
// now count the bits set in the bitmask
- if (flow->l4.tcp.smtp_command_bitmask != 0) {
- for (a = 0; a < 16; a++) {
+ if(flow->l4.tcp.smtp_command_bitmask != 0) {
+ for(a = 0; a < 16; a++) {
bit_count += (flow->l4.tcp.smtp_command_bitmask >> a) & 0x01;
}
}
NDPI_LOG_DBG2(ndpi_struct, "seen smtp commands and responses: %u\n",
bit_count);
- if (bit_count >= 3) {
+ if(bit_count >= 3) {
NDPI_LOG_INFO(ndpi_struct, "mail smtp identified\n");
- ndpi_int_mail_smtp_add_connection(ndpi_struct, flow);
+
+#ifdef SMTP_DEBUG
+ printf("%s() [bit_count: %u][%s]\n", __FUNCTION__, bit_count, flow->protos.ftp_imap_pop_smtp.password);
+#endif
+
+ if(flow->protos.ftp_imap_pop_smtp.password[0] != '\0')
+ ndpi_int_mail_smtp_add_connection(ndpi_struct, flow);
+
return;
}
- if (bit_count >= 1 && flow->packet_counter < 12) {
+
+ if(bit_count >= 1 && flow->packet_counter < 12) {
return;
}
}
+
/* when the first or second packets are split into two packets, those packets are ignored. */
- if (flow->packet_counter <= 4 &&
+ if(flow->packet_counter <= 4 &&
packet->payload_packet_len >= 4 &&
(ntohs(get_u_int16_t(packet->payload, packet->payload_packet_len - 2)) == 0x0d0a
|| memcmp(packet->payload, "220", 3) == 0 || memcmp(packet->payload, "EHLO", 4) == 0)) {
@@ -178,15 +252,14 @@ void ndpi_search_mail_smtp_tcp(struct ndpi_detection_module_struct
}
-void init_mail_smtp_dissector(struct ndpi_detection_module_struct *ndpi_struct, u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask)
-{
+void init_mail_smtp_dissector(struct ndpi_detection_module_struct *ndpi_struct,
+ u_int32_t *id, NDPI_PROTOCOL_BITMASK *detection_bitmask) {
ndpi_set_bitmask_protocol_detection("MAIL_SMTP", ndpi_struct, detection_bitmask, *id,
NDPI_PROTOCOL_MAIL_SMTP,
ndpi_search_mail_smtp_tcp,
NDPI_SELECTION_BITMASK_PROTOCOL_V4_V6_TCP_WITH_PAYLOAD_WITHOUT_RETRANSMISSION,
SAVE_DETECTION_BITMASK_AS_UNKNOWN,
- ADD_TO_DETECTION_BITMASK);
+ ADD_TO_DETECTION_BITMASK);
*id += 1;
}
-