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 dce9a76 commit 7b9d978Copy full SHA for 7b9d978
1 file changed
plugins/generic/enumeration.py
@@ -1131,6 +1131,12 @@ def dumpTable(self):
1131
1132
rootQuery = queries[kb.dbms].dump_table
1133
1134
+ if kb.dbms == DBMS.MYSQL:
1135
+ if '-' in conf.tbl:
1136
+ conf.tbl = "`%s`" % conf.tbl
1137
+ if '-' in conf.db:
1138
+ conf.db = "`%s`" % conf.db
1139
+
1140
if conf.col:
1141
colList = conf.col.split(",")
1142
kb.data.cachedColumns[conf.db] = {}
0 commit comments