aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/lib/protocols/http.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/protocols/http.c b/src/lib/protocols/http.c
index 57f71e2fe..cb146fcc0 100644
--- a/src/lib/protocols/http.c
+++ b/src/lib/protocols/http.c
@@ -967,8 +967,9 @@ static void check_content_type_and_change_protocol(struct ndpi_detection_module_
}
if(packet->upgrade_line.ptr != NULL) {
- if(flow->http.response_status_code == 101 &&
- memcmp((char *)packet->upgrade_line.ptr, "websocket", 9) == 0)
+ if((flow->http.response_status_code == 101)
+ && (packet->upgrade_line.len >= 9)
+ && memcmp((char *)packet->upgrade_line.ptr, "websocket", 9) == 0)
flow->http.websocket = 1;
}