mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-04 14:55:40 +00:00
Adding support for MsAccess usage of parsed FROM table names (e.g. in case of ColdFusion)
This commit is contained in:
parent
1782bf8e64
commit
9fad72f28b
4 changed files with 13 additions and 1 deletions
|
|
@ -721,6 +721,8 @@ class Agent(object):
|
|||
|
||||
if conf.uFrom:
|
||||
fromTable = " FROM %s" % conf.uFrom
|
||||
elif kb.tableFrom:
|
||||
fromTable = " FROM %s" % kb.tableFrom
|
||||
else:
|
||||
fromTable = fromTable or FROM_DUMMY_TABLE.get(Backend.getIdentifiedDbms(), "")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue