Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit d577c57

Browse files
authored
Merge pull request #2590 from neargle/master
append %A0 to the blanks set of tamper/space2mysqlblank
2 parents e2d3187 + ca24509 commit d577c57

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

tamper/space2mysqlblank.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,8 @@ def tamper(payload, **kwargs):
4242
# FF 0C new page
4343
# CR 0D carriage return
4444
# VT 0B vertical TAB (MySQL and Microsoft SQL Server only)
45-
blanks = ('%09', '%0A', '%0C', '%0D', '%0B')
45+
# A0 non-breaking space
46+
blanks = ('%09', '%0A', '%0C', '%0D', '%0B', '%A0')
4647
retVal = payload
4748

4849
if payload:

0 commit comments

Comments
 (0)