mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Fixes #1919
This commit is contained in:
parent
b0ea74dc63
commit
77f0b5dfa8
2 changed files with 2 additions and 2 deletions
|
|
@ -989,7 +989,7 @@ class Connect(object):
|
|||
|
||||
while True:
|
||||
try:
|
||||
compiler.parse(conf.evalCode.replace(';', '\n'))
|
||||
compiler.parse(unicodeencode(conf.evalCode.replace(';', '\n')))
|
||||
except SyntaxError, ex:
|
||||
original = replacement = ex.text.strip()
|
||||
for _ in re.findall(r"[A-Za-z_]+", original)[::-1]:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue