mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
Fixes #5367
This commit is contained in:
parent
3117730d84
commit
75bfebed9d
2 changed files with 2 additions and 2 deletions
|
|
@ -1333,7 +1333,7 @@ class Connect(object):
|
|||
compile(getBytes(re.sub(r"\s*;\s*", "\n", conf.evalCode)), "", "exec")
|
||||
except SyntaxError as ex:
|
||||
if ex.text:
|
||||
original = replacement = ex.text.strip()
|
||||
original = replacement = getUnicode(ex.text.strip())
|
||||
|
||||
if '=' in original:
|
||||
name, value = original.split('=', 1)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue