CSP: trusted-types - HTTP 编辑
The HTTP Content-Security-Policy
(CSP) trusted-types
directive instructs user agents to restrict the creation of Trusted Types policies - functions that build non-spoofable, typed values intended to be passed to DOM XSS sinks in place of strings.
Together with require-trusted-types-for
directive, this allows authors to define rules guarding writing values to the DOM and thus reducing the DOM XSS attack surface to small, isolated parts of the web application codebase, facilitating their monitoring and code review. This directive declares an allow-list of trusted type policy names created with TrustedTypes.createPolicy
from Trusted Types API.
Syntax
Content-Security-Policy: trusted-types; Content-Security-Policy: trusted-types 'none'; Content-Security-Policy: trusted-types <policyName>; Content-Security-Policy: trusted-types <policyName> <policyName> 'allow-duplicates';
- <policyName>
- A valid policy name consists only of alphanumeric characters, or one of "
-#=_/@.%
". A star (*
) as a policy name instructs the user agent to allow any unique policy name ('allow-duplicates
' may relax that further). 'none'
- Disallows creating any Trusted Type policy (same as not specifying any <policyName>).
'allow-duplicates'
- Allows for creating policies with a name that was already used.
Examples
// Content-Security-Policy: trusted-types foo bar 'allow-duplicates';
if (typeof trustedTypes !== 'undefined') {
const policyFoo = trustedTypes.createPolicy('foo', {});
const policyFoo2 = trustedTypes.createPolicy('foo', {});
const policyBaz = trustedTypes.createPolicy('baz', {}); // Throws and dispatches a SecurityPolicyViolationEvent.
}
Polyfill
A polyfill for Trusted Types is available on Github.
Specifications
Specification | Status | Comment |
---|---|---|
Trusted Types | Draft | Initial definition. |
Browser compatibility
BCD tables only load in the browser
See also
Content-Security-Policy
- Cross-Site Scripting (XSS)
- Prevent DOM-based cross-site scripting vulnerabilities with Trusted Types
- Trusted Types with DOMPurify XSS sanitizer
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论