We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 552077f commit ba96261Copy full SHA for ba96261
.gitignore
@@ -1,6 +1,8 @@
1
-*.py[cod]
2
output/
+__pycache__/
3
+*.py[cod]
4
.sqlmap_history
5
traffic.txt
6
*~
7
+req*.txt
8
.idea/
lib/core/settings.py
@@ -17,7 +17,7 @@
17
from lib.core.enums import OS
18
19
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
20
-VERSION = "1.3.4.25"
+VERSION = "1.3.4.26"
21
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
22
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
23
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
0 commit comments