我对编码仍然很陌生(已经编码了一周),所以我在使用一个非常基本的功能方面苦苦挣扎。我正在尝试使用python登录网站,但是我很难更改set-cookie标头。请参阅下面的当前代码:import requeststargetURL = "http://hostip/v2_Website/aspx/login.aspx"headers = {"Host": "*host IP*","User-Agent": "Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0"}response = requests.get(url=targetURL, proxies=proxies, headers=headers,)response_headers = response.headers当我打印response.headers时,我得到以下信息:{'Cache-Control': 'no-cache, no-store', 'Pragma': 'no-cache,no-cache', 'Content-Length': '15671', 'Content-Type': 'text/html; charset=utf-8', 'Expires': '-1', 'Server': 'Microsoft-IIS/7.5', 'X-AspNet-Version': '2.0.50727', 'Set-Cookie': 'ASP.NET_SessionId=vq5q4lzlrqiiebbmxw341yic; path=/; HttpOnly, CookieLoginAttempts=5; expires=Tue, 14-Aug-2018 17:14:09 GMT; path=/', 'X-Powered-By': 'ASP.NET', 'Date': 'Tue, 14 Aug 2018 07:14:10 GMT', 'Connection': 'close'}显然,当我在HTTP POST中使用这些标头时,由于POST具有Set-Cookie标头而不是Cookie值,所以它失败。我的目标如下:将Set-Cookie键更新/更改为Cookie然后,我想删除Cookie键中不需要的值添加其他键和值最终,我想将标头更改为以下标题,以便可以将其用于POST,以便我传递登录凭据:POST /Test server/aspx/Login.aspx?function=Welcome HTTP/1.1Host: *Host IP*User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8Accept-Language: en-US,en;q=0.5Accept-Encoding: gzip, deflateReferer: http://*HostIP*/v2_Website/aspx/main.aspx?function=WelcomeCookie: ASP.NET_SessionId=3vy0fy55xsmffhbotikrwh55; CookieLoginAttempts=5; Admin=falseConnection: closeUpgrade-Insecure-Requests: 1Content-Type: application/x-www-form-urlencodedContent-Length: 220我的上述目标甚至可能吗?如果是这样的话,我什至看不到修改字典的过程,如何实现呢?再次提醒您,我在编码领域仍然非常环保,并试图“像编码员一样思考”,因此,将响应的技术水平降低一点是非常值得的,这样我就可以理解您的响应和建议。任何帮助将是巨大的!
添加回答
举报
0/150
提交
取消