Content Security Policy

Content Security Policy (CSP) is a computer security standard introduced to prevent cross-site scripting (XSS), clickjacking and other code injection attacks resulting from execution of malicious content in the trusted web page context.[1] It is a Candidate Recommendation of the W3C working group on Web Application Security,[2] widely supported by modern web browsers.[3] CSP provides a standard method for website owners to declare approved origins of content that browsers should be allowed to load on that website—covered types are JavaScript, CSS, HTML frames, web workers, fonts, images, embeddable objects such as Java applets, ActiveX, audio and video files, and other HTML5 features.

Status edit

The standard, originally named Content Restrictions, was proposed by Robert Hansen in 2004,[4] 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[5] and quickly with further versions (Level 2) published in 2014. As of 2023, the draft of Level 3 is being developed with the new features being quickly adopted by the web browsers.[6]

The following header names are in use as part of experimental CSP implementations:[3]

  • Content-Security-Policy – standard header name proposed by the W3C document. Google Chrome supports this as of version 25.[7] Firefox supports this as of version 23,[8] released on 6 August 2013.[9] WebKit supports this as of version 528 (nightly build).[10] Chromium-based Microsoft Edge support is similar to Chrome's.[11]
  • X-WebKit-CSP – deprecated, experimental header introduced into Google Chrome, Safari and other WebKit-based web browsers in 2011.[12]
  • X-Content-Security-Policy – deprecated, experimental header introduced in Gecko 2 based browsers (Firefox 4 to Firefox 22, Thunderbird 3.3, SeaMonkey 2.1).[13]

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 HTML META tag, although in this case its effectiveness will be limited.[14]

Internet Explorer 10 and Internet Explorer 11 also support CSP, but only sandbox directive, using the experimental X-Content-Security-Policy header.[15]

A number of web application frameworks support CSP, for example AngularJS[16] (natively) and Django (middleware).[17] Instructions for Ruby on Rails have been posted by GitHub.[18] 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 edit

In December 2015[19] and December 2016,[20] a few methods of bypassing 'nonce' allowlisting origins were published. In January 2016,[21] 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[22] one more method was published to bypass CSP using web application frameworks code.

Mode of operation edit

 
Mapping between HTML5 and JavaScript features and Content Security Policy controls

If the Content-Security-Policy header is present in the server response, a compliant client enforces the declarative allowlist policy. One example goal of a policy is a stricter execution mode for JavaScript in order to prevent certain cross-site scripting attacks. In practice this means that a number of features are disabled by default:

  • Inline JavaScript code[a]
    • <script> blocks,[b]
    • DOM event handlers as HTML attributes (e.g. onclick)
    • The javascript: links
  • Inline CSS statements
    • <style> block[b]
    • style attributed to HTML elements
  • Dynamic JavaScript code evaluation[c]
    • eval()
    • string arguments for setTimeout and setInterval functions
    • new Function() constructor
  • Dynamic CSS statements
    • CSSStyleSheet.insertRule() method

While using CSP in a new application may be quite straightforward, especially with CSP-compatible JavaScript framework,[d] existing applications may require some refactoring—or relaxing the policy. Recommended coding practice for CSP-compatible web applications is to load code from external source files (<script src>), parse JSON instead of evaluating it and use EventTarget.addEventListener() to set event handlers.[23]

Notes edit

  1. ^ This behavior can be disabled globally by a special 'unsafe-inline' statement
  2. ^ a b Trusted inline <script> and <style> blocks can be individually allowlisted in the CSP using nonce or hash statements.
  3. ^ This behavior can be disabled globally by a special 'unsafe-eval' statement
  4. ^ For example, AngularJS requires only one initialization flag to be switched into the CSP-compatible mode—<html ng-app ng-csp>

Reporting edit

Any time a requested resource or script execution violates the policy, the browser will fire a POST request to the value specified in report-uri[24] or report-to[25] containing details of the violation.

CSP reports are standard JSON structures and can be captured either by application's own API[26] or public CSP report receivers.[citation needed]

In 2018 security researchers showed how to send false positive reports to the designated receiver specified in report-uri . This allows potential attackers to arbitrarily trigger those alarms and might render them less useful in case of a real attack.[27] This behaviour is intended and cannot be fixed, as the browser (client) is sending the reports.

Browser add-ons and extensions exemption edit

According to the original CSP (1.0) Processing Model (2012–2013),[28] CSP should not interfere with the operation of browser add-ons or extensions installed by the user. This feature of CSP would have effectively allowed any add-on, extension, or Bookmarklet to inject script into web sites, regardless of the origin of that script, and thus be exempt from CSP policies.

However, this policy has since been modified (as of CSP 1.1[29]) with the following wording. Note the use of the word "may" instead of the prior absolute "should (not)" wording:

Note: User agents may allow users to modify or bypass policy enforcement through user preferences, bookmarklets, third-party additions to the user agent, and other such mechanisms.

The absolute "should" wording was being used by browser users to request/demand adherence to the policy and have changes installed in popular browsers (Firefox, Chrome, Safari) to support it. This was particularly contentious when sites like Twitter and GitHub started using strong CSP policies, which 'broke' the use of Bookmarklets.[30]

The W3C Web Application Security Working Group considers such script to be part of the Trusted Computing Base implemented by the browser; however, it has been argued to the working group by a representative of Cox Communications that this exemption is a potential security hole that could be exploited by malicious or compromised add-ons or extensions.[31][32]

Complementary measures edit

