File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Expand file tree Collapse file tree 2 files changed +5
-1
lines changed 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.9.18 "
23+ VERSION = "1.5.9.19 "
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 )
Original file line number Diff line number Diff line change 7373from lib .core .settings import URI_INJECTABLE_REGEX
7474from lib .core .settings import USER_AGENT_ALIASES
7575from lib .core .settings import XML_RECOGNITION_REGEX
76+ from lib .core .threads import getCurrentThreadData
7677from lib .utils .hashdb import HashDB
7778from thirdparty import six
7879from thirdparty .odict import OrderedDict
@@ -708,6 +709,9 @@ def initTargetEnv():
708709 if conf .cj :
709710 resetCookieJar (conf .cj )
710711
712+ threadData = getCurrentThreadData ()
713+ threadData .reset ()
714+
711715 conf .paramDict = {}
712716 conf .parameters = {}
713717 conf .hashDBFile = None
You can’t perform that action at this time.
0 commit comments