mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 01:26:42 +03:00
Bug fix for escaping in SQLite 3
This commit is contained in:
parent
e836629215
commit
353c1cb63b
|
@ -17,7 +17,7 @@ class Syntax(GenericSyntax):
|
|||
@staticmethod
|
||||
def escape(expression, quote=True):
|
||||
def escaper(value):
|
||||
return "X'%s'" % binascii.hexlify(value)
|
||||
return "CAST(X'%s' AS TEXT)" % binascii.hexlify(value)
|
||||
|
||||
retVal = expression
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user