-->

Minggu, 25 Februari 2018

Cross-origin resource sharing (CORS) is a mechanism that allows restricted resources (e.g. fonts) on a web page to be requested from another domain outside the domain from which the first resource was served. A web page may freely embed cross-origin images, stylesheets, scripts, iframes, and videos. Certain "cross-domain" requests, notably Ajax requests, are forbidden by default by the same-origin security policy.

CORS defines a way in which a browser and server can interact to determine whether or not it is safe to allow the cross-origin request. It allows for more freedom and functionality than purely same-origin requests, but is more secure than simply allowing all cross-origin requests. The specification for CORS was originally published as a W3C Recommendation but that document is obsolete. The current actively-maintained specification that defines CORS is the Fetch Living Standard.

How CORS works




Michael Neale - CORS: Cross-domain requests with JavaScript - You all know the same origin policy. And you have all probably heard about json-p. But there is a better way: CORS. With oauth, openid, and applications opening up JSON-based endpoints, your...

The CORS standard describes new HTTP headers which provide browsers and servers a way to request remote URLs only when they have permission. Although some validation and authorization can be performed by the server, it is generally the browser's responsibility to support these headers and honor the restrictions they impose.

For Ajax and HTTP request methods that can modify data (usually HTTP methods other than GET, or for POST usage with certain MIME types), the specification mandates that browsers "preflight" the request, soliciting supported methods from the server with an HTTP OPTIONS request method, and then, upon "approval" from the server, sending the actual request with the actual HTTP request method. Servers can also notify clients whether "credentials" (including Cookies and HTTP Authentication data) should be sent with requests.

Simple example


Cross Domain Ajax Request With Cookies (CORS) | Brian Prom Blog
Cross Domain Ajax Request With Cookies (CORS) | Brian Prom Blog. Source : promincproductions.com

This is generally not appropriate when using the same-origin security policy. When a CORS-compatible browser attempts to make a cross-origin request:

  1. The browser sends the OPTIONS request with an Origin HTTP header. The value of this header is the domain that served the parent page. When a page from http://www.example.com attempts to access a user's data in service.example.com, the following request header would be sent to service.example.com:
      Origin: http://www.example.com  
  2. The server at service.example.com may respond with:
    • An Access-Control-Allow-Origin (ACAO) header in its response indicating which origin sites are allowed. For example:
        Access-Control-Allow-Origin: http://www.example.com  
    • An error page if the server does not allow the cross-origin request
    • An Access-Control-Allow-Origin (ACAO) header with a wildcard that allows all domains:
        Access-Control-Allow-Origin: *  

A wildcard same-origin policy is appropriate when a page or API response is considered completely public content and it is intended to be accessible to everyone, including any code on any site. For example, a freely-available web font on a public hosting service like Google Fonts.

A wildcard same-origin policy is also widely and appropriately used in the object-capability model, where pages have unguessable URLs and are meant to be accessible to anyone who knows the secret.

The value of "*" is special in that it does not allow requests to supply credentials, meaning HTTP authentication, client-side SSL certificates, nor does it allow cookies to be sent.

Note that in the CORS architecture, the ACAO header is being set by the external web service (service.example.com), not the original web application server (www.example.com). CORS allows the external web service to authorise the web application to use its services and does not control external services accessed by the web application. For the latter, Content Security Policy should be used (connect-src directive)...

Preflight example


Understanding CORS: Cross-Origin Resource Sharing | Jscramber Blog
Understanding CORS: Cross-Origin Resource Sharing | Jscramber Blog. Source : blog.jscrambler.com

When performing certain types of cross-domain Ajax requests, modern browsers that support CORS will insert an extra "preflight" request to determine whether they have permission to perform the action.

  OPTIONS /  Host: service.example.com  Origin: http://www.example.com  

If service.example.com is willing to accept the action, it may respond with the following headers:

  Access-Control-Allow-Origin: http://www.example.com  Access-Control-Allow-Methods: PUT, DELETE  

