1
0
mirror of https://github.com/nmap/nmap.git synced 2026-01-18 12:19:02 +00:00

Fixed a bunch of errors related to inproper responses from webservers.

This commit is contained in:
patrik
2012-08-31 15:17:14 +00:00
parent b14a8518a3
commit 13411ab6d1
6 changed files with 29 additions and 3 deletions

View File

@@ -65,6 +65,10 @@ local TimeWith -- time with additional headers
-- does a half http request and waits until timeout
local function slowThread1(host,port)
-- if no response was received when determining SSL
if ( Bestopt == "none" ) then
return
end
local socket,status
local catch = function()
TimeWithout = nmap.clock()
@@ -81,6 +85,10 @@ end
-- does a half http request but sends another
-- header value after 10 seconds
local function slowThread2(host,port)
-- if no response was received when determining SSL
if ( Bestopt == "none" ) then
return
end
local socket,status
local catch = function()
-- note the time the socket timedout
@@ -135,6 +143,9 @@ so, it starves the http server's resources causing Denial Of Service.
stdnse.sleep(1)
end
-- compare times
if ( not(TimeWith) or not(TimeWithout) ) then
return
end
local diff = TimeWith - TimeWithout
stdnse.print_debug("Time difference is: %d",diff)
-- if second connection died 10 or more seconds after the first