File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1919from 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 "
2323TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2424TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2525VERSION_STRING = "sqlmap/%s#%s" % ('.' .join (VERSION .split ('.' )[:- 1 ]) if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] == '0' else VERSION , TYPE )
Original file line number Diff line number Diff 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" ):
Original file line number Diff line number Diff line change @@ -48,7 +48,7 @@ c8c386d644d57c659d74542f5f57f632 lib/core/patch.py
48480c3eef46bdbf87e29a3f95f90240d192 lib/core/replication.py
4949a7db43859b61569b601b97f187dd31c5 lib/core/revision.py
5050fcb74fcc9577523524659ec49e2e964b lib/core/session.py
51- f140b81ca26a2eb0e071cb6837352d28 lib/core/settings.py
51+ 048446ac83a95b7b5d017366bcf4485d lib/core/settings.py
5252dd68a9d02fccb4fa1428b20e15b0db5d lib/core/shell.py
5353a7edc9250d13af36ac0108f259859c19 lib/core/subprocessng.py
545495f04c1c1d8c3998d86e1bdf0e12771c lib/core/target.py
@@ -185,7 +185,7 @@ bcdbd9c04d7d5a911e0e31abe1a24f0f plugins/dbms/oracle/takeover.py
185185f99c23db4ee6a6b8c0edbf684d360ad3 plugins/dbms/postgresql/connector.py
1861867cdb821884e5f15084d1bea7f8a50574 plugins/dbms/postgresql/enumeration.py
187187c8bb829d45752b98e6a03817b92e0fe5 plugins/dbms/postgresql/filesystem.py
188- 29560cf78211888802c6e5c8681e7d71 plugins/dbms/postgresql/fingerprint.py
188+ d30806e39996e6d273f0af888f5710a4 plugins/dbms/postgresql/fingerprint.py
189189470860d3e85d11a67f2220bffaa415e7 plugins/dbms/postgresql/__init__.py
19019020e6f48f496348be45f3402ebc265dbb plugins/dbms/postgresql/syntax.py
1911911287acf330da86a93c8e64aff46e3b65 plugins/dbms/postgresql/takeover.py
You can’t perform that action at this time.
0 commit comments