mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-22 09:36:35 +03:00
minor update
This commit is contained in:
parent
a71fcfbcc9
commit
4b641afc46
|
@ -1,11 +1,15 @@
|
|||
import re
|
||||
|
||||
from lib.core.convert import urlencode
|
||||
from lib.core.exception import sqlmapUnsupportedFeatureException
|
||||
|
||||
"""
|
||||
Tampering value -> urlencode(value)
|
||||
"""
|
||||
def tamper(place, value):
|
||||
if value:
|
||||
if place != "URI":
|
||||
value = urlencode(value)
|
||||
else:
|
||||
raise sqlmapUnsupportedFeatureException, "can't use tampering module 'doubleencode.py' with 'URI' type injections"
|
||||
return value
|
||||
|
|
Loading…
Reference in New Issue
Block a user