Skip to content

Commit 1c5f01e

Browse files
committed
1 parent ebbc688 commit 1c5f01e

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
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.4.43"
22+
VERSION = "1.1.4.44"
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/techniques/error/use.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -421,8 +421,8 @@ def errorThread():
421421
index = None
422422
if threadData.shared.showEta:
423423
threadData.shared.progress.progress(time.time() - valueStart, threadData.shared.counter)
424-
for index in xrange(len(threadData.shared.buffered)):
425-
if threadData.shared.buffered[index][0] >= num:
424+
for index in xrange(1 + len(threadData.shared.buffered)):
425+
if index < len(threadData.shared.buffered) and threadData.shared.buffered[index][0] >= num:
426426
break
427427
threadData.shared.buffered.insert(index or 0, (num, output))
428428
while threadData.shared.buffered and threadData.shared.lastFlushed + 1 == threadData.shared.buffered[0][0]:

lib/techniques/union/use.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -356,16 +356,16 @@ def unionThread():
356356
items = filtered.values()
357357
items = [items]
358358
index = None
359-
for index in xrange(len(threadData.shared.buffered)):
360-
if threadData.shared.buffered[index][0] >= num:
359+
for index in xrange(1 + len(threadData.shared.buffered)):
360+
if index < len(threadData.shared.buffered) and threadData.shared.buffered[index][0] >= num:
361361
break
362362
threadData.shared.buffered.insert(index or 0, (num, items))
363363
else:
364364
index = None
365365
if threadData.shared.showEta:
366366
threadData.shared.progress.progress(time.time() - valueStart, threadData.shared.counter)
367-
for index in xrange(len(threadData.shared.buffered)):
368-
if threadData.shared.buffered[index][0] >= num:
367+
for index in xrange(1 + len(threadData.shared.buffered)):
368+
if index < len(threadData.shared.buffered) and threadData.shared.buffered[index][0] >= num:
369369
break
370370
threadData.shared.buffered.insert(index or 0, (num, None))
371371

txt/checksum.md5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ ebb778c2d26eba8b34d7d8658e4105a6 lib/core/optiondict.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
e07f462feeee9f7371da366f9799bd1c lib/core/settings.py
49+
67af5c012b781810e14301748cb43e21 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
155e2d3fda87b2e3ffa4f7a770513946 lib/core/target.py
@@ -93,11 +93,11 @@ e7f3012f4f9e822d39eabd934d050b0e lib/takeover/web.py
9393
ab1601a7f429b47637c4fb8af703d0f1 lib/techniques/dns/test.py
9494
d3da4c7ceaf57c4687a052d58722f6bb lib/techniques/dns/use.py
9595
310efc965c862cfbd7b0da5150a5ad36 lib/techniques/error/__init__.py
96-
0a236e558e0f57a1986246d0db769025 lib/techniques/error/use.py
96+
8e918c27b796dada3f87ed2fafeb9d8c lib/techniques/error/use.py
9797
310efc965c862cfbd7b0da5150a5ad36 lib/techniques/__init__.py
9898
310efc965c862cfbd7b0da5150a5ad36 lib/techniques/union/__init__.py
9999
211e6dc49af6ad6bd3590d16d41e86db lib/techniques/union/test.py
100-
50d4de61ee0692d68bb87462bff37e15 lib/techniques/union/use.py
100+
d17ca7177a29d7d07094fc7dd747d4c5 lib/techniques/union/use.py
101101
67f0ad96ec2207d7e59c788b858afd6d lib/utils/api.py
102102
7d10ba0851da8ee9cd3c140dcd18798e lib/utils/brute.py
103103
2b6c7f906e5da25bcd8865c1f86a1dfb lib/utils/crawler.py

0 commit comments

Comments
 (0)