space2htab for replacing spaces with horizontal space (%9)

This commit is contained in:
HeisenbergCipherCracker 2024-01-26 23:51:32 -05:00
parent d68ac1b19a
commit da0831bbbb

View File

@ -9,7 +9,7 @@ def tamper(payload:str,**kwargs):
"""
Replace payload space characters with horizontal space(%09)
>>> tamper("SELECT id FROM users")
'SELECT%09id%09FROM%09users'
'SELECT%09id%09FROM%09users'
"""
retVal = payload
place_space = "%9"