diff --git a/scripts/vulners.nse b/scripts/vulners.nse index 091de9451..1508d8f87 100644 --- a/scripts/vulners.nse +++ b/scripts/vulners.nse @@ -99,7 +99,7 @@ function make_links(vulns) } -- NOTE[gmedian]: exploits seem to have cvss == 0, so print them anyway - if v.is_exploit or (v.cvss and mincvss <= v.cvss) then + if not v.cvss or (v.cvss == 0 and v.is_exploit) or mincvss <= v.cvss then setmetatable(v, cve_meta) output[#output+1] = v end