Minor patch

This commit is contained in:
Miroslav Štampar 2026-07-19 17:39:30 +02:00
parent c64870301f
commit 47e98a02d0
2 changed files with 8 additions and 2 deletions

View file

@ -20,7 +20,7 @@ from lib.core.enums import OS
from thirdparty import six
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
VERSION = "1.10.7.137"
VERSION = "1.10.7.138"
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

View file

@ -544,7 +544,13 @@ class Connect(object):
break
else:
for i in xrange(max(1, kb.webSocketRecvCount)):
_page.append(ws.recv())
# Note: a later response may carry fewer frames than the calibration one
# (e.g. a FALSE boolean-blind reply); stop on timeout instead of letting it
# bubble up as a failed request, mirroring the initial recv loop above
try:
_page.append(ws.recv())
except websocket.WebSocketTimeoutException:
break
page = "\n".join(_page)
finally: