Minor bug fix - restored of so called kb.misc.testedDbms (now kb.misc.fpDbms) to force the DBMS (only) during the fingerprint phase

This commit is contained in:
Bernardo Damele
2011-01-14 11:55:20 +00:00
parent f209b7a65e
commit 3c95d71ea5
23 changed files with 31 additions and 39 deletions

View File

@@ -2044,7 +2044,9 @@ def getErrorParsedDBMSes():
def getIdentifiedDBMS():
dbms = None
if kb.dbms is not None:
if kb.misc.fpDbms is not None:
dbms = kb.misc.fpDbms
elif kb.dbms is not None:
dbms = kb.dbms
elif conf.dbms is not None:
dbms = conf.dbms