mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41: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)
|
dbTbl = asterisk.group(1)
|
||||||
|
|
||||||
if dbTbl and "." in dbTbl:
|
if dbTbl and "." in dbTbl:
|
||||||
conf.db, conf.tbl = dbTbl.split(".")
|
conf.db, conf.tbl = dbTbl.split(".", 1)
|
||||||
else:
|
else:
|
||||||
conf.tbl = dbTbl
|
conf.tbl = dbTbl
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user