mirror of
https://github.com/nmap/nmap.git
synced 2025-12-28 02:19:04 +00:00
Avoid false positive in ipmi-cipher-zero. Closes #1022
This commit is contained in:
@@ -95,7 +95,7 @@ functionality
|
||||
nmap.set_port_state(host, port, "open")
|
||||
|
||||
local info = ipmi.parse_open_session_reply(reply)
|
||||
if info["session_payload_type"] == ipmi.PAYLOADS["RMCPPLUSOPEN_REP"] then
|
||||
if info["session_payload_type"] == ipmi.PAYLOADS["RMCPPLUSOPEN_REP"] and info["error_code"] == 0 then
|
||||
vuln_table.state = vulns.STATE.VULN
|
||||
end
|
||||
|
||||
|
||||
Reference in New Issue
Block a user