diff options
Diffstat (limited to 'example/ndpiReader.c')
-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(""); |