Applied Jah's patch for http.lua discussed in:

http://seclists.org/nmap-dev/2008/q2/0833.html
This commit is contained in:
batrick 2008-06-23 03:42:57 +00:00
parent a1c363b84a
commit b589575472

View file

@ -110,7 +110,7 @@ request = function( host, port, data, options )
-- header loop
while true do
line = buffer()
if not line then break end
if (not line or line == "") then break end
table.insert(header,line)
end