mirror of
https://github.com/nmap/nmap.git
synced 2026-05-13 16:57:06 +00:00
Correct CRLF in ftp-brute
This commit is contained in:
parent
639a58a880
commit
f60bf5fbc6
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue