HTTP|HTTP 安全响应头(Security Response header)配置手册
请访问原文链接:https://sysin.org/article/security-headers/,查看最新版。转载请保留出处。
作者:gc(at)sysin.org,主页:www.sysin.org
一、常用安全 Header 释义
1. Strict-Transport-Security (HSTS)
HTTP Strict Transport Security
(通常简称为 HSTS)是一个安全功能,它告诉浏览器只能通过HTTPS访问当前资源,而不是 HTTP。
作用:访问一个 HTTPS 网站,要求浏览器总是通过 HTTPS 访问它。
语法:
strict-transport-security: max-age=
strict-transport-security: max-age=;
includeSubDomains
strict-transport-security: max-age=;
includeSubDomains;
preload
示例:
strict-transport-security: max-age=31536000;
includeSubDomains;
preload
释义:
-
max-age=
设置在浏览器收到这个请求后的秒的时间内凡是访问这个域名下的请求都使用 HTTPS 请求。 -
includeSubDomains
可选,如果这个可选的参数被指定,那么说明此规则也适用于该网站的所有子域名。 -
preload
可选,加入预加载列表
- Chrome & Chromium 的 HSTS 预加载列表: https://www.chromium.org/hsts
- Firefox 的 HSTS 预加载列表:nsSTSPreloadList.inc
输入 chrome://net-internals/#hsts,进入 HSTS 管理界面,可以增加/删除/查询 HSTS 记录。参考:HTTP Strict Transport Security (HSTS)
将网站加入预加载列表:https://hstspreload.org/
2. Public-Key-Pins(HPKP)
作用:防止中间人攻击。是 HTTPS 网站防止攻击者利用 CA 错误签发的证书进行中间人攻击的一种安全机制,用于预防 CA 遭入侵或者其他会造成 CA 签发未授权证书的情况。
服务器通过 Public-Key-Pins(或 Public-Key-Pins-Report-Onky 用于监测)header 向浏览器传递 HTTP 公钥固定信息。
语法:
Public-Key-Pins: pin-sha256="base64==";
max-age=expireTime [;
includeSubdomains][;
report-uri="reportURI"]
字段含义:
- pin-sha256:即证书指纹,允许出现多次,实际上应用最少指定两个
- max-age:过期时间
- includeSubdomains:是否包含子域
- report-uri:验证失败时上报的地址
3. Content-Security-Policy(CSP)
X-Content-Security-Policy(旧版)/Content-Security-Policy
CSP 是一个计算机的安全标志,主要用来防止 XSS、点击劫持、SQL 注入等攻击;CSP 通过定义运行加载脚本的位置和内容防止恶意代码的加载。
作用:用于定义页面可以加载哪些资源,减少和上报 XSS 的攻击,防止数据包嗅探攻击。
响应头:
- Content-Security-Policy
- X-Content-Security-Policy
- X-Webkit-CSP
Content-Security-Policy: default-src 'self'
- 一个策略由一系列策略指令组成,每个策略指令都描述了一个针对某个特定类型资源以及生效范围的策略。
- default-src 是 CSP 指令,多个指令之间使用英文分号分割。
- self 是指令值,多个指令值用英文空格分割。
- 支持的 CSP 指令。
指令 | 指令值示例 | 说明 |
---|---|---|
default-src | 'self' cnd.a.com | 定义针对所有类型资源的默认加载策略,某类型资源如果没有单独定义策略,就使用默认的 |
script-src | 'self' js.a.com | 定义针对 JavaScript 的加载策略 |
style-src | 'self' css.a.com | 定义针对样式的加载策略 |
img-src | 'self' img.a.com | 定义针对图片的加载策略 |
connect-src | 'self' | 针对 Ajax、WebSocket 等请求的加载策略。不允许的情况下,浏览器会模拟一个状态为 400 的响应 |
font-src | font.a.com | 针对 WebFont 的加载策略 |
object-src | 'self' | 针对 |
media-src | media.a.com | 针对 、 |
frame-src | 'self' | 针对 frame 的加载策略 |
sanbox | allow-forms | 对请求的资源启用 sandbox(类似于 iframe 的 sandbox 属性) |
report-uri | /report-uri | 告诉浏览器如果请求不被策略允许,往哪个地址提交日志信息。如果想让浏览器只汇报日志,不阻止任何内容,可以改用 Content-Security-Policy-Report-Only 头 |
指令值 | 指令值示例 | 说明 |
---|---|---|
img-src | 允许任何内容 | |
'none' | img-src 'none' | 不允许任何内容 |
'self' | img-src 'self' | 允许来自相同源的内容(相同的协议、域名和端口) |
data: | img-src data: | 允许 data:协议(如 base64 编码的图片) |
www.a.com | img-src img.a.com | 允许加载指定域名的资源 |
.a.com | img-src .a.com | 允许加载 a.com 任何子域的资源 |
https://img.com | img-src https://img.com | 允许加载 img.com 的 https 资源 |
https: | img-src https: | 允许加载 https 资源 |
'unsafe-inline' | script-src 'unsafe-inline' | 允许加载 inline 资源(例如常见的 style 属性,onclick, inline js, inline css) |
'unsafe-eval' | script-src 'unsafe-eval' | 允许加载动态 js 代码,例如 eval() |
- document-uri:发生违规的文档的 URI。
- referrer:违规发生处的文档引用地址
- blocked-uri:被 CS P阻止的资源 URI。如果被阻止的 URI 来自不同的源而非文档 URI,则被阻止的资源 URI 会被删减,仅保留协议、主机和端口号。
- violated-directive:违反的策略名称
- original-policy:在 Content-Security-Policy HTTP header 中指明的原始策略。
Content-Security-Policy: upgrade-insecure-requests
参考:内容安全策略CSP
4. Referrer-Policy
用来监管哪些访问来源信息——会在
Referer
中发送——应该被包含在生成的请求当中。(注意 Referer
实际上是单词 "referrer" 的错误拼写。Referrer-Policy
这个首部并没有延续这个错误拼写。)作用:增加隐私保护。
语法
Referrer-Policy: no-referrer
Referrer-Policy: no-referrer-when-downgrade
Referrer-Policy: origin
Referrer-Policy: origin-when-cross-origin
Referrer-Policy: same-origin
Referrer-Policy: strict-origin
Referrer-Policy: strict-origin-when-cross-origin
Referrer-Policy: unsafe-url
可配置值:
- no-referrer:不允许被记录。
- origin:只记录 origin,即域名。
- strict-origin:只有在 HTTPS -> HTTPS 之间才会被记录下来。
- strict-origin-when-cross-origin:同源请求会发送完整的 URL;HTTPS->HTTPS,发送源;降级下不发送此首部。
- no-referrer-when-downgrade(default):同 strict-origin。
- origin-when-cross-origin:对于同源的请求,会发送完整的 URL 作为引用地址,但是对于非同源请求仅发送文件的源。
- same-origin:对于同源请求会发送完整 URL,非同源请求则不发送 referer。
- unsafe-url:无论是同源请求还是非同源请求,都发送完整的 URL(移除参数信息之后)作为引用地址。(可能会泄漏敏感信息)。
5. Expect-CT
Expect-CT
头允许站点选择性报告和/或执行证书透明度 (Certificate Transparency) 要求,来防止错误签发的网站证书的使用不被察觉。当站点启用 Expect-CT
头,就是在请求浏览器检查该网站的任何证书是否出现在公共证书透明度日志之中。另外一种解释:用于指示浏览器或者客户端验证签名证书的时间戳
语法
Expect-CT: report-uri="";
enforce;
max-age=
指令
- max-age
该指令指定接收到Expect-CT
头后的秒数,在此期间用户代理应将收到消息的主机视为已知的 Expect-CT 主机。如果缓存接收到的值大于它可以表示的值,或者如果其随后计算溢出,则缓存将认为该值为 2147483648(2的31次幂)或其可以方便表示的最大正整数。
- report-uri="
" 可选
该指令指定用户代理应向其报告 Expect-CT 失效的 URI。 当enforce
指令和report-uri
指令共同存在时,这种配置被称为“强制执行和报告”配置,示意用户代理既应该强制遵守证书透明度政策,也应当报告违规行为。
- enforce 可选
该指令示意用户代理应强制遵守证书透明度政策(而不是只报告合规性),并且用户代理应拒绝违反证书透明度政策的之后连接。当enforce
指令和report-uri
指令共同存在时,这种配置被称为“强制执行和报告”配置,示意用户代理既应该强制遵守证书透明度政策,也应当报告违规行为。
以下示例指定 24 小时的证书透明度执行,并向 foo.example 报告违规行为.
Expect-CT: max-age=86400;
enforce;
report-uri="https://foo.example/report"
参考:Expect-CT
6. Access-Control-Allow-Origin
Access-Control-Allow-Origin
响应头指定了该响应的资源是否被允许与给定的origin共享。跨原始资源共享(CORS)允许网站在它们之间共享内容,为了使网站之间安全的跨域获取资源,可以通过设置Access-Control-Allow-Origin
来允许指定网站来跨域获取本地资源。当目标页面的示例:只允许”10.10.10.10“访问自己本地资源response
中包含Access-Control-Allow-Origin
这个 header,并且 value 有对方的域名,浏览器才允许目标获取页面的数据。
Access-Control-Allow-Origin: http://10.10.10.10
语法
Access-Control-Allow-Origin: *
Access-Control-Allow-Origin:
指令
*
对于不需具备凭证(credentials)的请求,服务器会以“
*
”作为通配符,从而允许所有域都具有访问资源的权限。
指定一个可以访问资源的 URL。
参考:Access-Control-Allow-Origin
7. Cache-Control
Cache-Control
通用消息头字段,被用于在 http 请求和响应中,通过指定指令来实现缓存机制。缓存指令是单向的,这意味着在请求中设置的指令,不一定被包含在响应中。缓存机制可以减少对网络带宽的占用,可以提高访问速度,提高用户的体验,特定请求被禁止缓存可以提高安全性。
语法
指令不区分大小写,并且具有可选参数,可以用令牌或者带引号的字符串语法。多个指令以逗号分隔。
- 缓存请求指令
Cache-Control: max-age=
Cache-Control: max-stale[=]
Cache-Control: min-fresh=
Cache-control: no-cache
Cache-control: no-store
Cache-control: no-transform
Cache-control: only-if-cached
- 缓存响应指令
Cache-control: must-revalidate
Cache-control: no-cache
Cache-control: no-store
Cache-control: no-transform
Cache-control: public
Cache-control: private
Cache-control: proxy-revalidate
Cache-Control: max-age=
Cache-control: s-maxage=
- 扩展
Cache-Control
指令
Cache-control: immutable
Cache-control: stale-while-revalidate=
Cache-control: stale-if-error=
指令
- 可缓存性
-
public
表明响应可以被任何对象(包括:发送请求的客户端,代理服务器,等等)缓存,即使是通常不可缓存的内容。(例如:1.该响应没有max-age
指令或Expires
消息头;2. 该响应对应的请求方法是 POST 。)
-
private
表明响应只能被单个用户缓存,不能作为共享缓存(即代理服务器不能缓存它)。私有缓存可以缓存响应内容,比如:对应用户的本地浏览器。
-
no-cache
在发布缓存副本之前,强制要求缓存把请求提交给原始服务器进行验证(协商缓存验证)。
-
no-store
缓存不应存储有关客户端请求或服务器响应的任何内容,即不使用任何缓存。
-
- 到期
-
max-age=
设置缓存存储的最大周期,超过这个时间缓存被认为过期(单位秒)。与Expires
相反,时间是相对于请求的时间。
-
s-maxage=
覆盖max-age
或者Expires
头,但是仅适用于共享缓存(比如各个代理),私有缓存会忽略它。
-
max-stale[=]
表明客户端愿意接收一个已经过期的资源。可以设置一个可选的秒数,表示响应不能已经过时超过该给定的时间。
-
min-fresh=
表示客户端希望获取一个能在指定的秒数内保持其最新状态的响应。
-
stale-while-revalidate=
表明客户端愿意接受陈旧的响应,同时在后台异步检查新的响应。秒值指示客户愿意接受陈旧响应的时间长度。
-
stale-if-error=
表示如果新的检查失败,则客户愿意接受陈旧的响应。秒数值表示客户在初始到期后愿意接受陈旧响应的时间。
-
- 重新验证和重新加载
-
must-revalidate
一旦资源过期(比如已经超过max-age
),在成功向原始服务器验证之前,缓存不能用该资源响应后续请求。
-
proxy-revalidate
与must-revalidate作用相同,但它仅适用于共享缓存(例如代理),并被私有缓存忽略。
-
immutable
表示响应正文不会随时间而改变。资源(如果未过期)在服务器上不发生改变,因此客户端不应发送重新验证请求头(例如If-None-Match
或If-Modified-Since
)来检查更新,即使用户显式地刷新页面。在Firefox中,immutable只能被用在https://
transactions. 有关更多信息,请参阅这里。
-
- 其他
-
no-transform
不得对资源进行转换或转变。Content-Encoding
、Content-Range
、Content-Type
等HTTP头不能由代理修改。例如,非透明代理或者如Google's Light Mode可能对图像格式进行转换,以便节省缓存空间或者减少缓慢链路上的流量。no-transform
指令不允许这样做。
-
only-if-cached
表明客户端只接受已缓存的响应,并且不要向原始服务器检查是否有更新的拷贝。
-
8. Set-Cookie
由服务器端向客户端发送 cookie
语法:
Set-Cookie: =
Set-Cookie: =;
Expires=
Set-Cookie: =;
Max-Age=
Set-Cookie: =;
Domain=
Set-Cookie: =;
Path=Set-Cookie: =;
Secure
Set-Cookie: =;
HttpOnlySet-Cookie: =;
SameSite=Strict
Set-Cookie: =;
SameSite=Lax// Multiple directives are also possible, for example:
Set-Cookie: =;
Domain=;
Secure;
HttpOnly
安全相关:
- HttpOnly:防止使用 javascript(如 document.cookie)去存取 cookie
- Secure:强制 cookie 只能在 HTTPS 环境下传递
9. X-Frame-Options
是否允许一个页面可在 < frame >、< iframe >、< embed > 或者 < object > 中展现的标记。(备注:<> 之间没有空格,这里写入 HTML 中会导致文章内容变形)
- frame 标签:框架标签,放置一个 HTML 文档(页面)
- iframe 标签:内联框架标签,在一个 HTML 页面中显示(插入)另一个 HTML 页面
- embed 标签:音频元素标签,插入一个音频元素
- object 标签:定义外部内容的容器标签
语法:
X-Frame-Options: DENY
X-Frame-Options: SAMEORIGIN
X-Frame-Options: ALLOW-FROM https://example.com/
响应头支持三种配置:
- DENY:表示该页面不允许在 frame 中展示,即便是在相同域名的页面中嵌套也不允许。
- SAMEORIGIN:表示该页面可以在相同域名页面的 frame 中展示。
- ALLOW-FROM uri:表示该页面可以在指定来源的 frame 中展示。
X-Frame-Options
10. X-XSS-Protection
HTTP
X-XSS-Protection
响应头是 Internet Explorer,Chrome 和 Safari 的一个特性,当检测到跨站脚本攻击 (XSS)时,浏览器将停止加载页面。若网站设置了良好的 Content-Security-Policy
来禁用内联 JavaScript ('unsafe-inline'
),现代浏览器不太需要这些保护, 但其仍然可以为尚不支持 CSP 的旧版浏览器的用户提供保护。作用:防范 XSS 攻击。
PS:这个是旧属性,基本上可以被 CSP 取代,但是仍可以为还没有支持 CSP 的浏览器提供一层保护。
主流浏览器默认都开启了 XSS 保护。
语法:
X-XSS-Protection: 0
X-XSS-Protection: 1
X-XSS-Protection: 1;
mode=block
X-XSS-Protection: 1;
report=
释义:
- 0:禁止XSS过滤。
- 1:启用XSS过滤(通常浏览器是默认的)。 如果检测到跨站脚本攻击,浏览器将清除页面(删除不安全的部分)。
- 1; mode=block:启用 XSS 过滤。 如果检测到攻击,浏览器将不会清除页面,而是阻止页面加载。
- 1;
report=
(Chromium only):启用 XSS 过滤。 如果检测到跨站脚本攻击,浏览器将清除页面并使用 CSP report-uri
指令的功能发送违规报告。
11. X-Content-Type-Options
X-Content-Type-Options
HTTP 消息头相当于一个提示标志,被服务器用来提示客户端一定要遵循在 Content-Type
首部中对 MIME 类型 的设定,而不能对其进行修改。这就禁用了客户端的 MIME 类型嗅探行为。作用:禁用浏览器的 Content-Type 猜测行为。
背景:浏览器通常会根据响应头 Content-Type 字段来分辨资源类型。有些资源的 Content-Type 是错的或者未定义。这时,浏览器会启用 MIME-sniffing 来猜测该资源的类型,解析内容并执行。利用这个特性,攻击者可以让原本应该解析为图片的请求被解析为 JavaScript。
使用方法:
X-Content-Type-Options: nosniff
参考:X-Content-Type-Options
12. X-Permitted-Cross-Domain-Policies
用于指定客户端能够访问的跨域策略文件的类型。
跨域策略文件是一种 XML 文件,用于授予 Web 客户端应用权限以处理跨域数据,如 Adobe Flash、Adobe Reader 等。当客户端请求托管在非自己域上的内容时,远程域需要配置一个跨域策略文件以授权请求域的访问,从而使得客户端继续进行相应的交互。
语法
X-Permitted-Cross-Domain-Policies: none
X-Permitted-Cross-Domain-Policies: master-only
X-Permitted-Cross-Domain-Policies: by-content-type
X-Permitted-Cross-Domain-Policies: by-ftp-filename
X-Permitted-Cross-Domain-Policies: all
释义
- none:目标服务器的任何位置都不允许使用策略文件,包括主策略文件
- master-only:仅允许使用主策略文件
- by-content-type:仅限 HTTP/HTTPS 协议使用,只允许使用 Content-Type: text/x-cross-domain-policy 提供的策略文件
- by-ftp-filename:仅限 FTP 协议使用,只允许使用文件名为 crossdomain.xml 的策略文件
- all:目标域上的所有策略文件都可以使用
2020年 7月 16日,W3C 组织发布规范,Feature Policy 正式更名为 Permissions Policy。(参看:Feature-Policy 退场,欢迎 Permissions-Policy !)
Feature Policy 是一个新的 http 响应头属性,允许一个站点开启或者禁止一些浏览器属性和 API,来更好的确保站点的安全性和隐私性。有点类似内容安全策略,但是它控制的是浏览器的特征而不是安全行为.
跟其他 http 安全响应头的设置一样,只需要敲定页面具体的限制策略,然后在 http 响应头中返回相应的策略即可:
Feature-Policy: vibrate 'self';
usermedia '*';
sync-xhr 'self' example.com
语法
Feature-Policy:
允许开启或者禁止的浏览器属性和API列表还没有完全敲定,比如 Mozilla 可以使用的指令有(see Features list):
Accelerometer
Ambient light sensor
Autoplay
Camera
Encrypted media
Fullscreen
Geolocation
Gyroscope
Magnetometer
Microphone
Midi
PaymentRequest
Picture-in-picture
USB
VR / XR
For now, there are a couple of ways to see what features are controllable.
- Check out our Feature Policy Kitchen Sink of demos. It has examples of each policy that's been implemented in Blink.
- Check Chrome's source for the list of feature names.
- Query
document.featurePolicy.allowedFeatures()
onabout:blank
to find the list:
["geolocation", "midi", "camera", "usb", "magnetometer", "fullscreen", "animations", "payment", "picture-in-picture", "accelerometer", "vr", ...
- Check [chromestatus.com](https://www.chromestatus.com/features#component%3A Blink>FeaturePolicy) for the policies that have been implemented or are being considered in Blink.
- *:在页面和内嵌iframes里面都允许。
- 'self':在页面上允许,在内嵌iframes内只允许同源资源使用。
- 'src':仅在iframe内生效的属性,只允许iframe内src属性与设置头相同的资源使用。
- 'none':在页面和内嵌中全部禁止。
:允许在特定的origin中使用,多个origins可以用空格隔开。
示例
禁用摄像头和定位 API,则可以在返回的 response 中传递以下定义 feature policy 的 HTTP 的头部信息:
Feature-Policy: camera 'none';
geolocation 'none'
参考:Feature-Policy
语法变更
原有 Feature-Policy 示例:
Feature-Policy: geolocation 'self' https://example.com;
microphone 'none'
Permissions-Policy 语法变更为:
Permissions-Policy: geolocation=(self "https://example.com"), microphone=()
例如,本站部署的 Header:
"Feature-Policy": "camera 'none';
microphone 'none'"
也相应变更为:
"Permissions-Policy": "camera=(),microphonee=()"
二、配置方法 以添加以下 Header 示例:
x-frame-options: SAMEORIGIN
1. 应用交付控制器
- F5 BIG-IP (iRules)
when HTTP_RESPONSE { HTTP::header insert X-Frame-Options "SAMEORIGIN" }
移除、替换原有 Header
when HTTP_RESPONSE { HTTP::header replace Server "SYSIN.ORG/2.0" HTTP::header remove X-AspNet-Version HTTP::header remove X-Powered-By }
- Ctrix ADC (AppExpert)
add rewrite action insert_x-frame-options_act insert_http_header X-Frame-Options "\"SAMEORIGIN\""
移除、替换原有 Header
add rewrite action server-header-remove-act delete_http_header X-Powered-By add rewrite action server-header-remove-act delete_http_header X-AspNet-Version
- 配置 Apache,所有页面上发送
X-Frame-Options
响应头,需要在site
中配置如下:
Header always set X-Frame-Options "SAMEORLGIN"
移除、替换原有 Header
Header always unset "X-Powered-By" Header unset "X-Powered-By”
语法:Header [condition] add|append|echo|edit|edit*|merge|set|setifempty|unset|note header [[expr=]value [replacement] [early|env=[!]varname|expr=expression]]
替换 Server
需要 Apache mod_security module (For CentOS:yum install mod_security
)
ServerTokens Prod SecServerSignature “Your-Server-Name”
- 配置 Nginx,所有页面上发送
X-Frame-Options
响应头,在http
,server
或者location
配置中添加:
add_header X-Frame-Options "SAMEORLGIN" always;
也可以使用模块:more_set_headers
清除 Header:more_clear_headers
more_clear_headers 'X-Hidden-*'; #支持通配符 more_clear_headers 'X-Powered-By';
Remove Server Header
Install
# Debian/Ubuntu the first ~/$> sudo apt-get install nginx-extras# RHEL and Amazon Linux ~/$> yum install nginx-plus-module-headers-more
Remove Server Header
# /etc/nginx/nginx.confhttp { # Basic Settings more_set_headers 'Server: ';
Override Server Header
# /etc/nginx/nginx.confhttp { # Basic Settings more_set_headers 'Server: None Of Your Business';
Remove Server Version from Header
# /etc/nginx/nginx.confhttp { # Basic Settings server_tokens off;
- 配置 IIS,在 Web.config 文件中添加:
或者使用 “Internet Information Services (IIS) Manager” > HTTP Response Headers,直接添加。
删除和修改 Server Header
下载并安装 UrlScan,编辑配置文件 URLScan.ini(位于 %WINDIR%\System32\Inetsrv\URLscan)
RemoveServerHeader=0#默认,修改值为 1 则不发送 Server header AlternateServerName=需要替换的名称
删除或者修改 X-Powered-By
“Internet Information Services (IIS) Manager” > HTTP Response Headers,直接修改或者删除。
删除 X-AspNet-Version
在站点的web.config文件下的结点下添加
这里提供部分示例:
- JAVA
Spring Security 支持在响应中添加各种安全头,默认响应安全头如下:
Cache-Control: no-cache, no-store, max-age=0, must-revalidate Pragma: no-cache Expires: 0 X-Content-Type-Options: nosniff Strict-Transport-Security: max-age=31536000 ; includeSubDomains X-Frame-Options: DENY X-XSS-Protection: 1; mode=block
示例:Spring Security 用 "X-Frame-Options: SAMEORIGIN" 允许 iframes 在同一个域。
@EnableWebSecurity public class WebSecurityConfig extends WebSecurityConfigurerAdapter {@Override protected void configure(HttpSecurity http) throws Exception { http // ... .headers() .frameOptions() .sameOrigin(); } }public class WebSecurityConfig extends WebSecurityConfigurerAdapter {@Override protected void configure(HttpSecurity http) throws Exception { http // ... .headers() .frameOptions() .sameOrigin(); } }
更多参看:https://www.baeldung.com/spring-response-header
- PHP
# In this example a HTTP header X-PHP-Version is added to the HTTP request. The value of this header is the version string of the PHP interpreter that is running the instance of HTTP_Request. addHeader("X-PHP-Version", phpversion()); $response = $req->sendRequest(); if (PEAR::isError($response)) { echo $response->getMessage(); } else { echo $req->getResponseBody(); } ?>
- C#
using System; using System.Text; using Microsoft.Web.Administration; internal static class Sample { private static void Main() { using (ServerManager serverManager = new ServerManager()) { Configuration config = serverManager.GetWebConfiguration("Default Web Site"); ConfigurationSection httpProtocolSection = config.GetSection("system.webServer/httpProtocol"); ConfigurationElementCollection customHeadersCollection = httpProtocolSection.GetCollection("customHeaders"); ConfigurationElement addElement = customHeadersCollection.CreateElement("add"); addElement["name"] = @"x-frame-options"; addElement["value"] = @"SAMEORIGIN"; customHeadersCollection.Add(addElement); serverManager.CommitChanges(); } } }
- VB.net
Imports System Imports System.Text Imports Microsoft.Web.AdministrationModule SampleSub Main() Dim serverManager As ServerManager = New ServerManager Dim config As Configuration = serverManager.GetWebConfiguration("Default Web Site") Dim httpProtocolSection As ConfigurationSection = config.GetSection("system.webServer/httpProtocol") Dim customHeadersCollection As ConfigurationElementCollection = httpProtocolSection.GetCollection("customHeaders")Dim addElement As ConfigurationElement = customHeadersCollection.CreateElement("add") addElement("name") = "x-frame-options" addElement("value") = "SAMEORIGIN" customHeadersCollection.Add(addElement)serverManager.CommitChanges() End SubEnd Module
- JavaScript
var adminManager = new ActiveXObject('Microsoft.ApplicationHost.WritableAdminManager'); adminManager.CommitPath = "MACHINE/WEBROOT/APPHOST/Default Web Site"; var httpProtocolSection = adminManager.GetAdminSection("system.webServer/httpProtocol", "MACHINE/WEBROOT/APPHOST/Default Web Site"); var customHeadersCollection = httpProtocolSection.ChildElements.Item("customHeaders").Collection; var addElement = customHeadersCollection.CreateNewElement("add"); addElement.Properties.Item("name").Value = "https://www.it610.com/article/x-frame-options"; addElement.Properties.Item("value").Value = "https://www.it610.com/article/SAMEORIGIN"; customHeadersCollection.AddElement(addElement); adminManager.CommitChanges();
通常需要修改、移除和添加一些 Header 如下:
1. 需要修改的 Header
Server
2. 需要移除的 Header
X-Powered-By
X-AspNet-Version
3. 建议添加的 Header
Strict-Transport-Security
X-Content-Type-Options
Content-Security-Policy
X-Xss-Protection
X-Frame-Options
Referrer-Policy
Feature-Policy
示例:
"Content-Security-Policy": "upgrade-insecure-requests",
"Strict-Transport-Security": "max-age=31536000;
includeSubDomains;
preload",
"X-Xss-Protection": "1;
mode=block",
"X-Frame-Options": "SAMEORIGIN",
"X-Content-Type-Options": "nosniff",
"Referrer-Policy": "strict-origin-when-cross-origin",
"Feature-Policy": "camera 'none';
microphone 'none'",
4. 通过 Security Headers 网站检测
注意 FAQ 中的要点:
Frequently asked questions
How do I get an A+ grade?
To get an A+ grade your site needs to issue all of the HTTP response headers that we check for. This indicates a high level of commitment to improving security for your visitors.
What headers do you check for?
Over a HTTP connection we check for Content-Security-Policy, X-Content-Type-Options, X-Frame-Options and X-XSS-Protection. Over a HTTPS connection we check for 2 additional headers which are Strict-Transport-Security and Public-Key-Pins.
四、资源网站 MDN HTTP Headers
Veracode Blog:Application Security Research, News, and Education
五、检测工具
- 在线检查网站:https://securityheaders.com/(推荐,提供配置建议)
- 命令行工具:
curl:curl -I https://sysin.org
文章图片
curl sysin hsecscan(Python)
- 【HTTP|HTTP 安全响应头(Security Response header)配置手册】浏览器自带开发者工具,或者第三方 Header 扩展
推荐阅读
- 画解算法(1.|画解算法:1. 两数之和)
- (七)谈条件
- NeuVector 会是下一个爆款云原生安全神器吗()
- ts泛型使用举例
- https请求被提早撤回
- HTTP高级(Cookie,Session|HTTP高级(Cookie,Session ,LocalStorage )
- 拒绝可以很艺术,或者很行为艺术。
- www和https://又被Chrome地址栏隐藏了
- Spring集成|Spring集成 Mina
- 关于响应式编程的十个问题