mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Bug fix (whole page output as a result of partial union runs)
This commit is contained in:
parent
0a74ae736f
commit
0809a61fc3
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user