diff options
author | Luca Deri <deri@ntop.org> | 2021-09-10 22:00:04 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-09-10 22:00:04 +0200 |
commit | 00857abf2c008b77f3e1d9eba9505b1b22239543 (patch) | |
tree | ce6adc2088f29a1e10bccc98363e190982d77bc2 /src/lib/ndpi_utils.c | |
parent | 1fadf4754a1741e6fd690dbb65ae778fd1dc0313 (diff) |
Added new risk for clear text credentials
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 b1d1fcdb0..ed5ffd228 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -1783,6 +1783,9 @@ const char* ndpi_risk2str(ndpi_risk_enum risk) { case NDPI_SUSPICIOUS_ENTROPY: return("Suspicious entropy"); + case NDPI_CLEAR_TEXT_CREDENTIALS: + return("Clear-text credentials"); + default: snprintf(buf, sizeof(buf), "%d", (int)risk); return(buf); |