aboutsummaryrefslogtreecommitdiff
path: root/example
diff options
context:
space:
mode:
authorLuca Deri <lucaderi@users.noreply.github.com>2020-02-02 16:19:26 +0100
committerGitHub <noreply@github.com>2020-02-02 16:19:26 +0100
commit5b11c2ffc59ecff878c8dc87ba3eb35adbb0b810 (patch)
tree21ec00b7e72e329b2af45d430a0ec2df542c6c5c /example
parent8486eb08ea80b779dfcba07cc3ece48bbe81bdad (diff)
parentce4f4fbe2f6d3fe510690438db9a1b47e30c24ed (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.c3
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("");