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

Skip to content

Commit e11febd

Browse files
committed
Fixes #3375
1 parent f2af886 commit e11febd

3 files changed

Lines changed: 5 additions & 3 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.2.11.9"
22+
VERSION = "1.2.11.10"
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/generic/users.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,8 @@ def getPasswordHashes(self):
285285
query = rootQuery.blind.query % (user, index, user)
286286
elif Backend.isDbms(DBMS.INFORMIX):
287287
query = rootQuery.blind.query % (user,)
288+
elif Backend.isDbms(DBMS.HSQLDB):
289+
query = rootQuery.blind.query % (index, user)
288290
else:
289291
query = rootQuery.blind.query % (user, index)
290292

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4949
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
5050
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5151
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
52-
b7d7300f745050d9a29bcf30a1ddcc5e lib/core/settings.py
52+
ffa07ffe5349c0a8d8cff5de53e3211d lib/core/settings.py
5353
a971ce157d04de96ba6e710d3d38a9a8 lib/core/shell.py
5454
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5555
721198b5be72c8015a02acb116532a1f lib/core/target.py
@@ -223,7 +223,7 @@ f7874230e5661910d5fd21544c7d1022 plugins/generic/misc.py
223223
30b421f06dc98998ddc1923a9048b7fc plugins/generic/search.py
224224
a70cc0ada4b0cc9e7df23cb6d48a4a0c plugins/generic/syntax.py
225225
a37c21cc3fa5c0c220d33d450bf503ed plugins/generic/takeover.py
226-
e762c77ff79e4c138145501f6fbb10cb plugins/generic/users.py
226+
1265241e309da72bb82c3863a4c1b4bd plugins/generic/users.py
227227
1e5532ede194ac9c083891c2f02bca93 plugins/__init__.py
228228
5dc693e22f5d020c5c568d7325bd4226 shell/backdoors/backdoor.asp_
229229
158bfa168128393dde8d6ed11fe9a1b8 shell/backdoors/backdoor.aspx_

0 commit comments

Comments
 (0)