mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor patch (to accept * inside urls in request files too)
This commit is contained in:
parent
369006ca73
commit
dd87233fe4
|
@ -280,7 +280,7 @@ def _feedTargetsDict(reqFile, addedTargetUrls):
|
||||||
method = match.group(1)
|
method = match.group(1)
|
||||||
url = match.group(2)
|
url = match.group(2)
|
||||||
|
|
||||||
if "?" in line and "=" in line:
|
if any(_ in line for _ in ('?', '=', CUSTOM_INJECTION_MARK_CHAR)):
|
||||||
params = True
|
params = True
|
||||||
|
|
||||||
getPostReq = True
|
getPostReq = True
|
||||||
|
|
Loading…
Reference in New Issue
Block a user