aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib')
-rw-r--r--src/lib/ndpi_main.c6
-rw-r--r--src/lib/protocols/http.c14
2 files changed, 16 insertions, 4 deletions
diff --git a/src/lib/ndpi_main.c b/src/lib/ndpi_main.c
index e95f8a047..df1a62cc8 100644
--- a/src/lib/ndpi_main.c
+++ b/src/lib/ndpi_main.c
@@ -6708,6 +6708,12 @@ void ndpi_free_flow_data(struct ndpi_flow_struct* flow) {
if(flow->http.request_content_type)
ndpi_free(flow->http.request_content_type);
+ if(flow->http.referer)
+ ndpi_free(flow->http.referer);
+
+ if(flow->http.host)
+ ndpi_free(flow->http.host);
+
if(flow->http.user_agent)
ndpi_free(flow->http.user_agent);
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);