diff options
author | Luca Deri <deri@ntop.org> | 2021-06-11 21:01:27 +0200 |
---|---|---|
committer | Luca Deri <deri@ntop.org> | 2021-06-11 21:01:27 +0200 |
commit | dee6f90d6c1526abf04cd3ea4046d307f997732c (patch) | |
tree | 4a7ff7f1690cf5560934918d058fe2d281afb9e5 | |
parent | c9f582805b4cf9ebe7df26348597cd3bf56bd8f1 (diff) |
Syntax error fixes
-rw-r--r-- | wireshark/sharkfest_scripts/dns_request_reply_ratio.lua | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/wireshark/sharkfest_scripts/dns_request_reply_ratio.lua b/wireshark/sharkfest_scripts/dns_request_reply_ratio.lua index a7a362b2a..d26378739 100644 --- a/wireshark/sharkfest_scripts/dns_request_reply_ratio.lua +++ b/wireshark/sharkfest_scripts/dns_request_reply_ratio.lua @@ -114,10 +114,10 @@ local function dnsReqRepRatio() end if #dangerous_flows > 0 then - tw:append("------------- DETECTED DNS REQUEST/REPLY RATIO -------------\n"\n) - tw:append("TOT SUSPICIOUS FLOWS DETECTED:\t" .. #dangerous_flows .. " -------------\n") + tw:append("------------- DETECTED DNS REQUEST/REPLY RATIO -------------\n") + tw:append("TOT SUSPICIOUS FLOWS DETECTED:\t" .. #dangerous_flows .. " -------------\n") else - tw:append("------------- DNS REQUEST/REPLY RATIO SEEMS FINE -------------\n\n") + tw:append("------------- DNS REQUEST/REPLY RATIO SEEMS FINE -------------\n\n") end tw:append("TOTAL DNS FLOWS DETECTED:\t\t" .. #dangerous_flows + #ok_flows .. " -------------\n\n") |