1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-06 04:31:29 +00:00

Fix a typo in vulns.lua

This commit is contained in:
dmiller
2017-03-15 02:23:07 +00:00
parent f89d7610b0
commit 83c9e060fc

View File

@@ -391,7 +391,7 @@ STATE_MSG = {
[STATE.VULN] = 'VULNERABLE',
[STATE.DoS] = 'VULNERABLE (DoS)',
[STATE.EXPLOIT] = 'VULNERABLE (Exploitable)',
[bit.bor(STATE.DoS,STATE.VULN)] = 'VUNERABLE (DoS)',
[bit.bor(STATE.DoS,STATE.VULN)] = 'VULNERABLE (DoS)',
[bit.bor(STATE.EXPLOIT,STATE.VULN)] = 'VULNERABLE (Exploitable)',
}