How would you go about sending multiple cookies with python requests
the documentation only gives
url = 'http://httpbin.org/cookies'
cookies = dict(cookies_are='working')
r = requests.get(url, cookies=cookies)
r.text
Here is what i have tried currently
url = 'http://192.168.0.57/dvwa/vulnerabilities/fi/?page=include.php'
cookies = dict(cookies_are=options.cookie)
r = requests.get(url, cookies=cookies, headers=headers)
when i run my script with
--cookie="security=Low; PHPSESSID=4edca0525666fbbe319f50ce3630b4a9"
the security cookie is not recognised but the PHPSESID is