mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-11-08 11:57:26 +03:00
one more tampering module
This commit is contained in:
parent
e81a293d20
commit
a71fcfbcc9
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 New Issue
Block a user