Skip to content

Commit 4af3195

Browse files
committed
Fixing CI/CD issues with keep-alive
1 parent 96645de commit 4af3195

File tree

3 files changed

+24
-12
lines changed

3 files changed

+24
-12
lines changed

data/txt/sha256sums.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ c1cb56f2a43e9f2f6b25d5f3d504e856ea21df6fc14af5e37b1000feef2bdb5a lib/core/optio
188188
48797d6c34dd9bb8a53f7f3794c85f4288d82a9a1d6be7fcf317d388cb20d4b3 lib/core/replication.py
189189
0b8c38a01bb01f843d94a6c5f2075ee47520d0c4aa799cecea9c3e2c5a4a23a6 lib/core/revision.py
190190
888daba83fd4a34e9503fe21f01fef4cc730e5cde871b1d40e15d4cbc847d56c lib/core/session.py
191-
8508162b2a95e54102ee8aec95888d7e2061d73b7d0e9ecd47d4f5e22ca94820 lib/core/settings.py
191+
87350eb153acd7d278f60b5e2cabc43b7b98cdaf1642433ac3f7a55d54198b56 lib/core/settings.py
192192
cd5a66deee8963ba8e7e9af3dd36eb5e8127d4d68698811c29e789655f507f82 lib/core/shell.py
193193
bcb5d8090d5e3e0ef2a586ba09ba80eef0c6d51feb0f611ed25299fbb254f725 lib/core/subprocessng.py
194194
d35650179816193164a5f177102f18379dfbe6bb6d40fbb67b78d907b41c8038 lib/core/target.py
@@ -618,7 +618,7 @@ edf23e7105539d700a1ae1bc52436e57e019b345a7d0227e4d85b6353ef535fa thirdparty/ide
618618
d846fdc47a11a58da9e463a948200f69265181f3dbc38148bfe4141fade10347 thirdparty/identywaf/LICENSE
619619
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 thirdparty/__init__.py
620620
879d96f2460bc6c79c0db46b5813080841c7403399292ce76fe1dc0a6ed353d8 thirdparty/keepalive/__init__.py
621-
c7ac7253fa450030f9c42f11bb19689055bb8c39621bcfbeca856ba3c9342760 thirdparty/keepalive/keepalive.py
621+
ae394bfae5204dfeffeccc15c356d9bf21708f9e48016681cfb8040ff8857998 thirdparty/keepalive/keepalive.py
622622
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 thirdparty/magic/__init__.py
623623
4d89a52f809c28ce1dc17bb0c00c775475b8ce01c2165942877596a6180a2fd8 thirdparty/magic/magic.py
624624
e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 thirdparty/multipart/__init__.py

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty import six
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.10.2.3"
23+
VERSION = "1.10.2.4"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

thirdparty/keepalive/keepalive.py

Lines changed: 21 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -164,8 +164,10 @@ def remove(self, connection):
164164

165165
def set_ready(self, connection, ready):
166166
self._lock.acquire()
167-
if connection in self._readymap: self._readymap[connection] = ready
168-
self._lock.release()
167+
try:
168+
if connection in self._readymap: self._readymap[connection] = ready
169+
finally:
170+
self._lock.release()
169171

170172
def get_ready_conn(self, host):
171173
conn = None
@@ -258,6 +260,16 @@ def do_open(self, req):
258260

259261
if DEBUG: DEBUG.info("STATUS: %s, %s", r.status, r.reason)
260262

263+
if not r.will_close:
264+
try:
265+
headers = getattr(r, 'msg', None)
266+
if headers:
267+
c_head = headers.get("connection")
268+
if c_head and "close" in c_head.lower():
269+
r.will_close = True
270+
except Exception:
271+
pass
272+
261273
# if not a persistent connection, don't try to reuse it
262274
if r.will_close:
263275
if DEBUG: DEBUG.info('server will close connection, discarding')
@@ -322,16 +334,16 @@ def _reuse_connection(self, h, req, host):
322334

323335
def _start_transaction(self, h, req):
324336
try:
325-
if req.data is not None:
337+
if req.data:
326338
data = req.data
327339
if hasattr(req, 'selector'):
328340
h.putrequest(req.get_method() or 'POST', req.selector, skip_host=req.has_header("Host"), skip_accept_encoding=req.has_header("Accept-encoding"))
329341
else:
330342
h.putrequest(req.get_method() or 'POST', req.get_selector(), skip_host=req.has_header("Host"), skip_accept_encoding=req.has_header("Accept-encoding"))
331-
if not req.has_header('Content-type'):
343+
if 'Content-type' not in req.headers:
332344
h.putheader('Content-type',
333345
'application/x-www-form-urlencoded')
334-
if not req.has_header('Content-length'):
346+
if 'Content-length' not in req.headers:
335347
h.putheader('Content-length', '%d' % len(data))
336348
else:
337349
if hasattr(req, 'selector'):
@@ -341,17 +353,17 @@ def _start_transaction(self, h, req):
341353
except (socket.error, _http_client.HTTPException) as err:
342354
raise _urllib.error.URLError(err)
343355

344-
if not req.has_header('Connection'):
356+
if 'Connection' not in req.headers:
345357
h.putheader('Connection', 'keep-alive')
346358

347359
for args in self.parent.addheaders:
348-
if not req.has_header(args[0]):
360+
if args[0] not in req.headers:
349361
h.putheader(*args)
350362
for k, v in req.headers.items():
351363
h.putheader(k, v)
352364
h.endheaders()
353-
if req.data is not None:
354-
h.send(data)
365+
if req.data:
366+
h.send(req.data)
355367

356368
def _get_connection(self, host):
357369
raise NotImplementedError()

0 commit comments

Comments
 (0)