Same-origin policy
Политика одинакового источника (same-origin policy) определяет как документ или скрипт, загруженный из одного источника (origin), может взаимодействовать с ресурсом из другого источника. Это помогает изолировать потенциально вредоносные документы, снижая количество возможных векторов атак.
Определение origin
Две страницы имеют одинаковый origin (источник) если протокол , порт (если указан), и хост одинаковы для обеих страниц. Время от времени, вы можете видеть это как "scheme/host/port tuple" (где "tuple" переводится как кортеж или запись набор из трёх компонент, которые вместе составляют единое целое).
В следующей таблице даны примеры origin-сравнений с URL http://store.company.com/dir/page.html
:
URL | Outcome | Reason |
---|---|---|
http://store.company.com/dir2/other.html |
Success | |
http://store.company.com/dir/inner/another.html |
Success | |
https://store.company.com/secure.html |
Failure | Different protocol |
http://store.company.com:81/dir/etc.html |
Failure | Different port |
http://news.company.com/dir/other.html |
Failure | Different host |
Смотрите также origin definition for file:
URLs.
Наследование origins
Контент из about:blank
и javascript:
адреса наследуют источник документа, содержащего этот URL, поскольку они не содержат информации о сервере происхождения.
Например, about:blank
часто используется в качестве URL новых, пустых окон в которые родительский скрипт записывает контент (например, с помощью Window.open()
). Если это окно также содержит JavaScript, то скрипт будет наследовать то же происхождение, что и его родитель.
Предупреждение: data:
адреса получают новый, пустой, безопасный контекст.
Исключения в Internet Explorer
Internet Explorer два основных исключения из политики одно происхождения:
- Trust Zones (Зоны доверия)
-
Если оба домена находятся в зоне высокого доверия (например, зоны корпоративной интрасети), то ограничения на одно и то же происхождение не применяется.
- Порт
-
IE не включает порт в same-origin проверку. Следовательно,
https://company.com:81/index.html
иhttps://company.com/index.html
являются адресами одного происхождения и ограничения действовать не будут.
Эти исключения являются нестандартными и не поддерживаются в любом другом браузере
Изменение origin
Страница может изменить свой оригинальный origin с некоторыми ограничениями. Скрипт может установить значение document.domain
на текущий домен или супердомен текущего домена. Если значение будет установлено на супердомен текущего домена, более короткий домен будет использован для последующей проверки origin'а. Например, предполагается, что скрипт в документе по адресу http://store.company.com/dir/other.html
выполняется следующим выражением:
document.domain = "company.com";
После этого, страница может пройти такую же проверку на http://company.com/dir/page.html
(предполагая, что http://company.com/dir/page.html
установил document.domain
в значение "company.com
" чтобы указать, что у него получилось разрешение - смотри document.domain
). Однако, company.com
не может установить document.domain
в значение othercompany.com
, поскольку это значение не является супердоменом company.com
.
Номер порта проверяется браузером отдельно. Любой вызов document.domain
, включающий document.domain = document.domain
, заменяет номер порта, устанавливая его в значение null
. Следовательно, невозможно вызов company.com:8080
обозначить company.com
одной лишь установкой document.domain = "company.com"
в начале. Он должен быть установлен в обоих случаях и номер портов в этих случаях должны равняться значению null
.
Примечание: Когда используется document.domain
для разрешения поддомена для родительского доступа к нему, вы должны установить document.domain
в такое же значение, как в родительском домене, так и в поддомене. Это необходимо, даже если при этом просто восстанавливается исходное значение родительского домена. Несоблюдение этого правила может привести к ошибкам разрешений.
Cross-origin network access
The same-origin policy controls interactions between two different origins, such as when you use XMLHttpRequest
or an <img>
element. These interactions are typically placed into three categories:
- Cross-origin writes are typically allowed. Examples are links, redirects and form submissions. Certain rarely used HTTP requests require preflight.
- Cross-origin embedding is typically allowed. Examples are listed below.
- Cross-origin reads are typically not allowed, but read access is often leaked by embedding. For example, you can read the width and height of an embedded image, the actions of an embedded script, or the availability of an embedded resource.
Here are some examples of resources which may be embedded cross-origin:
- JavaScript with
<script src="..."></script>
. Error messages for syntax errors are only available for same-origin scripts. - CSS with
<link rel="stylesheet" href="...">
. Due to the relaxed syntax rules of CSS, cross-origin CSS requires a correctContent-Type
header. Restrictions vary by browser: IE, Firefox, Chrome, Safari (scroll down to CVE-2010-0051) and Opera. - Images with
<img>
. Supported image formats include PNG, JPEG, GIF, BMP, SVG, ... - Media files with
<video>
and<audio>
. - Plug-ins with
<object>
,<embed>
and<applet>
. - Fonts with
@font-face
. Some browsers allow cross-origin fonts, others require same-origin fonts. - Anything with
<frame>
and<iframe>
. A site can use theX-Frame-Options
header to prevent this form of cross-origin interaction.
How to allow cross-origin access
Use CORS to allow cross-origin access.
How to block cross-origin access
- To prevent cross-origin writes, check for an unguessable token in the request, known as a Cross-Site Request Forgery (CSRF) token. You must prevent cross-origin reads of pages that know this token.
- To prevent cross-origin reads of a resource, ensure that it is not embeddable. It is often necessary to prevent embedding because embedding a resource always leaks some information about it.
- To prevent cross-origin embedding, ensure that your resource cannot be interpreted as one of the embeddable formats listed above. The browser does not respect the
Content-Type
in most cases. For example, if you point a<script>
tag at an HTML document, the browser will try to parse the HTML as JavaScript. When your resource is not an entry point to your site, you can also use a CSRF token to prevent embedding.
Cross-origin script API access
JavaScript APIs such as iframe.contentWindow
, window.parent
, window.open
and window.opener
allow documents to directly reference each other. When the two documents do not have the same origin, these references provide very limited access to Window
and Location
objects, as described in the next two sections.
To communicate further between documents from different origins, use window.postMessage
.
Window
Specification: http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html#security-window.
The following cross-origin access to Window
properties is allowed:
Attributes | |
---|---|
window.closed |
Read only. |
window.frames |
Read only. |
window.length |
Read only. |
window.location |
Read/write. |
window.opener |
Read only. |
window.parent |
Read only. |
window.self |
Read only. |
window.top |
Read only. |
window.window |
Read only. |
Some browsers allow access to more properties than the specification allows.
Location
Specification: http://www.whatwg.org/specs/web-apps/current-work/multipage/browsers.html#security-location.
The following cross-origin access to Location
properties is allowed:
Methods |
---|
location.replace |
Attributes | |
---|---|
URLUtils.href |
Write only. |
Some browsers allow access to more properties than the specification allows.
Cross-origin data storage access
Access to data stored in the browser such as localStorage and IndexedDB are separated by origin. Each origin gets its own separate storage, and JavaScript in one origin cannot read from or write to the storage belonging to another origin.
Cookies use a separate definition of origins. A page can set a cookie for its own domain or any parent domain, as long as the parent domain is not a public suffix. Firefox and Chrome use the Public Suffix List to determine if a domain is a public suffix. Internet Explorer uses its own internal method to determine if a domain is a public suffix. The browser will make a cookie available to the given domain including any sub-domains, no matter which protocol (HTTP/HTTPS) or port is used. When you set a cookie, you can limit its availability using the Domain, Path, Secure and Http-Only flags. When you read a cookie, you cannot see from where it was set. Even if you use only secure https connections, any cookie you see may have been set using an insecure connection.