mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-06-12 17:13:04 +03:00
Fixes #1452
This commit is contained in:
parent
657d71119b
commit
eb7c18d1f8
|
@ -185,7 +185,11 @@ class Connect(object):
|
||||||
kb.pageCompress = False
|
kb.pageCompress = False
|
||||||
else:
|
else:
|
||||||
while True:
|
while True:
|
||||||
_ = conn.read(MAX_CONNECTION_CHUNK_SIZE)
|
if not conn:
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
_ = conn.read(MAX_CONNECTION_CHUNK_SIZE)
|
||||||
|
|
||||||
if len(_) == MAX_CONNECTION_CHUNK_SIZE:
|
if len(_) == MAX_CONNECTION_CHUNK_SIZE:
|
||||||
warnMsg = "large response detected. This could take a while"
|
warnMsg = "large response detected. This could take a while"
|
||||||
singleTimeWarnMessage(warnMsg)
|
singleTimeWarnMessage(warnMsg)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user