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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user