mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 08:22:15 +01:00
space2htab for replacing spaces with horizontal space (%9)
This commit is contained in:
parent
d68ac1b19a
commit
da0831bbbb
1 changed files with 1 additions and 1 deletions
|
|
@ -9,7 +9,7 @@ def tamper(payload:str,**kwargs):
|
||||||
"""
|
"""
|
||||||
Replace payload space characters with horizontal space(%09)
|
Replace payload space characters with horizontal space(%09)
|
||||||
>>> tamper("SELECT id FROM users")
|
>>> tamper("SELECT id FROM users")
|
||||||
'SELECT%09id%09FROM%09users'
|
'SELECT%09id%09FROM%09users'
|
||||||
"""
|
"""
|
||||||
retVal = payload
|
retVal = payload
|
||||||
place_space = "%9"
|
place_space = "%9"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue