1
0
mirror of https://github.com/nmap/nmap.git synced 2025-12-09 14:11:29 +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:
patrik
2011-11-02 09:48:33 +00:00
parent 842bf0b8f3
commit cbf71a1668
2 changed files with 5 additions and 0 deletions

View File

@@ -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.

View File

@@ -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,