File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
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.7.1.11 "
23
+ VERSION = "1.7.1.12 "
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 64
64
from lib .core .common import setPaths
65
65
from lib .core .common import weAreFrozen
66
66
from lib .core .convert import getUnicode
67
- from lib .core .common import MKSTEMP_PREFIX
68
67
from lib .core .common import setColor
69
68
from lib .core .common import unhandledExceptionMessage
70
69
from lib .core .compat import LooseVersion
73
72
from lib .core .data import conf
74
73
from lib .core .data import kb
75
74
from lib .core .datatype import OrderedSet
75
+ from lib .core .enums import MKSTEMP_PREFIX
76
76
from lib .core .exception import SqlmapBaseException
77
77
from lib .core .exception import SqlmapShellQuitException
78
78
from lib .core .exception import SqlmapSilentQuitException
You can’t perform that action at this time.
0 commit comments