mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Bug fix (whole page output as a result of partial union runs)
This commit is contained in:
@@ -1314,7 +1314,7 @@ def parseUnionPage(page):
|
||||
if page is None:
|
||||
return None
|
||||
|
||||
if page.startswith(kb.chars.start) and page.endswith(kb.chars.stop):
|
||||
if re.search("(?si)\A%s.*%s\Z" % (kb.chars.start, kb.chars.stop), page):
|
||||
if len(page) > LARGE_OUTPUT_THRESHOLD:
|
||||
warnMsg = "large output detected. This might take a while"
|
||||
logger.warn(warnMsg)
|
||||
|
||||
Reference in New Issue
Block a user