mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-15 21:03:13 +01:00
Minor patch
This commit is contained in:
parent
b8d49c2ea2
commit
344d3f4b5f
1 changed files with 1 additions and 1 deletions
|
|
@ -754,7 +754,7 @@ class Connect(object):
|
|||
variables = {}
|
||||
originals = {}
|
||||
|
||||
for item in filter(None, (get, post)):
|
||||
for item in filter(None, (get, post if not kb.postHint else None)):
|
||||
for part in item.split(delimiter):
|
||||
if '=' in part:
|
||||
name, value = part.split('=', 1)
|
||||
|
|
|
|||
Loading…
Reference in a new issue