1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-05 22:19:03 +00:00

Correct CRLF in ftp-brute

This commit is contained in:
dmiller
2014-10-14 02:30:02 +00:00
parent 639a58a880
commit f60bf5fbc6

View File

@@ -71,7 +71,7 @@ Driver = {
return false, brute.Error:new("Couldn't send login: " .. err)
end
status, err = self.socket:send("PASS " .. pass .. "\n\n")
status, err = self.socket:send("PASS " .. pass .. "\r\n")
if(not(status)) then
return false, brute.Error:new("Couldn't send login: " .. err)
end