mirror of
https://github.com/nmap/nmap.git
synced 2026-08-27 03:48:14 +00:00
Fixed the same small bug in smbv2-enabled.nse (was still using the wrong variable for an error message)
This commit is contained in:
parent
af5d750a34
commit
39318fd843
1 changed files with 1 additions and 1 deletions
|
|
@ -33,7 +33,7 @@ local function go(host)
|
|||
|
||||
status, smbstate = smb.start(host)
|
||||
if(not(status)) then
|
||||
return false, "Couldn't start SMB session: " .. smbstatus
|
||||
return false, "Couldn't start SMB session: " .. smbstate
|
||||
end
|
||||
|
||||
status, result = smb.negotiate_protocol(smbstate, overrides)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue