Read more

A quick introduction to CORS

Dominik Schöler
August 28, 2018Software engineer at makandra GmbH

Background

Cross-Site Request Forgery Show archive.org snapshot (CSRF) is an attack pattern for websites. A CSRF attack is usually relevant in a browser context, where state is kept for multiple domains (as opposed to independent requests made e.g. with curl). The most common example is authentication via cookies. If a script on https://example.com made requests to https://docs.google.com, the browser would send all cookies for docs.google.com along, effectively given the script access to anything the user has access to. This is a huge security issue.

Illustration online protection

Rails Long Term Support

Rails LTS provides security patches for old versions of Ruby on Rails (2.3, 3.2, 4.2 and 5.2)

  • Prevents you from data breaches and liability risks
  • Upgrade at your own pace
  • Works with modern Rubies
Read more Show archive.org snapshot

The Same-Origin Policy Show archive.org snapshot (SOP) is a counter-measure for CSRF. It states that scripts in a web page may only access data from the same origin and is implemented by virtually any browser since the 90s. By blocking any cross-site or cross-domain interaction, it mitigates most of the CSRF danger. "Origin" in this context is defined as protocol + hostname + port of the current URL. Example: an AJAX request to https://docs.google.com:443 will not succeed when performed by a script on https://example.com:443.

Note that common CSRF attacks or countermeasures are different from the CSRF description above. This is because SOP mitigates the described straight-forward attack and requires attackers to concoct more complex attacks, which in turn requires CSRF-Tokens and the like.

Cross-Origin Resource Sharing

With SOP, we're safe from unwanted cross-origin interaction ­– but we cannot even intentionally cross the origin border. Sometimes this is necessary, e.g. to access an API that has been moved to its own domain.

Over time, there have been a few approaches to achieve this (document.domain, JSONP, window.postMessage), of which CORS is the youngest. Cross-Origin Resource Sharing Show archive.org snapshot is a strategy to manually enable certain origins to interchange data. Because CSRF exploits browser behavior, its mitigation CORS is also implemented by browsers.

CORS procedure

The CORS workflow is basically this: When the browser is told to make a CORS request, it adds an Origin: header with the origin (protocol + hostname + port). The server decides whether access is acceptable for this origin and adds the Access-Control-Allow-Origin: header to the response. If the header contains the origin (or "*" for "any"), the response is processed. If not, it is discarded. This way, CORS puts cross-domain access control in the hands of the requested server.

Certain request types (mostly non-GET requests) require a special "preflight" request that checks server approval upfront. These requests are performed with the HTTP verb OPTIONS. Only when the ACAO header permits access, the normal request is performed. This is a security measure to prevent unauthorized state or data modification.

Allowing multiple origins

The ACAO header can only contain a single value. In order to allow a whitelist of origins, the server must check incoming requests against a list internally, and if allowed, set the ACAO header with the value of request.domain.

Fonts and CORS

In contrast to images/videos/etc, web fonts are subject to SOP Show archive.org snapshot and thus require an ACAO header to be used on a different domain.

Resources

Posted by Dominik Schöler to makandra dev (2018-08-28 13:41)