mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-11 02:09:04 +00:00
Minor patch
This commit is contained in:
@@ -1026,12 +1026,16 @@ def _setSocketPreConnect():
|
|||||||
|
|
||||||
def _():
|
def _():
|
||||||
while kb.threadContinue:
|
while kb.threadContinue:
|
||||||
for address in socket._ready:
|
try:
|
||||||
if len(socket._ready[address]) < SOCKET_PRE_CONNECT_QUEUE_SIZE:
|
for address in socket._ready:
|
||||||
s = socket.socket()
|
if len(socket._ready[address]) < SOCKET_PRE_CONNECT_QUEUE_SIZE:
|
||||||
s._connect(address)
|
s = socket.socket()
|
||||||
socket._ready[address].append(s._sock)
|
s._connect(address)
|
||||||
time.sleep(0.01)
|
socket._ready[address].append(s._sock)
|
||||||
|
except socket.error:
|
||||||
|
pass
|
||||||
|
finally:
|
||||||
|
time.sleep(0.01)
|
||||||
|
|
||||||
def connect(self, address):
|
def connect(self, address):
|
||||||
found = False
|
found = False
|
||||||
|
|||||||
Reference in New Issue
Block a user