mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-07 13:11:29 +00:00
minor fix for retrieving stuff like "SELECT * FROM testdb..users"
This commit is contained in:
@@ -1096,6 +1096,9 @@ def expandAsteriskForColumns(expression):
|
||||
|
||||
dbTbl = asterisk.group(1)
|
||||
|
||||
if dbTbl and ".." in dbTbl:
|
||||
dbTbl = dbTbl.replace('..', '.dbo.')
|
||||
|
||||
if dbTbl and "." in dbTbl:
|
||||
conf.db, conf.tbl = dbTbl.split(".", 1)
|
||||
else:
|
||||
|
||||
Reference in New Issue
Block a user