File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 20
20
from thirdparty .six import unichr as _unichr
21
21
22
22
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23
- VERSION = "1.6.5.2 "
23
+ VERSION = "1.6.5.3 "
24
24
TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
25
25
TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
26
26
VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff line change @@ -452,6 +452,12 @@ def main():
452
452
logger .critical (errMsg )
453
453
raise SystemExit
454
454
455
+ elif all (_ in excMsg for _ in ("PermissionError: [WinError 5]" , "multiprocessing" )):
456
+ errMsg = "there is a permission problem in running multiprocessing on this system. "
457
+ errMsg += "Please rerun with '--disable-multi'"
458
+ logger .critical (errMsg )
459
+ raise SystemExit
460
+
455
461
elif all (_ in excMsg for _ in ("No such file" , "_'" )):
456
462
errMsg = "corrupted installation detected ('%s'). " % excMsg .strip ().split ('\n ' )[- 1 ]
457
463
errMsg += "You should retrieve the latest development version from official GitHub "
You can’t perform that action at this time.
0 commit comments