mirror of
https://github.com/sqlmapproject/sqlmap.git
synced 2025-12-06 12:41:30 +00:00
Minor adjustment, still to work on the cookie urlencoding/decoding
This commit is contained in:
@@ -105,7 +105,9 @@ class Connect:
|
||||
requestMsg += " HTTP/1.1"
|
||||
|
||||
if cookie:
|
||||
cookie = urlencode(cookie).replace("%%", "%")
|
||||
# TODO: sure about encoding the cookie?
|
||||
#cookie = urlencode(cookie).replace("%%", "%")
|
||||
cookie = cookie.replace("%%", "%")
|
||||
|
||||
try:
|
||||
# Perform HTTP request
|
||||
|
||||
Reference in New Issue
Block a user