在查看C#上的HttpWebRequest
和HttpWebResponse
方法时,
我刚刚了解了HTTP POST
和HTTP GET
以及HTTPS
HTTPS
表示我们发送的任何数据will be encrypted so that it is secure
即使在制作POST
时向HTTPS
网站提交某些HttpWebRequest
数据时,Fiddler
似乎没有问题可以阅读username
和{ {1}}。怎么样?
password
上面的网址为POST https://someurl HTTP/1.1
Content-Type: application/x-www-form-urlencoded
Host: some-host
Content-Length: 84
Expect: 100-continue
Connection: Keep-Alive
j_username=admin&j_password=pass*&Submit=Login
,可能意味着所有HTTPS
。
然后datas are encrypted
如何知道用户名和密码?