File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -90,6 +90,7 @@ class FORK(object):
9090 DRIZZLE = "Drizzle"
9191 IGNITE = "Apache Ignite"
9292 AURORA = "Aurora"
93+ ENTERPRISEDB = "EnterpriseDB"
9394
9495class CUSTOM_LOGGING (object ):
9596 PAYLOAD = 9
Original file line number Diff line number Diff line change 1818from thirdparty .six import unichr as _unichr
1919
2020# sqlmap version (<major>.<minor>.<month>.<monthly commit>)
21- VERSION = "1.4.2.13 "
21+ VERSION = "1.4.2.14 "
2222TYPE = "dev" if VERSION .count ('.' ) > 2 and VERSION .split ('.' )[- 1 ] != '0' else "stable"
2323TYPE_COLORS = {"dev" : 33 , "stable" : 90 , "pip" : 34 }
2424VERSION_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 @@ -35,6 +35,8 @@ def getFingerprint(self):
3535 fork = FORK .REDSHIFT
3636 elif inject .checkBooleanExpression ("VERSION() LIKE '%Greenplum%'" ): # Reference: http://www.sqldbpros.com/wordpress/wp-content/uploads/2014/08/what-version-of-greenplum.png
3737 fork = FORK .GREENPLUM
38+ elif inject .checkBooleanExpression ("VERSION() LIKE '%EnterpriseDB%'" ): # Reference: https://www.enterprisedb.com/edb-docs/d/edb-postgres-advanced-server/user-guides/user-guide/11/EDB_Postgres_Advanced_Server_Guide.1.087.html
39+ fork = FORK .ENTERPRISEDB
3840 elif inject .checkBooleanExpression ("AURORA_VERSION() LIKE '%'" ): # Reference: https://aws.amazon.com/premiumsupport/knowledge-center/aurora-version-number/
3941 fork = FORK .AURORA
4042 else :
You can’t perform that action at this time.
0 commit comments