diff options
Diffstat (limited to 'src/lib/protocols/http.c')
-rw-r--r-- | src/lib/protocols/http.c | 14 |
1 files changed, 10 insertions, 4 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c index 1a341797e..9064f7282 100644 --- a/src/lib/protocols/http.c +++ b/src/lib/protocols/http.c @@ -1027,7 +1027,7 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_ if(packet->authorization_line.ptr != NULL) { const char *a = NULL, *b = NULL; - + NDPI_LOG_DBG2(ndpi_struct, "Authorization line found %.*s\n", packet->authorization_line.len, packet->authorization_line.ptr); @@ -1042,16 +1042,16 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_ if(packet->authorization_line.len > len) { u_char *content = ndpi_base64_decode((const u_char*)&packet->authorization_line.ptr[len], packet->authorization_line.len - len, &content_len); - + if(content != NULL) { char *double_dot = strchr((char*)content, ':'); - + if(double_dot) { double_dot[0] = '\0'; flow->http.username = ndpi_strdup((char*)content); flow->http.password = ndpi_strdup(&double_dot[1]); } - + ndpi_free(content); } @@ -1062,6 +1062,12 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_ } } + if((packet->referer_line.ptr != NULL) && (flow->http.referer == NULL)) + flow->http.referer = ndpi_strndup(packet->referer_line.ptr, packet->referer_line.len); + + if((packet->host_line.ptr != NULL) && (flow->http.host == NULL)) + flow->http.host = ndpi_strndup(packet->host_line.ptr, packet->host_line.len); + if(packet->content_line.ptr != NULL) { NDPI_LOG_DBG2(ndpi_struct, "Content Type line found %.*s\n", packet->content_line.len, packet->content_line.ptr); |