diff options
author | Luca Deri <deri@ntop.org> | 2021-01-02 21:11:42 +0100 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-01-02 21:11:42 +0100 |
commit | 05d76525b0ee93164001405e4a9ff82e5caa025c (patch) | |
tree | 0c78a6df7177ea83108da2568407168086e427e7 /src/lib/ndpi_utils.c | |
parent | 32f0446c9c90bb02e11be75381f0855106cdd1ed (diff) |
Added HTTP suspicious content securirty risk (useful for tracking trickbot)
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 95a115110..97b94ed68 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1721,6 +1721,9 @@ const char* ndpi_risk2str(ndpi_risk_enum risk) { case NDPI_TLS_MISSING_SNI: return("SNI TLS extension was missing"); + case NDPI_HTTP_SUSPICIOUS_CONTENT: + return("HTTP suspicious content"); + default: snprintf(buf, sizeof(buf), "%d", (int)risk); return(buf); |