--- title: Content-Security-Policy slug: Web/HTTP/Headers/Content-Security-Policy tags: - CSP - HTTP - Reference - Security - header translation_of: Web/HTTP/Headers/Content-Security-Policy ---
{{HTTPSidebar}}

The HTTP Content-Security-Policy response header allows web site administrators to control resources the user agent is allowed to load for a given page. With a few exceptions, policies mostly involve specifying server origins and script endpoints. This helps guard against cross-site scripting attacks ({{Glossary("XSS")}}).

For more information, see the introductory article on Content Security Policy (CSP).

Header type {{Glossary("Response header")}}
{{Glossary("Forbidden header name")}} no

Syntax

Content-Security-Policy: <policy-directive>; <policy-directive>

Directives

{{Glossary("Fetch directive", "Fetch directives")}}

Fetch directives control locations from which certain resource types may be loaded.

List of Content Security Policy Fetch directives

{{CSP("child-src")}}
Defines the valid sources for web workers and nested browsing contexts loaded using elements such as {{HTMLElement("frame")}} and {{HTMLElement("iframe")}}.

Instead of child-src, authors who wish to regulate nested browsing contexts and workers should use the {{CSP("frame-src")}} and {{CSP("worker-src")}} directives, respectively.

{{CSP("connect-src")}}
Restricts the URLs which can be loaded using script interfaces
{{CSP("default-src")}}
Serves as a fallback for the other {{Glossary("Fetch directive", "fetch directives")}}.
{{CSP("font-src")}}
Specifies valid sources for fonts loaded using {{cssxref("@font-face")}}.
{{CSP("frame-src")}}
Specifies valid sources for nested browsing contexts loading using elements such as {{HTMLElement("frame")}} and {{HTMLElement("iframe")}}.
{{CSP("img-src")}}
Specifies valid sources of images and favicons.
{{CSP("manifest-src")}}
Specifies valid sources of application manifest files.
{{CSP("media-src")}}
Specifies valid sources for loading media using the {{HTMLElement("audio")}} , {{HTMLElement("video")}} and {{HTMLElement("track")}} elements.
{{CSP("object-src")}}
Specifies valid sources for the {{HTMLElement("object")}}, {{HTMLElement("embed")}}, and {{HTMLElement("applet")}} elements.
Elements controlled by object-src are perhaps coincidentally considered legacy HTML elements and are not recieving new standardized features (such as the security attributes sandbox or allow for <iframe>). Therefore it is recommended to restrict this fetch-directive (e.g. explicitly set object-src 'none' if possible).
{{CSP("prefetch-src")}}{{experimental_inline}}
Specifies valid sources to be prefetched or prerendered.
{{CSP("script-src")}}
Specifies valid sources for JavaScript.
{{CSP("script-src-elem")}}{{experimental_inline}}
Specifies valid sources for JavaScript {{HTMLElement("script")}} elements.
{{CSP("script-src-attr")}}{{experimental_inline}}
Specifies valid sources for JavaScript inline event handlers.
{{CSP("style-src")}}
Specifies valid sources for stylesheets.
{{CSP("style-src-elem")}}{{experimental_inline}}
Specifies valid sources for stylesheets {{HTMLElement("style")}} elements and {{HTMLElement("link")}} elements with rel="stylesheet".
{{CSP("style-src-attr")}}{{experimental_inline}}
Specifies valid sources for inline styles applied to individual DOM elements.
{{CSP("worker-src")}}{{experimental_inline}}
Specifies valid sources for {{domxref("Worker")}}, {{domxref("SharedWorker")}}, or {{domxref("ServiceWorker")}} scripts.

{{Glossary("Document directive", "Document directives")}}

Document directives govern the properties of a document or worker environment to which a policy applies.

List of Content Security Policy Document directives

{{CSP("base-uri")}}
Restricts the URLs which can be used in a document's {{HTMLElement("base")}} element.
{{CSP("plugin-types")}}
Restricts the set of plugins that can be embedded into a document by limiting the types of resources which can be loaded.
{{CSP("sandbox")}}
Enables a sandbox for the requested resource similar to the {{HTMLElement("iframe")}} {{htmlattrxref("sandbox", "iframe")}} attribute.

Navigation directives govern to which location a user can navigate to or submit a form to, for example.

List of Content Security Policy Navigation directives

{{CSP("form-action")}}
Restricts the URLs which can be used as the target of a form submissions from a given context.
{{CSP("frame-ancestors")}}
Specifies valid parents that may embed a page using {{HTMLElement("frame")}}, {{HTMLElement("iframe")}}, {{HTMLElement("object")}}, {{HTMLElement("embed")}}, or {{HTMLElement("applet")}}.
{{CSP("navigate-to")}}{{experimental_inline}}
Restricts the URLs to which a document can initiate navigation by any means, including {{HTMLElement("form")}} (if {{CSP("form-action")}} is not specified), {{HTMLElement("a")}}, {{DOMxRef("window.location")}}, {{DOMxRef("window.open")}}, etc.

{{Glossary("Reporting directive", "Reporting directives")}}

