mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Fixed bug that would prevent brute library from stopping to guess passwords
for an account, even when the correct password was found. [Patrik]
This commit is contained in:
parent
9941656055
commit
20575e01b9
1 changed files with 1 additions and 1 deletions
|
|
@ -500,7 +500,7 @@ Engine =
|
|||
self.threads[coroutine.running()].terminate = true
|
||||
return false
|
||||
end
|
||||
until ( ( not(self.found_accounts) or not(self.found_accounts.username) ) and
|
||||
until ( ( not(self.found_accounts) or not(self.found_accounts[username]) ) and
|
||||
( self.options.max_guesses == 0 or not(self.account_guesses[username]) or
|
||||
self.options.max_guesses > self.account_guesses[username] ) )
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue