diff options
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index e24405d73..47c4db1f0 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1833,6 +1833,10 @@ const char* ndpi_risk2str(ndpi_risk_enum risk) { case NDPI_INVALID_CHARACTERS: return("Text contains non-printable characters"); + case NDPI_POSSIBLE_EXPLOIT: + return("Possible exploit detected"); + break; + default: snprintf(buf, sizeof(buf), "%d", (int)risk); return(buf); @@ -2172,6 +2176,15 @@ void ndpi_set_risk(struct ndpi_detection_module_struct *ndpi_str, /* ******************************************************************** */ +int ndpi_isset_risk(struct ndpi_detection_module_struct *ndpi_str, + struct ndpi_flow_struct *flow, ndpi_risk_enum r) { + ndpi_risk v = 1ull << r; + + return(((flow->risk & v) == v) ? 1 : 0); +} + +/* ******************************************************************** */ + int ndpi_is_printable_string(char * const str, size_t len) { int retval = 1; |