We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c4c1571 commit 94ab178Copy full SHA for 94ab178
lib/core/settings.py
@@ -19,7 +19,7 @@
19
from thirdparty.six import unichr as _unichr
20
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
-VERSION = "1.5.5.8"
+VERSION = "1.5.5.9"
23
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
24
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
25
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
thirdparty/ansistrm/ansistrm.py
@@ -4,6 +4,7 @@
4
#
5
6
import logging
7
+import re
8
import sys
9
10
from lib.core.settings import IS_WIN
0 commit comments