mirror of
https://github.com/nmap/nmap.git
synced 2026-08-04 06:40:48 +00:00
Avoid using http cache for http-form-fuzzer
This commit is contained in:
parent
b7cc883a0f
commit
cdf30c1233
1 changed files with 1 additions and 1 deletions
|
|
@ -157,7 +157,7 @@ local function fuzz_form(form, minlen, maxlen, host, port, path)
|
|||
if form["method"]=="post" then
|
||||
sending_function = function(data) return http.post(host, port, form_submission_path, nil, nil, data) end
|
||||
else
|
||||
sending_function = function(data) return http.get(host, port, form_submission_path..generate_get_string(data)) end
|
||||
sending_function = function(data) return http.get(host, port, form_submission_path..generate_get_string(data), {no_cache=true, bypass_cache=true}) end
|
||||
end
|
||||
|
||||
for _,field in ipairs(form["fields"]) do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue