Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5eaf1d2 commit aacb360Copy full SHA for aacb360
2 files changed
lib/core/defaults.py
@@ -16,7 +16,7 @@
16
"timeout": 30,
17
"retries": 3,
18
"csrfRetries": 0,
19
- "saFreq": 0,
+ "safeFreq": 0,
20
"threads": 1,
21
"level": 1,
22
"risk": 1,
lib/core/settings.py
@@ -20,7 +20,7 @@
from thirdparty.six import unichr as _unichr
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
-VERSION = "1.6.4.6"
+VERSION = "1.6.5.0"
24
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
25
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
26
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)
0 commit comments