mirror of
https://github.com/nmap/nmap.git
synced 2025-12-11 02:09:03 +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:
@@ -1,5 +1,8 @@
|
|||||||
# Nmap Changelog ($Id$); -*-text-*-
|
# 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
|
o Added a service probe for VMware ESX Server. The probe is based on a
|
||||||
script written by Aleksey Tyurin.
|
script written by Aleksey Tyurin.
|
||||||
|
|
||||||
|
|||||||
@@ -524,6 +524,8 @@ Engine =
|
|||||||
if ( retries == 0 ) then
|
if ( retries == 0 ) then
|
||||||
Engine.terminate_all = true
|
Engine.terminate_all = true
|
||||||
self.error = "Too many retries, aborted ..."
|
self.error = "Too many retries, aborted ..."
|
||||||
|
response = Error:new("Too many retries, aborted ...")
|
||||||
|
response.abort = true
|
||||||
end
|
end
|
||||||
return status, response
|
return status, response
|
||||||
end,
|
end,
|
||||||
|
|||||||
Reference in New Issue
Block a user