mirror of
https://github.com/nmap/nmap.git
synced 2026-01-02 21:09:00 +00:00
fixed bad escape sequences
This commit is contained in:
@@ -63,7 +63,7 @@ action = function(host)
|
||||
|
||||
local result, username, domain = smb.get_account(host)
|
||||
if(result ~= false) then
|
||||
table.insert(response, string.format("Account that was used for smb scripts: %s\%s", domain, stdnse.string_or_blank(username, '<blank>')))
|
||||
table.insert(response, string.format("Account that was used for smb scripts: %s%s", domain, stdnse.string_or_blank(username, '<blank>')))
|
||||
end
|
||||
|
||||
-- User-level authentication or share-level authentication
|
||||
|
||||
Reference in New Issue
Block a user