mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 05:04:11 +03:00
lol. sybase and maxdb were just ignored while fingerprinted because they weren't in dbmsDict screwing half of dbms related functions (most notably aliasToDbmsEnum)
This commit is contained in:
parent
a37f5e05b9
commit
af99105c27
|
@ -322,6 +322,9 @@ Richard Safran <allapplyhere@yahoo.com>
|
||||||
Tomoyuki Sakurai <cherry@trombik.org>
|
Tomoyuki Sakurai <cherry@trombik.org>
|
||||||
for submitting to the FreeBSD project the sqlmap 0.5 port
|
for submitting to the FreeBSD project the sqlmap 0.5 port
|
||||||
|
|
||||||
|
Pedro Jacques Santos Santiago <pedro__jacques@hotmail.com>
|
||||||
|
for reporting a bug
|
||||||
|
|
||||||
Marek Sarvas <marek.sarvas@gmail.com>
|
Marek Sarvas <marek.sarvas@gmail.com>
|
||||||
for reporting several bugs
|
for reporting several bugs
|
||||||
|
|
||||||
|
|
|
@ -17,6 +17,8 @@ from lib.core.settings import ORACLE_ALIASES
|
||||||
from lib.core.settings import SQLITE_ALIASES
|
from lib.core.settings import SQLITE_ALIASES
|
||||||
from lib.core.settings import ACCESS_ALIASES
|
from lib.core.settings import ACCESS_ALIASES
|
||||||
from lib.core.settings import FIREBIRD_ALIASES
|
from lib.core.settings import FIREBIRD_ALIASES
|
||||||
|
from lib.core.settings import MAXDB_ALIASES
|
||||||
|
from lib.core.settings import SYBASE_ALIASES
|
||||||
|
|
||||||
# sqlmap paths
|
# sqlmap paths
|
||||||
paths = advancedDict()
|
paths = advancedDict()
|
||||||
|
@ -43,4 +45,7 @@ dbmsDict = { DBMS.MSSQL: [MSSQL_ALIASES, "python-pymssql", "http://pymssql.sourc
|
||||||
DBMS.ORACLE: [ORACLE_ALIASES, "python cx_Oracle", "http://cx-oracle.sourceforge.net/"],
|
DBMS.ORACLE: [ORACLE_ALIASES, "python cx_Oracle", "http://cx-oracle.sourceforge.net/"],
|
||||||
DBMS.SQLITE: [SQLITE_ALIASES, "python-pysqlite2", "http://pysqlite.googlecode.com/"],
|
DBMS.SQLITE: [SQLITE_ALIASES, "python-pysqlite2", "http://pysqlite.googlecode.com/"],
|
||||||
DBMS.ACCESS: [ACCESS_ALIASES, "python-pyodbc", "http://pyodbc.googlecode.com/"],
|
DBMS.ACCESS: [ACCESS_ALIASES, "python-pyodbc", "http://pyodbc.googlecode.com/"],
|
||||||
DBMS.FIREBIRD: [FIREBIRD_ALIASES, "python-kinterbasdb", "http://kinterbasdb.sourceforge.net/"] }
|
DBMS.FIREBIRD: [FIREBIRD_ALIASES, "python-kinterbasdb", "http://kinterbasdb.sourceforge.net/"],
|
||||||
|
DBMS.MAXDB: [MAXDB_ALIASES, None, None],
|
||||||
|
DBMS.SYBASE: [SYBASE_ALIASES, "python-pymssql", "http://pymssql.sourceforge.net/"]
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user