Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2d3187 commit ca24509Copy full SHA for ca24509
1 file changed
tamper/space2mysqlblank.py
@@ -42,7 +42,8 @@ def tamper(payload, **kwargs):
42
# FF 0C new page
43
# CR 0D carriage return
44
# VT 0B vertical TAB (MySQL and Microsoft SQL Server only)
45
- blanks = ('%09', '%0A', '%0C', '%0D', '%0B')
+ # A0 non-breaking space
46
+ blanks = ('%09', '%0A', '%0C', '%0D', '%0B', '%A0')
47
retVal = payload
48
49
if payload:
0 commit comments