Minor patch (to accept * inside urls in request files too)

This commit is contained in:
Miroslav Stampar 2013-10-10 15:04:48 +02:00
parent 369006ca73
commit dd87233fe4

View File

@ -280,7 +280,7 @@ def _feedTargetsDict(reqFile, addedTargetUrls):
method = match.group(1)
url = match.group(2)
if "?" in line and "=" in line:
if any(_ in line for _ in ('?', '=', CUSTOM_INJECTION_MARK_CHAR)):
params = True
getPostReq = True