Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fea5cc8 commit 9662f4aCopy full SHA for 9662f4a
2 files changed
lib/core/settings.py
@@ -19,7 +19,7 @@
19
from lib.core.revision import getRevisionNumber
20
21
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22
-VERSION = "1.0.5.28"
+VERSION = "1.0.5.29"
23
REVISION = getRevisionNumber()
24
STABLE = VERSION.count('.') <= 2
25
VERSION_STRING = "sqlmap/%s#%s" % (VERSION, "stable" if STABLE else "dev")
sqlmap.py
@@ -278,7 +278,10 @@ def main():
278
279
if threading.activeCount() > 1:
280
logger.debug("short delay for thread finalization")
281
- time.sleep(0.5)
+ try:
282
+ time.sleep(0.5)
283
+ except KeyboardInterrupt:
284
+ pass
285
286
# Reference: http://stackoverflow.com/questions/1635080/terminate-a-multi-thread-python-program
287
if conf.get("threads", 0) > 1 or conf.get("dnsServer"):
0 commit comments