mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-10 09:49:06 +00:00
Fix for an Issue #488
This commit is contained in:
@@ -1466,7 +1466,7 @@ def _cleanupOptions():
|
|||||||
if conf.csvDel:
|
if conf.csvDel:
|
||||||
conf.csvDel = conf.csvDel.decode("string_escape") # e.g. '\\t' -> '\t'
|
conf.csvDel = conf.csvDel.decode("string_escape") # e.g. '\\t' -> '\t'
|
||||||
|
|
||||||
if conf.torPort and conf.torPort.isdigit():
|
if conf.torPort and isinstance(conf.torPort, basestring) and conf.torPort.isdigit():
|
||||||
conf.torPort = int(conf.torPort)
|
conf.torPort = int(conf.torPort)
|
||||||
|
|
||||||
if conf.torType:
|
if conf.torType:
|
||||||
|
|||||||
Reference in New Issue
Block a user