mirror of
https://github.com/sqlmapproject/sqlmap
synced 2026-02-08 16:31:49 +01:00
minor update
This commit is contained in:
parent
d8c343a88a
commit
91ebadff75
1 changed files with 1 additions and 0 deletions
|
|
@ -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 a new issue