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