Ssl asp连接HTTPS和Fiddler在WebForms和TexView中显示密码

Ssl asp连接HTTPS和Fiddler在WebForms和TexView中显示密码,ssl,asp.net-mvc-4,https,fiddler,Ssl,Asp.net Mvc 4,Https,Fiddler,我有个问题。我已经在ASP.NET MVC 4中配置了一个带有SSL(https)连接的web。但当我用一个简单的表格发送我的凭证时,Fiddler 2会以纯文本形式显示我的凭证 我的web配置文件: <authentication mode ="Forms"> <forms loginUrl="~/Account/LogOn" timeout="20" protection="All" requireSSL="true" /> <!-- <f

我有个问题。我已经在ASP.NET MVC 4中配置了一个带有SSL(https)连接的web。但当我用一个简单的表格发送我的凭证时,Fiddler 2会以纯文本形式显示我的凭证

我的web配置文件:

 <authentication mode ="Forms">
  <forms loginUrl="~/Account/LogOn" timeout="20"  protection="All" requireSSL="true"  />
  <!--  <forms loginUrl="~/Account/LogOn" timeout="20"  protection="All"   requireSSL="true" /> -->
</authentication>


<httpCookies httpOnlyCookies="true" requireSSL="true" lockItem="true"/>

有什么帮助吗?谢谢大家!

这很正常。Fiddler注册为web浏览器的代理,这意味着它将看到未加密的流量。没什么好担心的。如果有人在网络中间监听,他将看不到这一点。

比它是代理更相关的是,要使流量解密工作,您必须重新配置操作系统以信任Fiddler的根。请看这里的第一个问题:
filters.Add(new HandleErrorAttribute());
        filters.Add(new System.Web.Mvc.AuthorizeAttribute());
        filters.Add(new RequireHttpsAttribute());