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

Skip to content

Commit ad0ca69

Browse files
committed
Fixes #1865
1 parent 2d801b7 commit ad0ca69

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

lib/core/option.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,7 @@
133133
from lib.core.settings import VERSION_STRING
134134
from lib.core.settings import WEBSCARAB_SPLITTER
135135
from lib.core.threads import getCurrentThreadData
136+
from lib.core.threads import setDaemon
136137
from lib.core.update import update
137138
from lib.parse.configfile import configFileParser
138139
from 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

10681070
def _setHTTPHandlers():

lib/core/settings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
from 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"
2323
REVISION = getRevisionNumber()
2424
STABLE = VERSION.count('.') <= 2
2525
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")

0 commit comments

Comments
 (0)