Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e6532f3

Browse files
committed
Trying smth out
1 parent 72572d2 commit e6532f3

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

lib/core/common.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2271,6 +2271,8 @@ def isMultiThreadMode():
22712271
Checks if running in multi-thread(ing) mode
22722272
22732273
>>> import time
2274+
>>> threading.activeCount()
2275+
1
22742276
>>> isMultiThreadMode()
22752277
False
22762278
>>> _ = lambda: time.sleep(0.1)

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
from thirdparty.six import unichr as _unichr
2121

2222
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23-
VERSION = "1.5.9.10"
23+
VERSION = "1.5.9.11"
2424
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2525
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2626
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

0 commit comments

Comments
 (0)