mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-07-25 15:39:48 +03:00
space2htab for replacing spaces with horizontal space (%9)
This commit is contained in:
parent
d68ac1b19a
commit
da0831bbbb
|
@ -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 New Issue
Block a user