File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 133133from lib .core .settings import VERSION_STRING
134134from lib .core .settings import WEBSCARAB_SPLITTER
135135from lib .core .threads import getCurrentThreadData
136+ from lib .core .threads import setDaemon
136137from lib .core .update import update
137138from lib .parse .configfile import configFileParser
138139from lib .parse .payloads import loadBoundaries
@@ -1063,6 +1064,7 @@ def connect(self, address):
10631064 socket .socket .connect = connect
10641065
10651066 thread = threading .Thread (target = _ )
1067+ setDaemon (thread )
10661068 thread .start ()
10671069
10681070def _setHTTPHandlers ():
Original file line number Diff line number Diff line change 1919from lib .core .revision import getRevisionNumber
2020
2121# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22- VERSION = "1.0.5.22 "
22+ VERSION = "1.0.5.23 "
2323REVISION = getRevisionNumber ()
2424STABLE = VERSION .count ('.' ) <= 2
2525VERSION_STRING = "sqlmap/%s#%s" % (VERSION , "stable" if STABLE else "dev" )
You can’t perform that action at this time.
0 commit comments