mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Adding support for Percona (MySQL) fork
This commit is contained in:
parent
d227413a14
commit
186b3920e7
3 changed files with 4 additions and 1 deletions
|
|
@ -92,6 +92,8 @@ class Fingerprint(GenericFingerprint):
|
|||
fork = FORK.MARIADB
|
||||
elif inject.checkBooleanExpression("VERSION() LIKE '%TiDB%'"):
|
||||
fork = FORK.TIDB
|
||||
elif inject.checkBooleanExpression("@@VERSION_COMMENT LIKE '%Percona%'"):
|
||||
fork = FORK.PERCONA
|
||||
else:
|
||||
fork = ""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue