We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90329a8 commit 72cf904Copy full SHA for 72cf904
1 file changed
plugins/generic/databases.py
@@ -805,7 +805,7 @@ def getCount(self):
805
806
elif "." in conf.tbl:
807
if not conf.db:
808
- conf.db, conf.tbl = conf.tbl.split(".")
+ conf.db, conf.tbl = conf.tbl.split('.', 1)
809
810
if conf.tbl is not None and conf.db is None and Backend.getIdentifiedDbms() not in (DBMS.SQLITE, DBMS.ACCESS, DBMS.FIREBIRD):
811
warnMsg = "missing database parameter. sqlmap is going to "
0 commit comments