mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-02-13 08:56:35 +00:00
Fixes #1302
This commit is contained in:
@@ -2281,7 +2281,7 @@ def findMultipartPostBoundary(post):
|
|||||||
candidates = []
|
candidates = []
|
||||||
|
|
||||||
for match in re.finditer(r"(?m)^--(.+?)(--)?$", post or ""):
|
for match in re.finditer(r"(?m)^--(.+?)(--)?$", post or ""):
|
||||||
_ = match.group(1)
|
_ = match.group(1).strip().strip('-')
|
||||||
if _ in done:
|
if _ in done:
|
||||||
continue
|
continue
|
||||||
else:
|
else:
|
||||||
|
|||||||
Reference in New Issue
Block a user