mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Fixes #1452
This commit is contained in:
parent
657d71119b
commit
eb7c18d1f8
|
@ -185,7 +185,11 @@ class Connect(object):
|
|||
kb.pageCompress = False
|
||||
else:
|
||||
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:
|
||||
warnMsg = "large response detected. This could take a while"
|
||||
singleTimeWarnMessage(warnMsg)
|
||||
|
|
Loading…
Reference in New Issue
Block a user