File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.6.3.20 "
23
+ VERSION = "1.6.4.0 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_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 61
61
from lib .core .common import MKSTEMP_PREFIX
62
62
from lib .core .common import setColor
63
63
from lib .core .common import unhandledExceptionMessage
64
+ from lib .core .compat import LooseVersion
65
+ from lib .core .compat import xrange
64
66
from lib .core .data import cmdLineOptions
65
67
from lib .core .data import conf
66
68
from lib .core .data import kb
67
69
from lib .core .datatype import OrderedSet
68
- from lib .core .compat import LooseVersion
69
- from lib .core .compat import xrange
70
70
from lib .core .exception import SqlmapBaseException
71
71
from lib .core .exception import SqlmapShellQuitException
72
72
from lib .core .exception import SqlmapSilentQuitException
@@ -161,6 +161,7 @@ def main():
161
161
# to an IPC database
162
162
sys .stdout = StdDbOut (conf .taskid , messagetype = "stdout" )
163
163
sys .stderr = StdDbOut (conf .taskid , messagetype = "stderr" )
164
+
164
165
setRestAPILog ()
165
166
166
167
conf .showTime = True
@@ -579,5 +580,5 @@ def main():
579
580
else :
580
581
sys .exit (getattr (os , "_exitcode" , 0 ))
581
582
else :
582
- # cancelling postponed imports (because of Travis CI checks)
583
+ # cancelling postponed imports (because of CI/CD checks)
583
584
__import__ ("lib.controller.controller" )
You can’t perform that action at this time.
0 commit comments