mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 20:51:31 +00:00
Minor update of fingerprints
This commit is contained in:
@@ -97,8 +97,10 @@ class Fingerprint(GenericFingerprint):
|
||||
infoMsg = "actively fingerprinting %s" % DBMS.PGSQL
|
||||
logger.info(infoMsg)
|
||||
|
||||
if inject.checkBooleanExpression("XMLTABLE(NULL) IS NULL"):
|
||||
Backend.setVersion(">= 10.0")
|
||||
if inject.checkBooleanExpression("SHA256(NULL) IS NULL"):
|
||||
Backend.setVersion(">= 11.0")
|
||||
elif inject.checkBooleanExpression("XMLTABLE(NULL) IS NULL"):
|
||||
Backend.setVersionList([">= 10.0", "< 11.0"])
|
||||
elif inject.checkBooleanExpression("SIND(0)=0"):
|
||||
Backend.setVersionList([">= 9.6.0", "< 10.0"])
|
||||
elif inject.checkBooleanExpression("TO_JSONB(1) IS NOT NULL"):
|
||||
|
||||
Reference in New Issue
Block a user