mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 14:49:29 +00:00
Require -d2 to print out each guess in brute.lua, not just -d1.
This commit is contained in:
parent
018c6c5171
commit
66e1254649
1 changed files with 2 additions and 2 deletions
|
|
@ -411,7 +411,7 @@ Engine =
|
|||
msg = "Trying"
|
||||
end
|
||||
|
||||
stdnse.print_debug( "%s %s against %s:%d", msg, creds, self.host.ip, self.port.number )
|
||||
stdnse.print_debug(2, "%s %s against %s:%d", msg, creds, self.host.ip, self.port.number )
|
||||
status, response = driver:login( username, password )
|
||||
|
||||
driver:disconnect()
|
||||
|
|
@ -488,7 +488,7 @@ Engine =
|
|||
interval_start = os.time()
|
||||
local tps = self.counter / ( os.time() - self.starttime )
|
||||
table.insert(self.tps, tps )
|
||||
stdnse.print_debug("threads=%d,tps=%d", self:activeThreads(), tps )
|
||||
stdnse.print_debug(2, "threads=%d,tps=%d", self:activeThreads(), tps )
|
||||
end
|
||||
|
||||
-- if delay was speciefied, do sleep
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue