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 /example | |
parent | cedbf3b636ebd318aa38aeb08a588fbf8a4eb096 (diff) |
nDPI now detect RCE in HTTP GET requests
Diffstat (limited to 'example')
-rw-r--r-- | example/ndpiReader.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/example/ndpiReader.c b/example/ndpiReader.c index af685f4c7..3e521edab 100644 --- a/example/ndpiReader.c +++ b/example/ndpiReader.c @@ -981,6 +981,9 @@ char* printUrlRisk(ndpi_url_risk risk) { case ndpi_url_possible_sql_injection: return(" ** SQL Injection **"); break; + case ndpi_url_possible_rce_injection: + return(" ** RCE Injection **"); + break; } return(""); |