mirror of
https://github.com/sqlmapproject/sqlmap
synced 2025-12-06 08:22:15 +01:00
one more tampering module
This commit is contained in:
parent
e81a293d20
commit
a71fcfbcc9
1 changed files with 11 additions and 0 deletions
11
tamper/doubleencode.py
Normal file
11
tamper/doubleencode.py
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
import re
|
||||
|
||||
from lib.core.convert import urlencode
|
||||
|
||||
"""
|
||||
Tampering value -> urlencode(value)
|
||||
"""
|
||||
def tamper(place, value):
|
||||
if value:
|
||||
value = urlencode(value)
|
||||
return value
|
||||
Loading…
Reference in a new issue