Headers


javascript - CORS issue on java web application - Stack Overflow
javascript - CORS issue on java web application - Stack Overflow. Source : stackoverflow.com

The HTTP headers that relate to CORS are

Request headers

  • Origin
  • Access-Control-Request-Method
  • Access-Control-Request-Headers

Response headers

  • Access-Control-Allow-Origin
  • Access-Control-Allow-Credentials
  • Access-Control-Expose-Headers
  • Access-Control-Max-Age
  • Access-Control-Allow-Methods
  • Access-Control-Allow-Headers

Browser support


Authoritative guide to CORS (Cross-Origin Resource Sharing) for ...
Authoritative guide to CORS (Cross-Origin Resource Sharing) for .... Source : www.moesif.com

CORS is supported by all browsers based on the following layout engines:

  • Blink- and Chromium-based browsers (Chrome 28+, Opera 15+, Amazon Silk, Android's 4.4+ WebView and Qt's WebEngine)
  • Gecko 1.9.1 (Firefox 3.5, SeaMonkey 2.0) and above.
  • MSHTML/Trident 6.0 (Internet Explorer 10) has native support. MSHTML/Trident 4.0 & 5.0 (Internet Explorer 8 & 9) provide partial support via the XDomainRequest object.
  • Presto-based browsers (Opera) implement CORS as of Opera 12.00 and Opera Mobile 12, but not Opera Mini.
  • WebKit (Initial revision uncertain, Safari 4 and above, Google Chrome 3 and above, possibly earlier).
  • Microsoft Edge All versions.

History


CSC 482/582: Computer Security - ppt download
CSC 482/582: Computer Security - ppt download. Source : slideplayer.com

Cross-origin support was originally proposed by Matt Oshry, Brad Porter, and Michael Bodell of Tellme Networks in March 2004 for inclusion in VoiceXML 2.1 to allow safe cross-origin data requests by VoiceXML browsers. The mechanism was deemed general in nature and not specific to VoiceXML and was subsequently separated into an implementation NOTE. The WebApps Working Group of the W3C with participation from the major browser vendors began to formalize the NOTE into a W3C Working Draft on track toward formal W3C Recommendation status.

In May 2006 the first W3C Working Draft was submitted. In March 2009 the draft was renamed to "Cross-Origin Resource Sharing" and in January 2014 it was accepted as a W3C Recommendation.

CORS vs JSONP


Cross-Origin Requests (CORS) in Internet Explorer, Firefox, Safari ...
Cross-Origin Requests (CORS) in Internet Explorer, Firefox, Safari .... Source : www.webdavsystem.com

CORS can be used as a modern alternative to the JSONP pattern. While JSONP supports only the GET request method, CORS also supports other types of HTTP requests. Using CORS enables a web programmer to use regular XMLHttpRequest, which supports better error handling than JSONP. On the other hand, JSONP works on legacy browsers which predate CORS support. CORS is supported by most modern web browsers. Also, while JSONP can cause cross-site scripting (XSS) issues when the external site is compromised, CORS allows websites to manually parse responses to ensure security.

See also



  • Content Security Policy
  • Cross-document messaging
  • JSONP

References



External links



  • Fetch Living Standard (the current specification for CORS)
  • MDN HTTP access control (CORS) article
  • Setting CORS on Apache with correct response headers allowing everything through
  • Detailed how-to information for enabling CORS support in various (web) servers
  • HTML5 Rocks explains how CORS works in detail
  • W3C CORS for Developers guide
  • Test your browser for CORS support
  • Detailed how-to information for dealing with some common CORS-related problems, including:
    • How to avoid the CORS preflight
    • How to fix “Access-Control-Allow-Origin header must not be the wildcard” problems
    • How to use a CORS proxy to get around “No Access-Control-Allow-Origin header is present on the requested resource” problems
  • How to disable CORS on WebKit-based browsers for maximum security and privacy


 
Sponsored Links