mirror of
https://github.com/nmap/nmap.git
synced 2026-06-27 03:33:07 +00:00
fixed a global variable in http.lua
This commit is contained in:
parent
44b46bb148
commit
b96ffc0e14
1 changed files with 1 additions and 1 deletions
|
|
@ -1750,7 +1750,7 @@ function grab_forms(body)
|
|||
local forms = {}
|
||||
|
||||
while form_opening do
|
||||
form_closing = string.find(body, form_end_expr, form_opening+1)
|
||||
local form_closing = string.find(body, form_end_expr, form_opening+1)
|
||||
if form_closing == nil then --html code contains errors
|
||||
break
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue