Merge pull request #2590 from neargle/master

append %A0 to the blanks set of tamper/space2mysqlblank
This commit is contained in:
Miroslav Stampar 2017-06-19 22:51:21 +02:00 committed by GitHub
commit d577c57a11

View File

@ -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: