mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-06-16 19:13:29 +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:
|
if page is None:
|
||||||
return 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:
|
if len(page) > LARGE_OUTPUT_THRESHOLD:
|
||||||
warnMsg = "large output detected. This might take a while"
|
warnMsg = "large output detected. This might take a while"
|
||||||
logger.warn(warnMsg)
|
logger.warn(warnMsg)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user