Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 77f0b5d

Browse files
committed
Fixes #1919
1 parent b0ea74d commit 77f0b5d

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from lib.core.revision import getRevisionNumber
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.0.6.1"
22+
VERSION = "1.0.6.2"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

lib/request/connect.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -989,7 +989,7 @@ def _randomizeParameter(paramString, randomParameter):
989989

990990
while True:
991991
try:
992-
compiler.parse(conf.evalCode.replace(';', '\n'))
992+
compiler.parse(unicodeencode(conf.evalCode.replace(';', '\n')))
993993
except SyntaxError, ex:
994994
original = replacement = ex.text.strip()
995995
for _ in re.findall(r"[A-Za-z_]+", original)[::-1]:

0 commit comments

Comments
 (0)