mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-06-10 02:01:57 +00:00
fix for a bug reported by Marcos Mateos Garcia (ValueError)
This commit is contained in:
parent
5f7f4bf15b
commit
f3e3420677
1 changed files with 1 additions and 1 deletions
|
|
@ -812,7 +812,7 @@ def expandAsteriskForColumns(expression):
|
|||
dbTbl = asterisk.group(1)
|
||||
|
||||
if dbTbl and "." in dbTbl:
|
||||
conf.db, conf.tbl = dbTbl.split(".")
|
||||
conf.db, conf.tbl = dbTbl.split(".", 1)
|
||||
else:
|
||||
conf.tbl = dbTbl
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue