mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-01-24 00:04:23 +03:00
fix for a bug reported by Marcos Mateos Garcia (ValueError)
This commit is contained in:
parent
5f7f4bf15b
commit
f3e3420677
|
@ -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…
Reference in New Issue
Block a user