mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-03 22:31:34 +00:00
little cleanup
This commit is contained in:
parent
c4c2cf1d58
commit
b9b2fe0e7c
3 changed files with 1 additions and 4 deletions
|
|
@ -200,7 +200,6 @@ def checkSqlInjection(place, parameter, value):
|
|||
# Parse test's <request>
|
||||
comment = agent.getComment(test.request)
|
||||
fstPayload = agent.cleanupPayload(test.request.payload, value)
|
||||
fstPayload = unescaper.unescape(fstPayload, dbms=dbms)
|
||||
|
||||
for boundary in conf.boundaries:
|
||||
injectable = False
|
||||
|
|
@ -287,7 +286,6 @@ def checkSqlInjection(place, parameter, value):
|
|||
# In case of boolean-based blind SQL injection
|
||||
if method == PAYLOAD.METHOD.COMPARISON:
|
||||
sndPayload = agent.cleanupPayload(test.response.comparison, value)
|
||||
sndPayload = unescaper.unescape(sndPayload, dbms=dbms)
|
||||
|
||||
# Forge response payload by prepending with
|
||||
# boundary's prefix and appending the boundary's
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue