Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 72cf904

Browse files
committed
Fixes #1401
1 parent 90329a8 commit 72cf904

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

plugins/generic/databases.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -805,7 +805,7 @@ def getCount(self):
805805

806806
elif "." in conf.tbl:
807807
if not conf.db:
808-
conf.db, conf.tbl = conf.tbl.split(".")
808+
conf.db, conf.tbl = conf.tbl.split('.', 1)
809809

810810
if conf.tbl is not None and conf.db is None and Backend.getIdentifiedDbms() not in (DBMS.SQLITE, DBMS.ACCESS, DBMS.FIREBIRD):
811811
warnMsg = "missing database parameter. sqlmap is going to "

0 commit comments

Comments
 (0)