mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2024-11-25 19:13:48 +03:00
Merging commit 57bcbb458eade2850a6d7623ecddbe49c69cf334 from @morisson
This commit is contained in:
parent
461ee24dcd
commit
5ee653dd89
|
@ -736,7 +736,9 @@ class Connect(object):
|
|||
else:
|
||||
get += "%s%s=%s" % (delimiter, name, value)
|
||||
|
||||
get = urlencode(get, limit=True)
|
||||
if not skipUrlEncode:
|
||||
get = urlencode(get, limit=True)
|
||||
|
||||
if post is not None:
|
||||
if place not in (PLACE.POST, PLACE.CUSTOM_POST) and hasattr(post, UNENCODED_ORIGINAL_VALUE):
|
||||
post = getattr(post, UNENCODED_ORIGINAL_VALUE)
|
||||
|
|
Loading…
Reference in New Issue
Block a user