Skip to content

Commit 75bfebe

Browse files
committed
Fixes #5367
1 parent 3117730 commit 75bfebe

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.7.3.1"
23+
VERSION = "1.7.3.2"
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)

lib/request/connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1333,7 +1333,7 @@ def _randomizeParameter(paramString, randomParameter):
13331333
compile(getBytes(re.sub(r"\s*;\s*", "\n", conf.evalCode)), "", "exec")
13341334
except SyntaxError as ex:
13351335
if ex.text:
1336-
original = replacement = ex.text.strip()
1336+
original = replacement = getUnicode(ex.text.strip())
13371337

13381338
if '=' in original:
13391339
name, value = original.split('=', 1)

0 commit comments

Comments
 (0)