mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 08:22:15 +01:00
Merge pull request #2590 from neargle/master
append %A0 to the blanks set of tamper/space2mysqlblank
This commit is contained in:
commit
d577c57a11
1 changed files with 2 additions and 1 deletions
|
|
@ -42,7 +42,8 @@ def tamper(payload, **kwargs):
|
|||
# FF 0C new page
|
||||
# CR 0D carriage return
|
||||
# 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
|
||||
|
||||
if payload:
|
||||
|
|
|
|||
Loading…
Reference in a new issue