mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-07-11 19:13:12 +00:00
another fix related to the bug reported by Alone Shell
This commit is contained in:
parent
82ab4c8dc2
commit
f3858a5fcf
2 changed files with 5 additions and 5 deletions
|
|
@ -1078,7 +1078,7 @@ class Enumeration:
|
|||
elif Backend.getIdentifiedDbms() == DBMS.MSSQL:
|
||||
query = rootQuery.blind.query2 % (conf.db, conf.db, conf.db,
|
||||
conf.db, column, conf.db,
|
||||
conf.db, conf.db, conf.tbl)
|
||||
conf.db, conf.db, conf.tbl if '.' not in conf.tbl else conf.tbl.split('.')[1])
|
||||
elif Backend.getIdentifiedDbms() == DBMS.FIREBIRD:
|
||||
query = rootQuery.blind.query2 % (conf.tbl, column)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue