mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-09 14:11:29 +00:00
Another update for an Issue #352 and couple of fixes
This commit is contained in:
@@ -22,10 +22,6 @@ def tamper(payload, **kwargs):
|
||||
Replaces space character (' ') with a random blank character from a
|
||||
valid set of alternate characters
|
||||
|
||||
Example:
|
||||
* Input: SELECT id FROM users
|
||||
* Output: SELECT%08id%02FROM%0Fusers
|
||||
|
||||
Requirement:
|
||||
* Microsoft SQL Server
|
||||
|
||||
@@ -35,6 +31,10 @@ def tamper(payload, **kwargs):
|
||||
|
||||
Notes:
|
||||
* Useful to bypass several web application firewalls
|
||||
|
||||
>>> random.seed(0)
|
||||
>>> tamper('SELECT id FROM users')
|
||||
'SELECT%0Eid%0DFROM%07users'
|
||||
"""
|
||||
|
||||
# ASCII table:
|
||||
|
||||
Reference in New Issue
Block a user