Minor refactoring

This commit is contained in:
Miroslav Štampar 2026-06-28 09:49:16 +02:00
parent 771d4cfb66
commit cbf5dbd29e
4 changed files with 11 additions and 8 deletions

View file

@ -2604,6 +2604,7 @@ def _setHttpOptions():
if conf.url and (conf.url.startswith("ws:/") or conf.url.startswith("wss:/")):
try:
from websocket import ABNF
ABNF # require websocket-client, not any 'websocket' module
except ImportError:
errMsg = "sqlmap requires third-party module 'websocket-client' "
errMsg += "in order to use WebSocket functionality"

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.6.167"
VERSION = "1.10.6.168"
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

@ -12,14 +12,16 @@ import sys
PY3 = sys.version_info >= (3, 0)
if PY3:
try:
# Py2
text_type = unicode
string_types = (basestring,)
except NameError:
# Py3
xrange = range
text_type = str
string_types = (str,)
unichr = chr
else:
text_type = unicode
string_types = (basestring,)
# Regex used for recognition of hex encoded characters
HEX_ENCODED_CHAR_REGEX = r"(?P<result>\\x[0-9A-Fa-f]{2})"