mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
On my way to properly parse test's <where> tag in exploitation phase
This commit is contained in:
parent
09b265a1ea
commit
283a04e29a
4 changed files with 20 additions and 9 deletions
|
|
@ -99,7 +99,12 @@ def __goInferenceProxy(expression, fromUser=False, expected=None, batch=False, r
|
|||
parameter through a bisection algorithm.
|
||||
"""
|
||||
|
||||
query = agent.prefixQuery(queries[kb.misc.testedDbms].inference.query)
|
||||
if kb.injection.data[1].epayload is not None:
|
||||
vector = agent.cleanupPayload(kb.injection.data[1].epayload)
|
||||
else:
|
||||
vector = queries[kb.misc.testedDbms].inference.query
|
||||
|
||||
query = agent.prefixQuery(vector)
|
||||
query = agent.suffixQuery(query)
|
||||
payload = agent.payload(newValue=query)
|
||||
count = None
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue