mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Minor update for #3540
This commit is contained in:
@@ -2575,7 +2575,7 @@ def extractErrorMessage(page):
|
||||
|
||||
if isinstance(page, basestring):
|
||||
for regex in ERROR_PARSING_REGEXES:
|
||||
match = re.search(regex, page, re.DOTALL | re.IGNORECASE)
|
||||
match = re.search(regex, page, re.IGNORECASE)
|
||||
|
||||
if match:
|
||||
retVal = htmlunescape(match.group("result")).replace("<br>", "\n").strip()
|
||||
|
||||
Reference in New Issue
Block a user