File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2020from thirdparty .six import unichr as _unichr
2121
2222# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23- VERSION = "1.6.3.20 "
23+ VERSION = "1.6.4.0 "
2424TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2525TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2626VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change 6161 from lib .core .common import MKSTEMP_PREFIX
6262 from lib .core .common import setColor
6363 from lib .core .common import unhandledExceptionMessage
64+ from lib .core .compat import LooseVersion
65+ from lib .core .compat import xrange
6466 from lib .core .data import cmdLineOptions
6567 from lib .core .data import conf
6668 from lib .core .data import kb
6769 from lib .core .datatype import OrderedSet
68- from lib .core .compat import LooseVersion
69- from lib .core .compat import xrange
7070 from lib .core .exception import SqlmapBaseException
7171 from lib .core .exception import SqlmapShellQuitException
7272 from lib .core .exception import SqlmapSilentQuitException
@@ -161,6 +161,7 @@ def main():
161161 # to an IPC database
162162 sys .stdout = StdDbOut (conf .taskid , messagetype = "stdout" )
163163 sys .stderr = StdDbOut (conf .taskid , messagetype = "stderr" )
164+
164165 setRestAPILog ()
165166
166167 conf .showTime = True
@@ -579,5 +580,5 @@ def main():
579580 else :
580581 sys .exit (getattr (os , "_exitcode" , 0 ))
581582else :
582- # cancelling postponed imports (because of Travis CI checks)
583+ # cancelling postponed imports (because of CI/CD checks)
583584 __import__ ("lib.controller.controller" )
You can’t perform that action at this time.
0 commit comments