mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 16:32:23 +01:00
append %A0 to space2mysqlblank
This commit is contained in:
parent
e2d3187a78
commit
ca24509e19
1 changed files with 2 additions and 1 deletions
|
|
@ -42,7 +42,8 @@ def tamper(payload, **kwargs):
|
||||||
# FF 0C new page
|
# FF 0C new page
|
||||||
# CR 0D carriage return
|
# CR 0D carriage return
|
||||||
# VT 0B vertical TAB (MySQL and Microsoft SQL Server only)
|
# VT 0B vertical TAB (MySQL and Microsoft SQL Server only)
|
||||||
blanks = ('%09', '%0A', '%0C', '%0D', '%0B')
|
# A0 non-breaking space
|
||||||
|
blanks = ('%09', '%0A', '%0C', '%0D', '%0B', '%A0')
|
||||||
retVal = payload
|
retVal = payload
|
||||||
|
|
||||||
if payload:
|
if payload:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue