File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed
Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -4158,10 +4158,11 @@ def _thread(regex):
41584158 if not suppressWarning :
41594159 debugMsg = "turning off reflection removal mechanism (for optimization purposes)"
41604160 logger .debug (debugMsg )
4161- except MemoryError :
4161+
4162+ except (MemoryError , SystemError ):
41624163 kb .reflectiveMechanism = False
41634164 if not suppressWarning :
4164- debugMsg = "turning off reflection removal mechanism (because of low memory issues) "
4165+ debugMsg = "turning off reflection removal mechanism"
41654166 logger .debug (debugMsg )
41664167
41674168 return retVal
Original file line number Diff line number Diff line change 2020from thirdparty .six import unichr as _unichr
2121
2222# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
23- VERSION = "1.5.12.3 "
23+ VERSION = "1.5.12.4 "
2424TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2525TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2626VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
You can’t perform that action at this time.
0 commit comments