mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Adding recognition of Amazon Aurora forks
This commit is contained in:
@@ -31,10 +31,12 @@ class Fingerprint(GenericFingerprint):
|
||||
if fork is None:
|
||||
if inject.checkBooleanExpression("VERSION() LIKE '%CockroachDB%'"):
|
||||
fork = FORK.COCKROACHDB
|
||||
elif inject.checkBooleanExpression("VERSION() LIKE '%Redshift%'"): # Reference: https://dataedo.com/kb/query/amazon-redshift/check-server-version
|
||||
elif inject.checkBooleanExpression("VERSION() LIKE '%Redshift%'"): # Reference: https://dataedo.com/kb/query/amazon-redshift/check-server-version
|
||||
fork = FORK.REDSHIFT
|
||||
elif inject.checkBooleanExpression("VERSION() LIKE '%Greenplum%'"): # Reference: http://www.sqldbpros.com/wordpress/wp-content/uploads/2014/08/what-version-of-greenplum.png
|
||||
elif inject.checkBooleanExpression("VERSION() LIKE '%Greenplum%'"): # Reference: http://www.sqldbpros.com/wordpress/wp-content/uploads/2014/08/what-version-of-greenplum.png
|
||||
fork = FORK.GREENPLUM
|
||||
elif inject.checkBooleanExpression("AURORA_VERSION() LIKE '%'"): # Reference: https://aws.amazon.com/premiumsupport/knowledge-center/aurora-version-number/
|
||||
fork = FORK.AURORA
|
||||
else:
|
||||
fork = ""
|
||||
|
||||
|
||||
Reference in New Issue
Block a user