Skip to content

Commit 1e7a453

Browse files
committed
1 parent 138aa6d commit 1e7a453

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
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.1.10"
22+
VERSION = "1.1.1.11"
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: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,11 @@
77

88
import difflib
99
import random
10+
import thread
1011
import threading
1112
import time
1213
import traceback
1314

14-
from thread import error as ThreadError
15-
1615
from lib.core.data import conf
1716
from lib.core.data import kb
1817
from lib.core.data import logger
@@ -151,7 +150,7 @@ def runThreads(numThreads, threadFunction, cleanupFunction=None, forwardExceptio
151150

152151
try:
153152
thread.start()
154-
except ThreadError, ex:
153+
except thread.error, ex:
155154
errMsg = "error occurred while starting new thread ('%s')" % ex.message
156155
logger.critical(errMsg)
157156
break

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,12 +45,12 @@ e544108e2238d756c94a240e8a1ce061 lib/core/optiondict.py
4545
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4646
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4747
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
48-
800e6d250a33cd2c809154e724b0870a lib/core/settings.py
48+
f5c3572d071e44ca33347de2a6dfe44f lib/core/settings.py
4949
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5050
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5151
afd0636d2e93c23f4f0a5c9b6023ea17 lib/core/target.py
5252
8970b88627902239d695280b1160e16c lib/core/testing.py
53-
ce5578a2e6b25dc6fd115133f92e0643 lib/core/threads.py
53+
1504e8c6bdd69edc17b5f240eaa73fb2 lib/core/threads.py
5454
ad74fc58fc7214802fd27067bce18dd2 lib/core/unescaper.py
5555
1f1fa616b5b19308d78c610ec8046399 lib/core/update.py
5656
4d13ed693401a498b6d073a2a494bd83 lib/core/wordlist.py

0 commit comments

Comments
 (0)