diff options
author | Luca Deri <deri@ntop.org> | 2023-09-07 23:42:42 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2023-09-07 23:42:42 +0200 |
commit | 770e460ba9be589c9793ad118f9dc7697b188d33 (patch) | |
tree | 8cb9d2cd4986fe94bc2b9b309c69164f2c79a6a6 /src/lib/ndpi_utils.c | |
parent | 47fb5e9f3d4a00a51d385b858454d7e7850fc9c0 (diff) |
Added NDPI_TLS_ALPN_SNI_MISMATCH flow risk
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index 854b548f0..c0e9fa446 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -2050,6 +2050,10 @@ const char* ndpi_risk2str(ndpi_risk_enum risk) { case NDPI_FULLY_ENCRYPTED: return("Fully encrypted flow"); + case NDPI_TLS_ALPN_SNI_MISMATCH: + return("ALPN/SNI Mismatch"); + break; + default: ndpi_snprintf(buf, sizeof(buf), "%d", (int)risk); return(buf); |