mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2026-08-27 04:05:58 +00:00
Unescaping is renamed to escaping
This commit is contained in:
parent
c717de9c9d
commit
601eb1e49a
37 changed files with 51 additions and 287 deletions
|
|
@ -157,7 +157,7 @@ class Agent(object):
|
|||
return self.payloadDirect(expression)
|
||||
|
||||
expression = self.cleanupPayload(expression)
|
||||
expression = unescaper.unescape(expression)
|
||||
expression = unescaper.escape(expression)
|
||||
query = None
|
||||
|
||||
if where is None and kb.technique and kb.technique in kb.injection.data:
|
||||
|
|
@ -917,7 +917,7 @@ class Agent(object):
|
|||
else:
|
||||
lengthExpr = lengthQuery % expression
|
||||
|
||||
return unescaper.unescape(lengthExpr)
|
||||
return unescaper.escape(lengthExpr)
|
||||
|
||||
def forgeCaseStatement(self, expression):
|
||||
"""
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue