Cross-Origin Resource Sharing (CORS)
Last updated
Last updated
Cross-Origin Resource Sharing () is an -header based mechanism that allows a server to indicate any (domain, scheme, or port) other than its own from which a browser should permit loading resources. CORS also relies on a mechanism by which browsers make a "preflight" request to the server hosting the cross-origin resource, in order to check that the server will permit the actual request. In that preflight, the browser sends headers that indicate the HTTP method and headers that will be used in the actual request.
An example of a cross-origin request: the front-end JavaScript code served from https://domain-a.com
uses to make a request for https://domain-b.com/data.json
.
For security reasons, browsers restrict cross-origin HTTP requests initiated from scripts. For example, XMLHttpRequest
and the follow the . This means that a web application using those APIs can only request resources from the same origin the application was loaded from unless the response from other origins includes the right CORS headers.
This is a general article about Cross-Origin Resource Sharing and includes a discussion of the necessary HTTP headers.
CORS failures result in errors but for security reasons, specifics about the error are not available to JavaScript. All the code knows is that an error occurred. The only way to determine what specifically went wrong is to look at the browser's console for details.
Subsequent sections discuss scenarios, as well as provide a breakdown of the HTTP headers used.
A simple request is one that meets all the following conditions:
One of the allowed methods:
application/x-www-form-urlencoded
multipart/form-data
text/plain
No other browsers implement these extra restrictions because they're not part of the spec.
For example, suppose web content at https://foo.example
wishes to invoke content on domain https://bar.other
. Code of this sort might be used in JavaScript deployed on foo.example
:
Copy to Clipboard
This operation performs a simple exchange between the client and the server, using CORS headers to handle the privileges:
Let's look at what the browser will send to the server in this case:
Copy to Clipboard
Now let's see how the server responds:
Copy to Clipboard
Copy to Clipboard
Copy to Clipboard
The following is an example of a request that will be preflighted:
Copy to Clipboard
The example above creates an XML body to send with the POST
request. Also, a non-standard HTTP X-PINGOTHER
request header is set. Such headers are not part of HTTP/1.1, but are generally useful to web applications. Since the request uses a Content-Type
of text/xml
, and since a custom header is set, this request is preflighted.
Note: As described below, the actual POST
request does not include the Access-Control-Request-*
headers; they are needed only for the OPTIONS
request.
Let's look at the full exchange between client and server. The first exchange is the preflight request/response:
Copy to Clipboard
Copy to Clipboard
Lines 12 - 21 above are the response that the server returns, which indicate that the request method (POST
) and request headers (X-PINGOTHER
) are acceptable. Let's have a closer look at lines 15-18:
Copy to Clipboard
The server also sends Access-Control-Allow-Headers
with a value of "X-PINGOTHER, Content-Type
", confirming that these are permitted headers to be used with the actual request. Like Access-Control-Allow-Methods
, Access-Control-Allow-Headers
is a comma-separated list of acceptable headers.
Once the preflight request is complete, the real request is sent:
Copy to Clipboard
Preflighted requests and redirects
Not all browsers currently support following redirects after a preflighted request. If a redirect occurs after such a request, some browsers currently will report an error message such as the following:
Until browsers catch up with the spec, you may be able to work around this limitation by doing one or both of the following:
Change the server-side behavior to avoid the preflight and/or to avoid the redirect
If that's not possible, then another way is to:
Make another request (the real request) using the URL you obtained from Response.url
or XMLHttpRequest.responseURL
in the first step.
However, if the request is one that triggers a preflight due to the presence of the Authorization
header in the request, you won't be able to work around the limitation using the steps above. And you won't be able to work around it at all unless you have control over the server the request is being made to.
Note: When making credentialed requests to a different domain, third-party cookie policies will still apply. The policy is always enforced regardless of any setup on the server and the client as described in this chapter.
In this example, content originally loaded from https://foo.example
makes a simple GET request to a resource on https://bar.other
which sets Cookies. Content on foo.example might contain JavaScript like this:
Copy to Clipboard
Here is a sample exchange between client and server:
Copy to Clipboard
Preflight requests and credentials
CORS-preflight requests must never include credentials. The response to a preflight request must specify Access-Control-Allow-Credentials: true
to indicate that the actual request can be made with credentials.
Credentialed requests and wildcards
When responding to a credentialed request:
The server must not specify the "*
" wildcard for the Access-Control-Allow-Origin
response-header value, but must instead specify an explicit origin; for example: Access-Control-Allow-Origin: https://example.com
The server must not specify the "*
" wildcard for the Access-Control-Allow-Headers
response-header value, but must instead specify an explicit list of header names; for example, Access-Control-Allow-Headers: X-PINGOTHER, Content-Type
The server must not specify the "*
" wildcard for the Access-Control-Allow-Methods
response-header value, but must instead specify an explicit list of method names; for example, Access-Control-Allow-Methods: POST, GET
The server must not specify the "*
" wildcard for the Access-Control-Expose-Headers
response-header value, but must instead specify an explicit list of header names; for example, Access-Control-Expose-Headers: Content-Encoding, Kuma-Revision
If a request includes a credential (most commonly a Cookie
header) and the response includes an Access-Control-Allow-Origin: *
header (that is, with the wildcard), the browser will block access to the response, and report a CORS error in the devtools console.
But if a request does include a credential (like the Cookie
header) and the response includes an actual origin rather than the wildcard (like, for example, Access-Control-Allow-Origin: https://example.com
), then the browser will allow access to the response from the specified origin.
Also note that any Set-Cookie
response header in a response would not set a cookie if the Access-Control-Allow-Origin
value in that response is the "*
" wildcard rather an actual origin.
Third-party cookies
Note that cookies set in CORS responses are subject to normal third-party cookie policies. In the example above, the page is loaded from foo.example
but the cookie on line 19 is sent by bar.other
, and would thus not be saved if the user's browser is configured to reject all third-party cookies.
Cookie in the request (line 10) may also be suppressed in normal third-party cookie policies. The enforced cookie policy may therefore nullify the capability described in this chapter, effectively preventing you from making credentialed requests whatsoever.
This section lists the HTTP response headers that servers return for access control requests as defined by the Cross-Origin Resource Sharing specification. The previous section gives an overview of these in action.
Copy to Clipboard
Access-Control-Allow-Origin
specifies either a single origin which tells browsers to allow that origin to access the resource; or else — for requests without credentials — the "*
" wildcard tells browsers to allow any origin to access the resource.
For example, to allow code from the origin https://mozilla.org
to access the resource, you can specify:
Copy to Clipboard
Copy to Clipboard
For example, the following:
Copy to Clipboard
…would allow the X-My-Custom-Header
and X-Another-Custom-Header
headers to be exposed to the browser.
Copy to Clipboard
The delta-seconds
parameter indicates the number of seconds the results can be cached.
Copy to Clipboard
Copy to Clipboard
Copy to Clipboard
Copy to Clipboard
The origin is a URL indicating the server from which the request is initiated. It does not include any path information, only the server name.
Note: The origin
value can be null
.
Copy to Clipboard
Copy to Clipboard
The CORS mechanism supports secure cross-origin requests and data transfers between browsers and servers. Modern browsers use CORS in APIs such as XMLHttpRequest
or to mitigate the risks of cross-origin HTTP requests.
This can enable cross-origin HTTP requests for:
Invocations of the or , as discussed above.
Web Fonts (for cross-domain font usage in @font-face
within CSS),
.
Images/video frames drawn to a canvas using .
The Cross-Origin Resource Sharing standard works by adding new that let servers describe which origins are permitted to read that information from a web browser. Additionally, for HTTP request methods that can cause side-effects on server data (in particular, HTTP methods other than , or with certain ), the specification mandates that browsers "preflight" the request, soliciting supported methods from the server with the HTTP request method, and then, upon "approval" from the server, sending the actual request. Servers can also inform clients whether "credentials" (such as and ) should be sent with requests.
We present three scenarios that demonstrate how Cross-Origin Resource Sharing works. All these examples use , which can make cross-origin requests in any supporting browser.
Some requests don't trigger a . Those are called simple requests from the obsolete , though the (which now defines CORS) doesn't use that term.
The motivation is that the element from HTML 4.0 (which predates cross-site and ) can submit simple requests to any origin, so anyone writing a server must already be protecting against (CSRF). Under this assumption, the server doesn't have to opt-in (by responding to a preflight request) to receive any request that looks like a form submission, since the threat of CSRF is no worse than that of form submission. However, the server still must opt-in using to share the response with the script.
Apart from the headers automatically set by the user agent (for example, , , or ), the only headers which are allowed to be manually set are , which are:
(please note the additional requirements below)
(only with a ; e.g., bytes=256-
or bytes=127-255
)
Note: Firefox has not implemented Range
as a safelisted request-header yet. See .
The only type/subtype combinations allowed for the specified in the header are:
If the request is made using an object, no event listeners are registered on the object returned by the property used in the request; that is, given an instance xhr
, no code has called xhr.upload.addEventListener()
to add an event listener to monitor the upload.
No object is used in the request.
Note: WebKit Nightly and Safari Technology Preview place additional restrictions on the values allowed in the , , and headers. If any of those headers have "nonstandard" values, WebKit/Safari does not consider the request to be a "simple request". What values WebKit/Safari consider "nonstandard" is not documented, except in the following WebKit bugs:
The request header of note is , which shows that the invocation is coming from https://foo.example
.
In response, the server returns a header with Access-Control-Allow-Origin: *
, which means that the resource can be accessed by any origin.
This pattern of the and headers is the simplest use of the access control protocol. If the resource owners at https://bar.other
wished to restrict access to the resource to requests only from https://foo.example
(i.e., no domain other than https://foo.example
can access the resource in a cross-origin manner), they would send:
Note: When responding to a request, the server must specify an origin in the value of the Access-Control-Allow-Origin
header, instead of specifying the "*
" wildcard.
Unlike , for "preflighted" requests the browser first sends an HTTP request using the method to the resource on the other origin, in order to determine if the actual request is safe to send. Such cross-origin requests are preflighted since they may have implications for user data.
Lines 1 - 10 above represent the preflight request with the method. The browser determines that it needs to send this based on the request parameters that the JavaScript code snippet above was using, so that the server can respond whether it is acceptable to send the request with the actual request parameters. OPTIONS is an HTTP/1.1 method that is used to determine further information from servers, and is a method, meaning that it can't be used to change the resource. Note that along with the OPTIONS request, two other request headers are sent (lines 9 and 10 respectively):
The header notifies the server as part of a preflight request that when the actual request is sent, it will do so with a POST
request method. The header notifies the server that when the actual request is sent, it will do so with X-PINGOTHER
and Content-Type
custom headers. Now the server has an opportunity to determine whether it can accept a request under these conditions.
The server responds with Access-Control-Allow-Origin: https://foo.example
, restricting access to the requesting origin domain only. It also responds with Access-Control-Allow-Methods
, which says that POST
and GET
are valid methods to query the resource in question (this header is similar to the response header, but used strictly within the context of access control).
Finally, gives the value in seconds for how long the response to the preflight request can be cached without sending another preflight request. The default value is 5 seconds. In the present case, the max age is 86400 seconds (= 24 hours). Note that each browser has a that takes precedence when the Access-Control-Max-Age
exceeds it.
The request was redirected to '', which is disallowed for cross-origin requests that require preflight. Request requires preflight, which is disallowed to follow cross-origin redirects.
The CORS protocol originally required that behavior but . However, not all browsers have implemented the change, and thus still exhibit the originally required behavior.
Change the request such that it is a that doesn't cause a preflight
Make a (using for the Fetch API, or ) to determine what URL the real preflighted request would end up at.
The most interesting capability exposed by both or and CORS is the ability to make "credentialed" requests that are aware of and HTTP Authentication information. By default, in cross-origin XMLHttpRequest
or invocations, browsers will not send credentials. A specific flag has to be set on the XMLHttpRequest
object or the constructor when it is invoked.
Line 7 shows the flag on that has to be set in order to make the invocation with Cookies, namely the withCredentials
boolean value. By default, the invocation is made without Cookies. Since this is a simple GET
request, it is not preflighted but the browser will reject any response that does not have the : true
header, and not make the response available to the invoking web content.
Although line 10 contains the Cookie destined for the content on https://bar.other
, if bar.other did not respond with an : true
(line 16), the response would be ignored and not made available to the web content.
Note: Some enterprise authentication services require that TLS client certificates be sent in preflight requests, in contravention of the specification.
Firefox 87 allows this non-compliant behavior to be enabled by setting the preference: network.cors_preflight.allow_client_cert
to true
(). Chromium-based browsers currently always send TLS client certificates in CORS preflight requests ().
Cookie policy around the attribute would apply.
A returned resource may have one header with the following syntax:
If the server specifies a single origin (that may dynamically change based on the requesting origin as part of an allowlist) rather than the "*
" wildcard, then the server should also include Origin
in the response header to indicate to clients that server responses will differ based on the value of the request header.
The header adds the specified headers to the allowlist that JavaScript (such as ) in browsers is allowed to access.
The header indicates how long the results of a preflight request can be cached. For an example of a preflight request, see the above examples.
The header indicates whether or not the response to the request can be exposed when the credentials
flag is true. When used as part of a response to a preflight request, this indicates whether or not the actual request can be made using credentials. Note that simple GET
requests are not preflighted, and so if a request is made for a resource with credentials, if this header is not returned with the resource, the response is ignored by the browser and not returned to web content.
are discussed above.
The header specifies the method or methods allowed when accessing the resource. This is used in response to a preflight request. The conditions under which a request is preflighted are discussed above.
An example of a is given above, including an example which sends this header to the browser.
The header is used in response to a to indicate which HTTP headers can be used when making the actual request. This header is the server side response to the browser's header.
This section lists headers that clients may use when issuing HTTP requests in order to make use of the cross-origin sharing feature. Note that these headers are set for you when making invocations to servers. Developers using cross-origin capability do not have to set any cross-origin sharing request headers programmatically.
The header indicates the origin of the cross-origin access request or preflight request.
Note that in any access control request, the header is always sent.
The is used when issuing a preflight request to let the server know what HTTP method will be used when the actual request is made.
Examples of this usage can be
The header is used when issuing a preflight request to let the server know what HTTP headers will be used when the actual request is made (such as with ). This browser-side header will be answered by the complementary server-side header of .
Examples of this usage can be .