mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-23 15:54:24 +03:00
Fixes #1302
This commit is contained in:
parent
1aafe85a3a
commit
49212ec920
|
@ -2281,7 +2281,7 @@ def findMultipartPostBoundary(post):
|
|||
candidates = []
|
||||
|
||||
for match in re.finditer(r"(?m)^--(.+?)(--)?$", post or ""):
|
||||
_ = match.group(1)
|
||||
_ = match.group(1).strip().strip('-')
|
||||
if _ in done:
|
||||
continue
|
||||
else:
|
||||
|
|
Loading…
Reference in New Issue
Block a user