mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
minor update
This commit is contained in:
parent
d8c343a88a
commit
91ebadff75
|
@ -34,6 +34,7 @@ class Syntax(GenericSyntax):
|
||||||
unescaped = ""
|
unescaped = ""
|
||||||
|
|
||||||
for i in xrange(firstIndex, lastIndex):
|
for i in xrange(firstIndex, lastIndex):
|
||||||
|
# Postgres CHR() function already accepts Unicode code point of character(s)
|
||||||
unescaped += "CHR(%d)" % (ord(expression[i]))
|
unescaped += "CHR(%d)" % (ord(expression[i]))
|
||||||
if i < lastIndex - 1:
|
if i < lastIndex - 1:
|
||||||
unescaped += "||"
|
unescaped += "||"
|
||||||
|
|
Loading…
Reference in New Issue
Block a user