mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 05:01:30 +00:00
full page read is not needed in DNS exfiltration mode
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user