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

Skip to content

Commit 53eadb0

Browse files
committed
Fixes #3173
1 parent 7b705b9 commit 53eadb0

3 files changed

Lines changed: 5 additions & 5 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.7.10"
22+
VERSION = "1.2.7.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)

plugins/dbms/postgresql/fingerprint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ def checkDbms(self):
100100
if inject.checkBooleanExpression("XMLTABLE(NULL) IS NULL"):
101101
Backend.setVersion(">= 10.0")
102102
elif inject.checkBooleanExpression("SIND(0)=0"):
103-
Backend.setVersion(">= 9.6.0", "< 10.0")
103+
Backend.setVersionList([">= 9.6.0", "< 10.0"])
104104
elif inject.checkBooleanExpression("TO_JSONB(1) IS NOT NULL"):
105-
Backend.setVersion(">= 9.5.0", "< 9.6.0")
105+
Backend.setVersionList([">= 9.5.0", "< 9.6.0"])
106106
elif inject.checkBooleanExpression("JSON_TYPEOF(NULL) IS NULL"):
107107
Backend.setVersionList([">= 9.4.0", "< 9.5.0"])
108108
elif inject.checkBooleanExpression("ARRAY_REPLACE(NULL,1,1) IS NULL"):

txt/checksum.md5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
4848
0c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4949
a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5050
fcb74fcc9577523524659ec49e2e964b lib/core/session.py
51-
f140b81ca26a2eb0e071cb6837352d28 lib/core/settings.py
51+
048446ac83a95b7b5d017366bcf4485d lib/core/settings.py
5252
dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5353
a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
5454
95f04c1c1d8c3998d86e1bdf0e12771c lib/core/target.py
@@ -185,7 +185,7 @@ bcdbd9c04d7d5a911e0e31abe1a24f0f plugins/dbms/oracle/takeover.py
185185
f99c23db4ee6a6b8c0edbf684d360ad3 plugins/dbms/postgresql/connector.py
186186
7cdb821884e5f15084d1bea7f8a50574 plugins/dbms/postgresql/enumeration.py
187187
c8bb829d45752b98e6a03817b92e0fe5 plugins/dbms/postgresql/filesystem.py
188-
29560cf78211888802c6e5c8681e7d71 plugins/dbms/postgresql/fingerprint.py
188+
d30806e39996e6d273f0af888f5710a4 plugins/dbms/postgresql/fingerprint.py
189189
470860d3e85d11a67f2220bffaa415e7 plugins/dbms/postgresql/__init__.py
190190
20e6f48f496348be45f3402ebc265dbb plugins/dbms/postgresql/syntax.py
191191
1287acf330da86a93c8e64aff46e3b65 plugins/dbms/postgresql/takeover.py

0 commit comments

Comments
 (0)