mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Fixes #4733
This commit is contained in:
@@ -1275,7 +1275,7 @@ class Connect(object):
|
||||
|
||||
while True:
|
||||
try:
|
||||
compile(getBytes(conf.evalCode.replace(';', '\n')), "", "exec")
|
||||
compile(getBytes(re.sub(r"\s*;\s*", "\n", conf.evalCode)), "", "exec")
|
||||
except SyntaxError as ex:
|
||||
if ex.text:
|
||||
original = replacement = ex.text.strip()
|
||||
|
||||
Reference in New Issue
Block a user