mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Adding support for FrontBase
This commit is contained in:
parent
dc6e7321e9
commit
125de093df
29 changed files with 1178 additions and 33 deletions
|
|
@ -56,6 +56,7 @@ class DBMS(object):
|
|||
CUBRID = "Cubrid"
|
||||
CACHE = "InterSystems Cache"
|
||||
EXTREMEDB = "eXtremeDB"
|
||||
FRONTBASE = "FrontBase"
|
||||
|
||||
class DBMS_DIRECTORY_NAME(object):
|
||||
ACCESS = "access"
|
||||
|
|
@ -82,6 +83,7 @@ class DBMS_DIRECTORY_NAME(object):
|
|||
CUBRID = "cubrid"
|
||||
CACHE = "cache"
|
||||
EXTREMEDB = "extremedb"
|
||||
FRONTBASE = "frontbase"
|
||||
|
||||
class FORK(object):
|
||||
MARIADB = "MariaDB"
|
||||
|
|
@ -426,3 +428,8 @@ class TIMEOUT_STATE(object):
|
|||
class HINT(object):
|
||||
PREPEND = 0
|
||||
APPEND = 1
|
||||
|
||||
class FUZZ_UNION_COLUMN:
|
||||
STRING = "<string>"
|
||||
INTEGER = "<integer>"
|
||||
NULL = "NULL"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue