aboutsummaryrefslogtreecommitdiff
path: root/python
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 /python
parent8486eb08ea80b779dfcba07cc3ece48bbe81bdad (diff)
parentce4f4fbe2f6d3fe510690438db9a1b47e30c24ed (diff)
Merge pull request #836 from MrTiz9/dev
nDPI now detects RCE injections in HTTP requests
Diffstat (limited to 'python')
-rw-r--r--python/ndpi.py3
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 */