The new Content-Security-Policy HTTP response header helps you reduce XSS risks on modern browsers by declaring which dynamic resources are allowed to load.
is the name of a HTTP response header that modern browsers use to enhance the security of the document (or web page). The Content-Security-Policy header allows you to restrict which resources (such as JavaScript, CSS, Images, etc.) can be loaded, and the URLs that they can be loaded from.
Although it is primarily used as a HTTP response header, you can also apply it via a meta tag.
The term Content Security Policy is often abbreviated as CSP .
CSP was first designed to reduce the attack surface of Cross Site Scripting (XSS) attacks, later versions of the spec also protect against other forms of attack such as Click Jacking.
The Content-Security-Policy header value is made up of one or more directives (defined below), multiple directives are separated with a semicolon ;
This documentation is provided based on the Content Security Policy Level 2 W3C Recommendation, and the CSP Level 3 W3C Working Draft
The default-src directive defines the default policy for fetching resources such as JavaScript, Images, CSS, Fonts, AJAX requests, Frames, HTML5 Media. Not all directives fallback to default-src . See the Source List Reference for possible values.
default-src 'self' cdn.example.com;CSP Level 1 25+ 23+ 7+ 12+
Defines valid sources of JavaScript.
script-src 'self' js.example.com;CSP Level 1 25+ 23+ 7+ 12+
Defines valid sources of stylesheets or CSS.
style-src 'self' css.example.com;CSP Level 1 25+ 23+ 7+ 12+
Defines valid sources of images.
img-src 'self' img.example.com;CSP Level 1 25+ 23+ 7+ 12+
Applies to XMLHttpRequest (AJAX), WebSocket , fetch() , or EventSource . If not allowed the browser emulates a 400 HTTP status code.
connect-src 'self';CSP Level 1 25+ 23+ 7+ 12+
Defines valid sources of font resources (loaded via @font-face ).
font-src font.example.com;CSP Level 1 25+ 23+ 7+ 12+
Defines valid sources of plugins, eg , or .
object-src 'self';CSP Level 1 25+ 23+ 7+ 12+
Defines valid sources of audio and video, eg HTML5 , elements.
media-src media.example.com;CSP Level 1 25+ 23+ 7+ 12+
Defines valid sources for loading frames. In CSP Level 2 frame-src was deprecated in favor of the child-src directive. CSP Level 3, has undeprecated frame-src and it will continue to defer to child-src if not present.
frame-src 'self';CSP Level 1
Enables a sandbox for the requested resource similar to the iframe sandbox attribute. The sandbox applies a same origin policy, prevents popups, plugins and script execution is blocked. You can keep the sandbox value empty to keep all restrictions in place, or add flags: allow-forms allow-same-origin allow-scripts allow-popups , allow-modals , allow-orientation-lock , allow-pointer-lock , allow-presentation , allow-popups-to-escape-sandbox , and allow-top-navigation
sandbox allow-forms allow-scripts;CSP Level 1 25+ 50+ 7+ 12+
Instructs the browser to POST a reports of policy failures to this URI. You can also use Content-Security-Policy-Report-Only as the HTTP header name to instruct the browser to only send reports (does not block anything). This directive is deprecated in CSP Level 3 in favor of the report-to directive.
report-uri /some-report-uri;CSP Level 1 25+ 23+ 7+ 12+
Defines valid sources for web workers and nested browsing contexts loaded using elements such as and
child-src 'self'CSP Level 2 40+ 45+ 15+
Defines valid sources that can be used as an HTML action.
form-action 'self';CSP Level 2 40+ 36+ 15+
Defines valid sources for embedding the resource using . Setting this directive to 'none' should be roughly equivalent to X-Frame-Options: DENY
frame-ancestors 'none';CSP Level 2 39+ 33+ 15+
Defines valid MIME types for plugins invoked via and . To load an you must specify application/x-java-applet .
plugin-types application/pdf;CSP Level 2 40+ 15+
Defines a set of allowed URLs which can be used in the src attribute of a HTML base tag.
base-uri 'self';CSP Level 2 40+ 15+
Defines a reporting group name defined by a Report-To HTTP response header. See the Reporting API for more info.
report-to groupName;CSP Level 3 70+
Restricts the URLs which may be loaded as a Worker, SharedWorker or ServiceWorker.
worker-src 'none';CSP Level 3 59+ 58+
Restricts the URLs that application manifests can be loaded.
manifest-src 'none';CSP Level 3 Yes 40+
Defines valid sources for request prefetch and prerendering, for example via the link tag with rel="prefetch" or rel="prerender" :
prefetch-src 'none'CSP Level 3
Restricts the URLs that the document may navigate to by any means. For example when a link is clicked, a form is submitted, or window.location is invoked. If form-action is present then this directive is ignored for form submissions. Removed from the CSP 3 Spec.
navigate-to example.comCSP Level 3
Automatically Converts urls from http to https for links, images, javascript, css, etc.
upgrade-insecure-requests43+ 42+ 10.1+ 17+ Not technically part of the CSP spec.
Blocks requests to non secure http urls.
block-all-mixed-contentNot technically part of the CSP spec, may be removed in the future.
All of the directives that end with -src support similar values known as a source list. Multiple source list values can be space separated with the exception of 'none' which should be the only value.
Source Value | Example | Description |
---|---|---|
* | img-src * | Wildcard, allows any URL except data: blob: filesystem: schemes. |
'none' | object-src 'none' | Prevents loading resources from any source. |
'self' | script-src 'self' | Allows loading resources from the same origin (same scheme, host and port). |
data: | img-src 'self' data: | Allows loading resources via the data scheme (eg Base64 encoded images). |
domain. example.com | img-src domain. example.com | Allows loading resources from the specified domain name. |
*.example.com | img-src *.example.com | Allows loading resources from any subdomain under example.com . |
https://cdn.com | img-src https://cdn.com | Allows loading resources only over HTTPS matching the given domain. |
https: | img-src https: | Allows loading resources only over HTTPS on any domain. |
'unsafe-inline' | script-src 'unsafe-inline' | Allows use of inline source elements such as style attribute, onclick, or script tag bodies (depends on the context of the source it is applied to) and javascript: URIs |
'unsafe-eval' | script-src 'unsafe-eval' | Allows unsafe dynamic code evaluation such as JavaScript eval() |
'sha256-' | script-src 'sha256-xyz. ' | Allows an inline script or CSS to execute if its hash matches the specified hash in the header. Currently supports SHA256, SHA384 or SHA512. CSP Level 2 |
'nonce-' | script-src 'nonce-rAnd0m' | Allows an inline script or CSS to execute if the script (eg: ) tag contains a nonce attribute matching the nonce specified in the CSP header. The nonce should be a secure random string, and should not be reused. CSP Level 2 |
'strict-dynamic' | script-src 'strict-dynamic' | Enables an allowed script to load additional scripts via non-"parser-inserted" script elements (for example document.createElement('script'); is allowed). CSP Level 3 |
'unsafe-hashes' | script-src 'unsafe-hashes' 'sha256-abc. ' | Allows you to enable scripts in event handlers (eg onclick ). Does not apply to javascript: or inline CSP Level 3 |
Here a few common scenarios for content security policies:
default-src 'self';
script-src 'self';
script-src 'self' www.google-analytics.com ajax.googleapis.com;
This policy allows images, scripts, AJAX, form actions, and CSS from the same origin, and does not allow any other resources to load (eg object, frame, media, etc). It is a good starting point for many sites.
default-src 'none'; script-src 'self'; connect-src 'self'; img-src 'self'; style-src 'self';base-uri 'self';form-action 'self'
In Chrome when a Content Security Policy Script Violation happens you get a message like this one in the Chrome Developer Tools:
Refused to load the script 'script-uri' because it violates the following Content Security Policy directive: "your CSP directive".
In Firefox you might see messages like this in the Web Developer Tools:
Content Security Policy: A violation occurred for a report-only CSP policy ("An attempt to execute inline scripts has been blocked"). The behavior was allowed, and a CSP report was sent.
In addition to a console message, a securitypolicyviolation event is fired on the window. See https://www.w3.org/TR/CSP2/#firing-securitypolicyviolationevent-events.
Any server side programming environment should allow you to send back a custom HTTP response header. You can also use your web server to send back the header.
Add the following to your httpd.conf in your VirtualHost or in an .htaccess file:
Header set Content-Security-Policy "default-src 'self';"
In your server <> block add:
add_header Content-Security-Policy "default-src 'self';";
You can also append always to the end to ensure that nginx sends the header regardless of response code.
You can use the HTTP Response Headers GUI in IIS Manager or add the following to your web.config:
Content Security Policy is supported by all the major modern browsers, and has been for many years. It is not supported in Internet Explorer.
Content-Security-Policy CSP Level 3 - Chrome 59+ Partial Support
Content-Security-Policy CSP Level 2 - Chrome 40+ Full Support Since January 2015
Content-Security-Policy CSP 1.0 - Chrome 25+
X-Webkit-CSP Deprecated - Chrome 14-24
Content-Security-Policy CSP Level 3 - Firefox 58+ Partial Support
Content-Security-Policy CSP Level 2 - Firefox 31+ Partial Support since July 2014
Content-Security-Policy CSP 1.0 - Firefox 23+ Full Support
X-Content-Security-Policy Deprecated - Firefox 4-22
Content-Security-Policy CSP Level 3 - Safari 15.4+ Partial Support
Content-Security-Policy CSP Level 2 - Safari 10+
Content-Security-Policy CSP 1.0 - Safari 7+
X-Webkit-CSP Deprecated - Safari 6
Content-Security-Policy CSP Level 3 - Edge 79+ Partial Support
Content-Security-Policy CSP Level 2 - Edge 15+ Partial, 76+ Full
Content-Security-Policy CSP 1.0 - Edge 12+
Try our CSP Browser Test to test your browser.
Note: It is known that having both Content-Security-Policy and X-Content-Security-Policy or X-Webkit-CSP causes unexpected behaviors on certain versions of browsers. Please avoid using deprecated X-* headers.
Want to learn the ins and outs CSP? Grab a copy of the CSP Developer Field Guide. It's a short and sweet guide to help developers get up to speed quickly.
Advisory Week is a weekly roundup of all the security advisories published by the major software vendors.