mirror of
https://github.com/nmap/nmap.git
synced 2025-12-10 09:49:05 +00:00
on line 525 unicode was assigned to a string and a function was being called[unicode.utf8to16]. removed the assginment
This commit is contained in:
@@ -522,8 +522,6 @@ function ntlmv2_create_hash(ntlm, username, domain)
|
|||||||
return false, "SMB: OpenSSL not present"
|
return false, "SMB: OpenSSL not present"
|
||||||
end
|
end
|
||||||
|
|
||||||
local unicode = ""
|
|
||||||
|
|
||||||
username = unicode.utf8to16(string.upper(username))
|
username = unicode.utf8to16(string.upper(username))
|
||||||
domain = unicode.utf8to16(string.upper(domain))
|
domain = unicode.utf8to16(string.upper(domain))
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user