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 72572d2 commit e6532f3Copy full SHA for e6532f3
2 files changed
lib/core/common.py
@@ -2271,6 +2271,8 @@ def isMultiThreadMode():
2271
Checks if running in multi-thread(ing) mode
2272
2273
>>> import time
2274
+ >>> threading.activeCount()
2275
+ 1
2276
>>> isMultiThreadMode()
2277
False
2278
>>> _ = lambda: time.sleep(0.1)
lib/core/settings.py
@@ -20,7 +20,7 @@
20
from thirdparty.six import unichr as _unichr
21
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
-VERSION = "1.5.9.10"
+VERSION = "1.5.9.11"
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