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 ba4ed30 commit bc4e1daCopy full SHA for bc4e1da
1 file changed
lib/utils/sqlalchemy.py
@@ -18,6 +18,12 @@
18
except ImportError:
19
pass
20
21
+try:
22
+ import MySQLdb # used by SQLAlchemy in case of MySQL
23
+ warnings.filterwarnings("error", category=MySQLdb.Warning)
24
+except ImportError:
25
+ pass
26
+
27
from lib.core.data import conf
28
from lib.core.data import logger
29
from lib.core.exception import SqlmapConnectionException
0 commit comments