mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-29 19:09:02 +00:00
Fixes #1302
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user