mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-09 17:51:33 +00:00
Update for an Issue #287
This commit is contained in:
parent
ef33729381
commit
a6448e8768
5 changed files with 54 additions and 15 deletions
|
|
@ -421,11 +421,11 @@ class Backend:
|
|||
dbms = Backend.getForcedDbms()
|
||||
elif Backend.getDbms() is not None:
|
||||
dbms = kb.dbms
|
||||
elif conf.get('dbms'):
|
||||
elif conf.get("dbms"):
|
||||
dbms = conf.dbms
|
||||
elif Backend.getErrorParsedDBMSes():
|
||||
dbms = unArrayizeValue(Backend.getErrorParsedDBMSes())
|
||||
elif kb.injection.dbms:
|
||||
elif kb.get("injection") and kb.injection.dbms:
|
||||
dbms = unArrayizeValue(kb.injection.dbms)
|
||||
|
||||
return aliasToDbmsEnum(dbms)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue