mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
o [NSE] Fixed a bug where the brute library would not abort even after all
retries were exhausted [Patrik]
This commit is contained in:
parent
842bf0b8f3
commit
cbf71a1668
2 changed files with 5 additions and 0 deletions
|
|
@ -1,5 +1,8 @@
|
|||
# Nmap Changelog ($Id$); -*-text-*-
|
||||
|
||||
o [NSE] Fixed a bug where the brute library would not abort even after all
|
||||
retries were exhausted [Patrik]
|
||||
|
||||
o Added a service probe for VMware ESX Server. The probe is based on a
|
||||
script written by Aleksey Tyurin.
|
||||
|
||||
|
|
|
|||
|
|
@ -524,6 +524,8 @@ Engine =
|
|||
if ( retries == 0 ) then
|
||||
Engine.terminate_all = true
|
||||
self.error = "Too many retries, aborted ..."
|
||||
response = Error:new("Too many retries, aborted ...")
|
||||
response.abort = true
|
||||
end
|
||||
return status, response
|
||||
end,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue