mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 17:46:37 +03:00
Minor patch
This commit is contained in:
parent
2be0ebd883
commit
decd092b2a
|
@ -1267,7 +1267,7 @@ def expandAsteriskForColumns(expression):
|
||||||
infoMsg += "sqlmap will retrieve the column names itself"
|
infoMsg += "sqlmap will retrieve the column names itself"
|
||||||
logger.info(infoMsg)
|
logger.info(infoMsg)
|
||||||
|
|
||||||
_ = asterisk.group(2).replace("..", ".")
|
_ = asterisk.group(2).replace("..", ".").replace(".dbo.", ".")
|
||||||
conf.db, conf.tbl = _.split(".", 1) if '.' in _ else (None, _)
|
conf.db, conf.tbl = _.split(".", 1) if '.' in _ else (None, _)
|
||||||
conf.db = safeSQLIdentificatorNaming(conf.db)
|
conf.db = safeSQLIdentificatorNaming(conf.db)
|
||||||
conf.tbl = safeSQLIdentificatorNaming(conf.tbl, True)
|
conf.tbl = safeSQLIdentificatorNaming(conf.tbl, True)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user