mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Initial support for SQLite (90% approx).
Initial support for Firebird (30% approx). Initial support for Access (10% approx). Shared libraries code/installation scripts ported to 64bit, directory structure adapted. Minor code adjustments.
This commit is contained in:
parent
f1fde2e443
commit
0d559d14df
61 changed files with 3769 additions and 670 deletions
|
|
@ -103,6 +103,8 @@ def bannerParser(banner):
|
|||
DBMS banner based upon the data in XML file
|
||||
"""
|
||||
|
||||
xmlfile = None
|
||||
|
||||
if kb.dbms == "Microsoft SQL Server":
|
||||
xmlfile = paths.MSSQL_XML
|
||||
elif kb.dbms == "MySQL":
|
||||
|
|
@ -112,6 +114,9 @@ def bannerParser(banner):
|
|||
elif kb.dbms == "PostgreSQL":
|
||||
xmlfile = paths.PGSQL_XML
|
||||
|
||||
if not xmlfile:
|
||||
return
|
||||
|
||||
checkFile(xmlfile)
|
||||
|
||||
if kb.dbms == "Microsoft SQL Server":
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue