The standard, originally named Content Restrictions, was proposed by Robert Hansen in 2004, first implemented in
Firefox 4 and quickly picked up by other browsers. Version 1 of the standard was published in 2012 as W3C candidate recommendation and quickly with further versions (Level 2) published in 2014. , the draft of Level 3 is being developed with the new features being quickly adopted by the web browsers. The following header names are in use as part of experimental CSP implementations: • Content-Security-Policy – standard header name proposed by the W3C document.
Google Chrome supports this as of version 25.
Firefox supports this as of version 23, released on 6 August 2013.
WebKit supports this as of version 528 (nightly build). Chromium-based
Microsoft Edge support is similar to Chrome's. • X-WebKit-CSP – deprecated, experimental header introduced into
Google Chrome,
Safari and other WebKit-based web browsers in 2011. • X-Content-Security-Policy – deprecated, experimental header introduced in
Gecko 2 based browsers (Firefox 4 to Firefox 22, Thunderbird 3.3, SeaMonkey 2.1). A website can declare multiple CSP headers, also mixing enforcement and report-only ones. Each header will be processed separately by the browser. CSP can also be delivered within the HTML code using a
meta tag, although in this case its effectiveness will be limited.
Internet Explorer 10 and
Internet Explorer 11 also support CSP, but only sandbox directive, using the experimental X-Content-Security-Policy header. A number of web application frameworks support CSP, for example
AngularJS (natively) and
Django (middleware). Instructions for
Ruby on Rails have been posted by
GitHub.
Web framework support is however only required if the CSP contents somehow depend on the web application's state—such as usage of the nonce origin. Otherwise, the CSP is rather static and can be delivered from
web application tiers above the application, for example on
load balancer or
web server.
Bypasses In December 2015 and December 2016, a few methods of bypassing 'nonce' allowlisting origins were published. In January 2016, another method was published, which leverages server-wide CSP allowlisting to exploit old and vulnerable versions of JavaScript libraries hosted at the same server (frequent case with CDN servers). In May 2017 one more method was published to bypass CSP using web application frameworks code. ==Mode of operation==