mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-03-19 09:32:25 +03:00
Merge pull request #2590 from neargle/master
append %A0 to the blanks set of tamper/space2mysqlblank
This commit is contained in:
commit
d577c57a11
|
@ -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 New Issue
Block a user