diff options
author | MrTiz9 <tiziano.marra@pm.me> | 2020-01-24 17:08:55 +0100 |
---|---|---|
committer | MrTiz9 <tiziano.marra@pm.me> | 2020-01-24 17:16:18 +0100 |
commit | daa1171593300e4a74022f8f7a935658ec3de3ab (patch) | |
tree | cf8500e25dfcdc9b26fa365274da6b8df5def0df /python/ndpi.py | |
parent | cedbf3b636ebd318aa38aeb08a588fbf8a4eb096 (diff) |
nDPI now detect RCE in HTTP GET requests
Diffstat (limited to 'python/ndpi.py')
-rw-r--r-- | python/ndpi.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/python/ndpi.py b/python/ndpi.py index ed7720192..a037bf5aa 100644 --- a/python/ndpi.py +++ b/python/ndpi.py @@ -36,7 +36,8 @@ typedef enum { typedef enum { ndpi_url_no_problem = 0, ndpi_url_possible_xss, - ndpi_url_possible_sql_injection + ndpi_url_possible_sql_injection, + ndpi_url_possible_rce_injection } ndpi_url_risk; /* NDPI_VISIT */ |