mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 04:31:30 +00:00
fix for a bug reported by Marcos Mateos Garcia (ValueError)
This commit is contained in:
@@ -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
|
||||
|
||||
|
||||
Reference in New Issue
Block a user