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

Skip to content

Commit cd7c99c

Browse files
committed
Minor revert (it was not necessary - caused other problems)
1 parent 75478c1 commit cd7c99c

2 files changed

Lines changed: 1 addition & 3 deletions

File tree

lib/core/option.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,6 @@
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
137136
from lib.core.update import update
138137
from lib.parse.configfile import configFileParser
139138
from lib.parse.payloads import loadBoundaries
@@ -1064,7 +1063,6 @@ def connect(self, address):
10641063
socket.socket.connect = connect
10651064

10661065
thread = threading.Thread(target=_)
1067-
setDaemon(thread)
10681066
thread.start()
10691067

10701068
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.24"
22+
VERSION = "1.0.5.25"
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)