As of 2015 a number of new browser security standards are being proposed by W3C, most of them complementary to CSP:[33]

  • Subresource Integrity (SRI), to ensure only known, trusted resource files (typically JavaScript, CSS) are loaded from third-party servers (typically CDNs)
  • Mixed Content, to clarify the intended browser's policy on pages loaded over HTTPS and linking content over plaintext HTTP
  • Upgrade Insecure Requests, hinting browsers on how to handle legacy links on pages migrated to HTTPS
  • Credential Management, a unified JavaScript API to access user's credentials to facilitate complex login schemes,
  • Referrer Policy, CSP extension to hint the browser on generation of the Referer headers.[33]

See also edit

References edit

  1. ^ Sid Stamm (2009-03-11). "Security/CSP/Spec - MozillaWiki". wiki.mozilla.org. Retrieved 2011-06-29. Content Security Policy is intended to help web designers or server administrators specify how content interacts on their web sites. It helps mitigate and detect types of attacks such as XSS and data injection.
  2. ^ "State of the draft". 2016-09-13. Retrieved 2016-10-05.
  3. ^ a b "Can I use Content Security Policy?". Fyrd. Retrieved February 22, 2013.
  4. ^ Robert Hansen (2009-06-01). "Mozilla's Content Security Policy". Archived from the original on March 18, 2015. Retrieved 2011-06-29. Content Restrictions - a way for websites to tell the browser to raise their security on pages where the site knows the content is user submitted and therefore potentially dangerous.
  5. ^ "Content Security Policy 1.0". W3C. Retrieved 2015-11-13.
  6. ^ "Content Security Policy Level 3". W3C. Retrieved May 5, 2023.
  7. ^ "Chrome 25 Beta: Content Security Policy and Shadow DOM". Google. January 14, 2013. Retrieved February 22, 2013.
  8. ^ "Content Security Policy 1.0 lands in Firefox Aurora". Mozilla Foundation. May 29, 2013. Retrieved June 16, 2013.
  9. ^ "RapidRelease/Calendar". Mozilla Foundation. May 29, 2013. Retrieved June 16, 2013.
  10. ^ "Bug 96765 - Implement the "Content-Security-Policy" header". WebKit. October 31, 2012. Retrieved August 7, 2015.
  11. ^ "Content Security Policy (CSP)". Microsoft. Retrieved February 6, 2020.
  12. ^ "New Chromium security features, June 2011". Google. June 14, 2011. Retrieved February 22, 2013.
  13. ^ "Introducing Content Security Policy". Mozilla Foundation. Retrieved February 22, 2013.
  14. ^ "HTML META element". Content Security Policy Level 2. W3C. Retrieved 2015-11-14.
  15. ^ "Defense in Depth: Locking Down Mash-Ups with HTML5 Sandbox". Windows Internet Explorer Engineering Team. Retrieved April 13, 2014.
  16. ^ "ngCsp directive". AngularJS. Retrieved October 27, 2020.
  17. ^ "django-security". GitHub. 21 November 2022.
  18. ^ "Content security policy". GitHub. 19 April 2013.
  19. ^ "CSP 2015". XSS Jigsaw. 23 November 2015. Archived from the original on 20 December 2015. Retrieved December 12, 2015.
  20. ^ Lekies, Sebastian. "Collection of CSP bypasses". Retrieved 2017-06-05.
  21. ^ "An Abusive Relationship with AngularJS". 12 December 2015. Retrieved January 5, 2016.
  22. ^ OWASP (2017-05-25), AppSec EU 2017 Don't Trust The DOM: Bypassing XSS Mitigations Via Script Gadgets by Sebastian Lekies, retrieved 2017-06-05
  23. ^ West, Mike (June 15, 2012). "An Introduction to Content Security Policy". HTML5 Rocks. Retrieved February 22, 2013.
  24. ^ "Content Security Policy Level 3". www.w3.org. Retrieved 2021-01-12.
  25. ^ "CSP: report-to - HTTP | MDN". developer.mozilla.org. Retrieved 2021-01-25.
  26. ^ For example in Django a CSP receiver is available in django-security module.
  27. ^ "Flaring The Blue Team - When You Confuse Them You Lose Them". Secjuice. 2018-11-04. Retrieved 2019-12-27.
  28. ^ "CSP Processing Model". 2012-11-15. Retrieved 2013-10-06.
  29. ^ "CSP 1.1: Add non-normative language for extensions". GitHub w3c webappsec. GitHub. 27 Feb 2014. Retrieved 14 Sep 2016.
  30. ^ "Bug 866522 - Bookmarklets affected by CSP". Bugzilla. Mozilla. 28 Apr 2013. Retrieved 14 Sep 2016.
  31. ^ "Subverting CSP policies for browser add-ons (extensions)". 2013-09-25. Retrieved 2013-10-06.
  32. ^ "Re: [CSP] Request to amend bookmarklet/extensions sentence in CSP1.1". 2014-08-03. Retrieved 2015-10-08.
  33. ^ a b "Web Application Security Working Group". GitHub. Retrieved 2015-11-13.
  34. ^ "Noscript security suite addon for Firefox". addons.mozilla.org. Retrieved 11 June 2017.
  35. ^ "The NoScript Firefox extension — Official site". noscript.net. Retrieved 11 June 2017.
  36. ^ "HTTP Switchboard for Chrome". chrome.google.com. Archived from the original on 2014-08-17.
  37. ^ "HTTP Switchboard for Opera". addons.opera.com. Retrieved 11 June 2017.

External links edit