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 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