Skip to content

Commit 132fb0d

Browse files
committed
Another just in case patch for #2852
1 parent 84b7a26 commit 132fb0d

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

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.enums import OS
2020

2121
# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
22-
VERSION = "1.1.12.33"
22+
VERSION = "1.1.12.34"
2323
TYPE = "dev" if VERSION.count('.') > 2 and VERSION.split('.')[-1] != '0' else "stable"
2424
TYPE_COLORS = {"dev": 33, "stable": 90, "pip": 34}
2525
VERSION_STRING = "sqlmap/%s#%s" % ('.'.join(VERSION.split('.')[:-1]) if VERSION.count('.') > 2 and VERSION.split('.')[-1] == '0' else VERSION, TYPE)

lib/core/threads.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,9 @@ def runThreads(numThreads, threadFunction, cleanupFunction=None, forwardExceptio
188188
kb.threadException = True
189189
logger.error("thread %s: %s" % (threading.currentThread().getName(), ex.message))
190190

191+
if conf.verbose > 1:
192+
traceback.print_exc()
193+
191194
except:
192195
from lib.core.common import unhandledExceptionMessage
193196

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@ eec64e3d4c3f77eded3270b8116698ea lib/core/option.py
4646
760d9df2a27ded29109b390ab202e72d lib/core/replication.py
4747
a2466b62e67f8b31736bac4dac590e51 lib/core/revision.py
4848
02d4762140a72fd44668d3dab5eabda9 lib/core/session.py
49-
e529f917531d8212bf7efcdf4796a341 lib/core/settings.py
49+
36b9c8064f31700324b8e63b7a86131b lib/core/settings.py
5050
35bffbad762eb9e03db9e93b1c991103 lib/core/shell.py
5151
a59ec28371ae067a6fdd8f810edbee3d lib/core/subprocessng.py
5252
d93501771b41315f9fb949305b6ed257 lib/core/target.py
5353
df8f6475a53d83400c1a3967c0a21bd7 lib/core/testing.py
54-
bd984b3dfd2753f384b8a132838916e1 lib/core/threads.py
54+
9726944ec825659fe05648c6f5fa1aae lib/core/threads.py
5555
a119989ca03f8c8fbdf7d3035084eb31 lib/core/unescaper.py
5656
e7fb8c09fe7520c32895b859c4edf77a lib/core/update.py
5757
c976dd450b663cb4455cd9efbbcf625b lib/core/wordlist.py

0 commit comments

Comments
 (0)