diff options
author | Luca Deri <lucaderi@users.noreply.github.com> | 2020-02-02 16:19:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-02 16:19:26 +0100 |
commit | 5b11c2ffc59ecff878c8dc87ba3eb35adbb0b810 (patch) | |
tree | 21ec00b7e72e329b2af45d430a0ec2df542c6c5c /example | |
parent | 8486eb08ea80b779dfcba07cc3ece48bbe81bdad (diff) | |
parent | ce4f4fbe2f6d3fe510690438db9a1b47e30c24ed (diff) |
Merge pull request #836 from MrTiz9/dev
nDPI now detects RCE injections in HTTP 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(""); |