Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit dd87233

Browse files
committed
Minor patch (to accept * inside urls in request files too)
1 parent 369006c commit dd87233

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

lib/core/option.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -280,7 +280,7 @@ def _parseBurpLog(content):
280280
method = match.group(1)
281281
url = match.group(2)
282282

283-
if "?" in line and "=" in line:
283+
if any(_ in line for _ in ('?', '=', CUSTOM_INJECTION_MARK_CHAR)):
284284
params = True
285285

286286
getPostReq = True

0 commit comments

Comments
 (0)