mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-02-03 13:14:13 +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)
|
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
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user