mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 00:04:23 +03:00
Fixes #1302
This commit is contained in:
parent
1aafe85a3a
commit
49212ec920
|
@ -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:
|
||||||
|
|
Loading…
Reference in New Issue
Block a user