blob: 19bd1d6e5b981d927a78804c47d70b5869eb0ffc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
|
---
title: 'CSP: navigate-to'
slug: Web/HTTP/Headers/Content-Security-Policy/navigate-to
tags:
- CSP
- Content-Security-Policy
- Directive
- HTTP
- Navigation
- Reference
- Security
- Sécurité
- navigate-to
translation_of: Web/HTTP/Headers/Content-Security-Policy/navigate-to
---
<div>{{HTTPSidebar}}</div>
<p>La directive HTTP {{HTTPHeader("Content-Security-Policy")}} (CSP) <code><strong>navigate</strong></code><strong><code>-to</code></strong> restreint les URL vers lesquelles un document peut initier une navigation de quelque manière que ce soit, dont {{HTMLElement("form")}} (si {{CSP("form-action")}} n'est pas spécifié), {{HTMLElement("a")}}, {{DOMxRef("window.location")}}, {{DOMxRef("window.open")}}, etc. Elle permet de renforcer les navigations que le document peut initier et <strong>non</strong> les adresses vers lesquelles ce document peut naviguer.</p>
<div class="blockIndicator note">
<p><strong>Note :</strong> Si la directive {{CSP("form-action")}} est présente, la directive <code>navigate-to</code> ne sera pas appliquée sur la navigation par la soumission de formulaire.</p>
</div>
<table class="properties">
<tbody>
<tr>
<th scope="row">Version de CSP</th>
<td>3</td>
</tr>
<tr>
<th scope="row">Type de directive</th>
<td>{{Glossary("Navigation directive")}}</td>
</tr>
<tr>
<th scope="row">{{CSP("default-src")}} par défaut</th>
<td>Non, ne pas la définir autorise toutes les adresses.</td>
</tr>
</tbody>
</table>
<h2 id="Syntaxe">Syntaxe</h2>
<p>Une ou plusieurs sources peuvent être utilisées pour cette directive :</p>
<pre class="syntaxbox notranslate">Content-Security-Policy: navigate-to <source>;
Content-Security-Policy: navigate-to <source> <source>;
</pre>
<h3 id="Sources">Sources</h3>
<p>{{page("fr/Web/HTTP/Headers/Content-Security-Policy/default-src", "Sources")}}</p>
<h2 id="Exemples">Exemples</h2>
<h3 id="Configuration_par_balise_<meta>">Configuration par balise <meta></h3>
<pre class="brush: html notranslate"><meta http-equiv="Content-Security-Policy" content="navigate-to 'none'">
</pre>
<h3 id="Cas_de_violation">Cas de violation</h3>
<p>Utiliser l'élément {{HTMLElement("form")}} avec un attribut <code>action</code> défini à un script embarqué en JavaScript résultera en une violation de CSP :</p>
<pre class="brush: html; example-bad notranslate"><meta http-equiv="Content-Security-Policy" content="navigate-to 'none'">
<form action="javascript:alert('Foo')" id="form1" method="post">
<input type="text" name="fieldName" value="fieldValue">
<input type="submit" id="submit" value="submit">
</form>
</pre>
<h2 id="Spécifications">Spécifications</h2>
<table class="standard-table">
<tbody>
<tr>
<th scope="col">Spécification</th>
<th scope="col">Statut</th>
<th scope="col">Commentaire</th>
</tr>
<tr>
<td>{{specName("CSP 3.0", "#directive-navigate-to", "navigate-to")}}</td>
<td>{{Spec2("CSP 3.0")}}</td>
<td>Définition initiale.</td>
</tr>
</tbody>
</table>
<h2 id="Compatibilité_des_navigateurs">Compatibilité des navigateurs</h2>
<p class="hidden">The compatibility table on this page is generated from structured data. If you'd like to contribute to the data, please check out <a href="https://github.com/mdn/browser-compat-data">https://github.com/mdn/browser-compat-data</a> and send us a pull request.</p>
<p>{{Compat("http.headers.csp.Content-Security-Policy.navigate-to")}}</p>
<h2 id="Voir_aussi">Voir aussi</h2>
<ul>
<li>{{HTTPheader("Content-Security-Policy")}}</li>
<li>{{CSP("form-action")}}</li>
<li>Attribut <code>href</code> {{HTMLElement("a")}}</li>
<li>{{HTMLElement("form")}}</li>
<li>{{DOMxRef("window.location")}}</li>
<li>{{DOMxRef("window.open")}}</li>
</ul>
|