diff options
author | Luca Deri <deri@ntop.org> | 2023-09-09 17:46:13 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2023-09-09 17:46:13 +0200 |
commit | f50a4d7e85c656f18a900f7cb930da45f5ed6df4 (patch) | |
tree | b65671cf9e802a68885e675c9a4dfec4b80a9b87 /src/lib/ndpi_utils.c | |
parent | 1a797d7b74b9845f9e60bd89a3044425003d1a2b (diff) |
Improved detection of invalid chars in DNS names
Diffstat (limited to 'src/lib/ndpi_utils.c')
-rw-r--r-- | src/lib/ndpi_utils.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/ndpi_utils.c b/src/lib/ndpi_utils.c index c0e9fa446..3bf819025 100644 --- a/src/lib/ndpi_utils.c +++ b/src/lib/ndpi_utils.c @@ -2012,7 +2012,7 @@ const char* ndpi_risk2str(ndpi_risk_enum risk) { return("Fragmented DNS Message"); case NDPI_INVALID_CHARACTERS: - return("Text With Non-Printable Chars"); + return("Non-Printable/Invalid Chars Detected"); case NDPI_POSSIBLE_EXPLOIT: return("Possible Exploit"); |