启用严格的传输安全MVC

问题描述 投票:0回答:1

我想实现严格的运输安全。 我的网站启用了 HTTPS。 下面是我启用 HSTS 的代码。

<system.webServer>
    <httpProtocol>
      <customHeaders>
     
          <add name="X-Frame-Options" value="SAMEORIGIN" />
          **<add name="Strict-Transport-Security" value="max-age=31536000"/>**
         .....
        </customHeaders>
    </httpProtocol>

以上设置足以启用严格的传输安全,还是我还需要添加以下设置。

<rewrite>
      <rules>
        <rule name="HTTP to HTTPS redirect" stopProcessing="true">
          <match url="(.*)" />
          <conditions>
            <add input="{HTTPS}" pattern="off" ignoreCase="true" />
          </conditions>
          <action type="Redirect" url="https://{HTTP_HOST}/{R:1}"
              redirectType="Permanent" />
        </rule>
      </rules> 
      <outboundRules>
        <rule name="Add Strict-Transport-Security when HTTPS" enabled="true">
          <match serverVariable="RESPONSE_Strict_Transport_Security"
              pattern=".*" />
          <conditions>
            <add input="{HTTPS}" pattern="on" ignoreCase="true" />
          </conditions>
          <action type="Rewrite" value="max-age=31536000" />
        </rule>
      </outboundRules>
    </rewrite> 

如果这两个设置都是强制的那还需要重写什么 我们可以只通过

<add name="Strict-Transport-Security" value="max-age=31536000"/>
来启用 HSTS 或者仅重写。

为什么需要重写。

这个网站说要添加重写alogin with

<add name="Strict-Transport-Security" value="max-age=31536000"/>

asp.net-mvc security iis-7
1个回答
8
投票

此标头强制浏览器使用 HTTPS。如果应用程序在某处给出了 HTTP 链接,或者用户尝试使用 HTTP 输入 URL,浏览器会将其重定向到 https。要使用 HSTS,站点需要有效的 SSL 证书。重写不是强制性的,但最好有。因为,如果用户首先使用 https 进入网站,那么每当他来到该网站时,用户将被自动重定向,直到过期,并且每次访问时最大年龄也会更新。但如果用户以http方式进入一次,STS可能无法工作,直到他以https方式使用该网站一次。最好使用重写。

<system.webServer>
<httpProtocol>
<customHeaders>
<add name="Strict-Transport-Security" value="max-age=xxxxxx"/>
</customHeaders>
</httpProtocol>
</system.webServer>

https://www.owasp.org/index.php/HTTP_Strict_Transport_Security_Cheat_Sheet

https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security

© www.soinside.com 2019 - 2024. All rights reserved.