Reporting directives control the reporting process of CSP violations. See also the {{HTTPHeader("Content-Security-Policy-Report-Only")}} header.

List of Content Security Policy Reporting directives

{{CSP("report-uri")}}{{deprecated_inline}}
Instructs the user agent to report attempts to violate the Content Security Policy. These violation reports consist of {{Glossary("JSON")}} documents sent via an HTTP POST request to the specified URI.

Though the {{CSP("report-to")}} directive is intended to replace the deprecated report-uri directive, {{CSP("report-to")}} is not supported in most browsers yet. So for compatibility with current browsers while also adding forward compatibility when browsers get {{CSP("report-to")}} support, you can specify both report-uri and {{CSP("report-to")}}:

Content-Security-Policy: ...; report-uri https://endpoint.example.com; report-to groupname

In browsers that support {{CSP("report-to")}}, the report-uri directive will be ignored.

{{CSP("report-to")}}{{experimental_inline}}
Fires a SecurityPolicyViolationEvent.

Other directives

{{CSP("block-all-mixed-content")}}
Prevents loading any assets using HTTP when the page is loaded using HTTPS.
{{CSP("referrer")}}{{deprecated_inline}}{{non-standard_inline}}
Used to specify information in the referer (sic) header for links away from a page. Use the {{HTTPHeader("Referrer-Policy")}} header instead.
{{CSP("require-sri-for")}}{{experimental_inline}}
Requires the use of {{Glossary("SRI")}} for scripts or styles on the page.
{{CSP("require-trusted-types-for")}}{{experimental_inline}}
Enforces Trusted Types at the DOM XSS injection sinks.
{{CSP("trusted-types")}}{{experimental_inline}}
Used to specify a whitelist of Trusted Types policies (Trusted Types allows applications to lock down DOM XSS injection sinks to only accept non-spoofable, typed values in place of strings).
{{CSP("upgrade-insecure-requests")}}
Instructs user agents to treat all of a site's insecure URLs (those served over HTTP) as though they have been replaced with secure URLs (those served over HTTPS). This directive is intended for web sites with large numbers of insecure legacy URLs that need to be rewritten.

CSP in workers

Workers are in general not governed by the content security policy of the document (or parent worker) that created them. To specify a content security policy for the worker, set a Content-Security-Policy response header for the request which requested the worker script itself.

The exception to this is if the worker script's origin is a globally unique identifier (for example, if its URL has a scheme of data or blob). In this case, the worker does inherit the content security policy of the document or worker that created it.

Multiple content security policies

CSP allows multiple policies being specified for a resource, including via the Content-Security-Policy header, the {{HTTPHeader("Content-Security-Policy-Report-Only")}} header and a {{HTMLElement("meta")}} element.

You can use the Content-Security-Policy header more than once like in the example below. Pay special attention to the {{CSP("connect-src")}} directive here. Even though the second policy would allow the connection, the first policy contains connect-src 'none'. Adding additional policies can only further restrict the capabilities of the protected resource, which means that there will be no connection allowed and, as the strictest policy, connect-src 'none' is enforced.

Content-Security-Policy: default-src 'self' http://example.com;
                         connect-src 'none';
Content-Security-Policy: connect-src http://example.com/;
                         script-src http://example.com/

Examples

Example: Disable unsafe inline/eval, only allow loading of resources (images, fonts, scripts, etc.) over https:

// header
Content-Security-Policy: default-src https:

// meta tag
<meta http-equiv="Content-Security-Policy" content="default-src https:">

Example: Pre-existing site that uses too much inline code to fix but wants to ensure resources are loaded only over https and disable plugins:

Content-Security-Policy: default-src https: 'unsafe-eval' 'unsafe-inline'; object-src 'none'

Example: Do not implement the above policy yet; instead just report violations that would have occurred:

Content-Security-Policy-Report-Only: default-src https:; report-uri /csp-violation-report-endpoint/

See Mozilla Web Security Guidelines for more examples.

Specifications

Specification Status Comment
{{specName("CSP 3.0")}} {{Spec2("CSP 3.0")}} Adds manifest-src, navigate-to, report-to, strict-dynamic, worker-src. Undeprecates frame-src. Deprecates report-uri in favor if report-to.
{{specName("Mixed Content")}} {{Spec2("Mixed Content")}} Adds block-all-mixed-content.
{{specName("Subresource Integrity")}} {{Spec2("Subresource Integrity")}} Adds require-sri-for.
{{specName("Upgrade Insecure Requests")}} {{Spec2("Upgrade Insecure Requests")}} Adds upgrade-insecure-requests.
{{specName("CSP 1.1")}} {{Spec2("CSP 1.1")}} Adds base-uri, child-src, form-action, frame-ancestors, plugin-types, referrer, and report-uri. Deprecates frame-src.
{{specName("CSP 1.0")}} {{Spec2("CSP 1.0")}} Defines connect-src, default-src, font-src, frame-src, img-src, media-src, object-src, report-uri, sandbox, script-src, and style-src.

Browser compatibility

{{Compat("http.headers.csp.Content-Security-Policy")}}

See also