diff --git a/scripts/quake3-info.nse b/scripts/quake3-info.nse index dbdefb27a..58a92f34a 100644 --- a/scripts/quake3-info.nse +++ b/scripts/quake3-info.nse @@ -224,6 +224,8 @@ action = function(host, port) local response = {} table.insert(response, formatplayers(players, fraglimit)) table.insert(response, formatfields(basic, "BASIC OPTIONS:")) - table.insert(response, formatfields(other, "OTHER OPTIONS:")) + if nmap.verbosity() > 0 then + table.insert(response, formatfields(other, "OTHER OPTIONS:")) + end return stdnse.format_output(true, response) end