mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 08:14:24 +03:00
full page read is not needed in DNS exfiltration mode
This commit is contained in:
parent
4e6fcce9ca
commit
09f2144485
|
@ -124,6 +124,8 @@ class Connect:
|
|||
@staticmethod
|
||||
def __connReadProxy(conn):
|
||||
retVal = ""
|
||||
|
||||
if not kb.dnsMode:
|
||||
while True:
|
||||
_ = conn.read(MAX_CONNECTION_CHUNK_SIZE)
|
||||
if len(_) == MAX_CONNECTION_CHUNK_SIZE:
|
||||
|
@ -134,6 +136,7 @@ class Connect:
|
|||
else:
|
||||
retVal += _
|
||||
break
|
||||
|
||||
return retVal
|
||||
|
||||
@staticmethod
|
||||
|
|
Loading…
Reference in New Issue
Block a user