mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-08 13:41:29 +00:00
Bug fix (reported by user over ML)
This commit is contained in:
@@ -72,7 +72,7 @@ def setHandler():
|
|||||||
items.insert(0, _)
|
items.insert(0, _)
|
||||||
|
|
||||||
for dbms, aliases, Handler, Connector in items:
|
for dbms, aliases, Handler, Connector in items:
|
||||||
if conf.dbms and conf.dbms.lower() != dbms.lower():
|
if conf.dbms and conf.dbms.lower() != dbms and conf.dbms.lower() not in aliases:
|
||||||
debugMsg = "skipping test for %s" % dbms
|
debugMsg = "skipping test for %s" % dbms
|
||||||
logger.debug(debugMsg)
|
logger.debug(debugMsg)
|
||||||
continue
|
continue
|
||||||
|
|||||||
Reference in New Issue
Block a user