mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
Update related to the #2677
This commit is contained in:
parent
4e611133c6
commit
311444a4ac
|
@ -1365,7 +1365,7 @@ def parseTargetDirect():
|
|||
import pyodbc
|
||||
elif dbmsName == DBMS.FIREBIRD:
|
||||
import kinterbasdb
|
||||
except ImportError:
|
||||
except:
|
||||
if _sqlalchemy and data[3] in _sqlalchemy.dialects.__all__:
|
||||
pass
|
||||
else:
|
||||
|
|
|
@ -46,7 +46,7 @@ def checkDependencies():
|
|||
__import__("jpype")
|
||||
elif dbmsName == DBMS.INFORMIX:
|
||||
__import__("ibm_db_dbi")
|
||||
except ImportError:
|
||||
except:
|
||||
warnMsg = "sqlmap requires '%s' third-party library " % data[1]
|
||||
warnMsg += "in order to directly connect to the DBMS "
|
||||
warnMsg += "'%s'. Download from %s" % (dbmsName, data[2])
|
||||
|
|
Loading…
Reference in New Issue
Block a user