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

Skip to content

Commit ba369b7

Browse files
committed
Fixes #2601
1 parent 614f290 commit ba369b7

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

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.7.4"
22+
VERSION = "1.1.7.5"
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)

plugins/dbms/oracle/enumeration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ def getRoles(self, query2=False):
6767
user = None
6868
roles = set()
6969

70-
for count in xrange(0, len(value)):
70+
for count in xrange(0, len(value or [])):
7171
# The first column is always the username
7272
if count == 0:
7373
user = value[count]

plugins/generic/users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@ def getPrivileges(self, query2=False):
393393
user = None
394394
privileges = set()
395395

396-
for count in xrange(0, len(value)):
396+
for count in xrange(0, len(value or [])):
397397
# The first column is always the username
398398
if count == 0:
399399
user = value[count]

txt/checksum.md5

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ b9ff4e622c416116bee6024c0f050349 lib/core/enums.py
4646
d8e9250f3775119df07e9070eddccd16 lib/core/replication.py
4747
785f86e3f963fa3798f84286a4e83ff2 lib/core/revision.py
4848
40c80b28b3a5819b737a5a17d4565ae9 lib/core/session.py
49-
4538abe3e7f78f73fe3cd85dc4715e7f lib/core/settings.py
49+
ab9636352fc61fcb89683d45b2f895e8 lib/core/settings.py
5050
d91291997d2bd2f6028aaf371bf1d3b6 lib/core/shell.py
5151
2ad85c130cc5f2b3701ea85c2f6bbf20 lib/core/subprocessng.py
5252
baa3f47efa6701076d026e43a6874a51 lib/core/target.py
@@ -174,7 +174,7 @@ e43fda42decf2a70bad470b884674fbe plugins/dbms/mysql/fingerprint.py
174174
96dfafcc4aecc1c574148ac05dbdb6da plugins/dbms/mysql/syntax.py
175175
33b2dc28075ab560fd8a4dc898682a0d plugins/dbms/mysql/takeover.py
176176
ea4b9cd238075b79945bd2607810934a plugins/dbms/oracle/connector.py
177-
73fc1502dff934f008e3e2590b2609e7 plugins/dbms/oracle/enumeration.py
177+
0471e3bf8310064e28e7c36064056e8d plugins/dbms/oracle/enumeration.py
178178
dc5962a1d4d69d4206b6c03e00e7f33d plugins/dbms/oracle/filesystem.py
179179
525381f48505095b14e567c1f59ca9c7 plugins/dbms/oracle/fingerprint.py
180180
25a99a9dd7072b6b7346438599c78050 plugins/dbms/oracle/__init__.py
@@ -213,7 +213,7 @@ deed74334b637767fc9de8f74b37647a plugins/dbms/sybase/fingerprint.py
213213
070f58c52e2a04e7a9896b42b2d17dc2 plugins/generic/search.py
214214
562cfa80a15d5f7f1d52e10c5736d7e2 plugins/generic/syntax.py
215215
fca9946e960942cc9b22ef26e12b8b3a plugins/generic/takeover.py
216-
bc0b47ced3db9f6746966d8dfc423b56 plugins/generic/users.py
216+
f97b84b8dcbe80b2d86bc26829aed23b plugins/generic/users.py
217217
310efc965c862cfbd7b0da5150a5ad36 plugins/__init__.py
218218
b04db3e861edde1f9dd0a3850d5b96c8 shell/backdoor.asp_
219219
158bfa168128393dde8d6ed11fe9a1b8 shell/backdoor.aspx_

0 commit comments

Comments
 (0)