mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 06:50:14 +00:00
Adding support for Virtuoso DBMS
This commit is contained in:
parent
1f33b16e01
commit
a6262a3aa9
19 changed files with 343 additions and 16 deletions
|
|
@ -276,7 +276,7 @@ class Users(object):
|
|||
if user in retrievedUsers:
|
||||
continue
|
||||
|
||||
if Backend.isDbms(DBMS.INFORMIX):
|
||||
if Backend.getIdentifiedDbms() in (DBMS.INFORMIX, DBMS.VIRTUOSO):
|
||||
count = 1
|
||||
else:
|
||||
infoMsg = "fetching number of password hashes "
|
||||
|
|
@ -322,7 +322,7 @@ class Users(object):
|
|||
if fallback:
|
||||
query = query.replace("master.dbo.fn_varbintohexstr", "sys.fn_sqlvarbasetostr")
|
||||
|
||||
elif Backend.isDbms(DBMS.INFORMIX):
|
||||
elif Backend.getIdentifiedDbms() in (DBMS.INFORMIX, DBMS.VIRTUOSO):
|
||||
query = rootQuery.blind.query % (user,)
|
||||
|
||||
elif Backend.isDbms(DBMS.HSQLDB):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue