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 4e61113 commit 311444aCopy full SHA for 311444a
2 files changed
lib/core/common.py
@@ -1365,7 +1365,7 @@ def parseTargetDirect():
1365
import pyodbc
1366
elif dbmsName == DBMS.FIREBIRD:
1367
import kinterbasdb
1368
- except ImportError:
+ except:
1369
if _sqlalchemy and data[3] in _sqlalchemy.dialects.__all__:
1370
pass
1371
else:
lib/utils/deps.py
@@ -46,7 +46,7 @@ def checkDependencies():
46
__import__("jpype")
47
elif dbmsName == DBMS.INFORMIX:
48
__import__("ibm_db_dbi")
49
50
warnMsg = "sqlmap requires '%s' third-party library " % data[1]
51
warnMsg += "in order to directly connect to the DBMS "
52
warnMsg += "'%s'. Download from %s" % (dbmsName, data[2])
0 commit comments