Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bcdba7b commit 43ddf39Copy full SHA for 43ddf39
1 file changed
lib/core/common.py
@@ -425,8 +425,8 @@ def getIdentifiedDbms():
425
dbms = kb.dbms
426
elif conf.get('dbms'):
427
dbms = conf.dbms
428
- elif len(Backend.getErrorParsedDBMSes()) > 0:
429
- dbms = Backend.getErrorParsedDBMSes()[0]
+ elif Backend.getErrorParsedDBMSes():
+ dbms = unArrayizeValue(Backend.getErrorParsedDBMSes())
430
elif kb.injection.dbms:
431
dbms = unArrayizeValue(kb.injection.dbms)
432
0 commit comments