1
0
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:
gyani
2015-06-04 15:58:58 +00:00
parent fa7f4ab484
commit d32f3b9c52

View File

@@ -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))