mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-06-08 07:03:10 +03:00
now when we don't urlencode whole URI using : and \ as safe chars is not a good idea
This commit is contained in:
parent
eedd6a990d
commit
9b2962ff1c
|
@ -80,7 +80,7 @@ def urldecode(value, encoding=None):
|
||||||
|
|
||||||
return result
|
return result
|
||||||
|
|
||||||
def urlencode(value, safe=":/?%&=|()", convall=False):
|
def urlencode(value, safe="%&=|()", convall=False):
|
||||||
if conf.direct or "POSTxml" in conf.paramDict:
|
if conf.direct or "POSTxml" in conf.paramDict:
|
||||||
return value
|
return value
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user