mirror of
https://github.com/nmap/nmap.git
synced 2026-06-20 15:41:31 +00:00
Fixed bug where socket error messages (like EOF) were appended to the HTTP pipeline response
This commit is contained in:
parent
34b30d9b7f
commit
2264838cf8
1 changed files with 1 additions and 1 deletions
|
|
@ -648,7 +648,7 @@ pipeline = function(host, port, allReqs, options)
|
|||
response_raw = ""
|
||||
while recv_status do
|
||||
recv_status, response_tmp = socket:receive()
|
||||
response_raw = response_raw .. response_tmp
|
||||
if recv_status then response_raw = response_raw .. response_tmp end
|
||||
end
|
||||
|
||||
-- Transform the raw response we received in a table of responses and
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue