-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathCSP.php
461 lines (439 loc) · 14.4 KB
/
CSP.php
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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
<?php declare(strict_types=1);
/*
* This file is part of Aplus Framework HTTP Library.
*
* (c) Natan Felles <natanfelles@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Framework\HTTP;
use InvalidArgumentException;
use LogicException;
/**
* Class CSP.
*
* @see https://content-security-policy.com/
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/CSP
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy
*
* @package http
*/
class CSP implements \Stringable
{
/**
* Restricts the URLs which can be used in a document's `<base>` element.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/base-uri
*/
public const string baseUri = 'base-uri';
/**
* Defines the valid sources for web workers and nested browsing contexts
* loaded using elements such as `<frame>` and `<iframe>`.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/child-src
*/
public const string childSrc = 'child-src';
/**
* Restricts the URLs which can be loaded using script interfaces.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/connect-src
*/
public const string connectSrc = 'connect-src';
/**
* Serves as a fallback for the other fetch directives.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/default-src
*/
public const string defaultSrc = 'default-src';
/**
* Specifies valid sources for fonts loaded using `@font-face`.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/font-src
*/
public const string fontSrc = 'font-src';
/**
* Restricts the URLs which can be used as the target of a form submissions
* from a given context.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/form-action
*/
public const string formAction = 'form-action';
/**
* Specifies valid parents that may embed a page using `<frame>`, `<iframe>`,
* `<object>`, `<embed>`, or `<applet>`.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/frame-ancestors
*/
public const string frameAncestors = 'frame-ancestors';
/**
* Specifies valid sources for nested browsing contexts loading using
* elements such as `<frame>` and `<iframe>`.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/frame-src
*/
public const string frameSrc = 'frame-src';
/**
* Specifies valid sources of images and favicons.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/img-src
*/
public const string imgSrc = 'img-src';
/**
* Specifies valid sources of application manifest files.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/manifest-src
*/
public const string manifestSrc = 'manifest-src';
/**
* Specifies valid sources for loading media using the `<audio>`, `<video>`
* and `<track>` elements.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/media-src
*/
public const string mediaSrc = 'media-src';
/**
* Restricts the URLs to which a document can initiate navigation by any
* means, including `<form>` (if form-action is not specified), `<a>`,
* `window.location`, `window.open`, etc.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/navigate-to
*/
public const string navigateTo = 'navigate-to';
/**
* Specifies valid sources for the `<object>`, `<embed>`, and `<applet>`
* elements.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/object-src
*/
public const string objectSrc = 'object-src';
/**
* Restricts the set of plugins that can be embedded into a document by
* limiting the types of resources which can be loaded.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/plugin-types
* @deprecated
*/
public const string pluginTypes = 'plugin-types';
/**
* Specifies valid sources to be prefetched or prerendered.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/prefetch-src
* @deprecated
*/
public const string prefetchSrc = 'prefetch-src';
/**
* Fires a SecurityPolicyViolationEvent.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/report-to
*/
public const string reportTo = 'report-to';
/**
* Instructs the user agent to report attempts to violate the Content
* Security Policy. These violation reports consist of JSON documents sent
* via an HTTP POST request to the specified URI.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/report-uri
* @deprecated
*/
public const string reportUri = 'report-uri';
/**
* Enables a sandbox for the requested resource similar to the `<iframe>`
* sandbox attribute.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/sandbox
*/
public const string sandbox = 'sandbox';
/**
* Specifies valid sources for JavaScript and WebAssembly resources.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/script-src
*/
public const string scriptSrc = 'script-src';
/**
* Specifies valid sources for JavaScript inline event handlers.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/script-src-attr
*/
public const string scriptSrcAttr = 'script-src-attr';
/**
* Specifies valid sources for JavaScript `<script>` elements.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/script-src-elem
*/
public const string scriptSrcElem = 'script-src-elem';
/**
* Specifies valid sources for stylesheets.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/style-src
*/
public const string styleSrc = 'style-src';
/**
* Specifies valid sources for inline styles applied to individual DOM
* elements.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/style-src-attr
*/
public const string styleSrcAttr = 'style-src-attr';
/**
* Specifies valid sources for stylesheets `<style>` elements and `<link>`
* elements with `rel="stylesheet"`.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/style-src-elem
*/
public const string styleSrcElem = 'style-src-elem';
/**
* Instructs user agents to treat all of a site's insecure URLs (those
* served over HTTP) as though they have been replaced with secure URLs
* (those served over HTTPS). This directive is intended for websites with
* large numbers of insecure legacy URLs that need to be rewritten.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/upgrade-insecure-requests
*/
public const string upgradeInsecureRequests = 'upgrade-insecure-requests';
/**
* Specifies valid sources for Worker, SharedWorker, or ServiceWorker
* scripts.
*
* @see https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/worker-src
*/
public const string workerSrc = 'worker-src';
/**
* @var array<string,array<string>>
*/
protected array $directives = [];
/**
* @param array<string,array<string>> $directives
*/
public function __construct(array $directives = [])
{
if ($directives) {
$this->setDirectives($directives);
}
}
public function __toString() : string
{
return $this->render();
}
public function render() : string
{
if (empty($this->directives)) {
throw new LogicException('No CSP directive has been set');
}
$directives = [];
foreach ($this->directives as $name => $values) {
$values = \implode(' ', $values);
$directive = $name . ' ' . $values;
$directives[] = \trim($directive);
}
return \implode('; ', $directives) . ';';
}
/**
* @param string $directive
* @param array<string>|string $values
*
* @return static
*/
public function addValues(string $directive, array | string $values) : static
{
$directive = \strtolower($directive);
$values = (array) $values;
$this->directives[$directive] ??= [];
foreach ($values as $value) {
$this->directives[$directive][] = $this->sanitizeValue($value);
}
return $this;
}
protected function sanitizeValue(string $value) : string
{
if (\in_array($value, [
'none',
'self',
'strict-dynamic',
'unsafe-eval',
'unsafe-hashes',
'unsafe-inline',
])
|| \str_starts_with($value, 'nonce-')
|| \str_starts_with($value, 'sha256-')
|| \str_starts_with($value, 'sha384-')
|| \str_starts_with($value, 'sha512-')
) {
return "'{$value}'";
}
return \trim($value);
}
/**
* @param string $name
* @param array<string>|string $values
*
* @return static
*/
public function setDirective(string $name, array | string $values) : static
{
$values = (array) $values;
foreach ($values as &$value) {
$value = $this->sanitizeValue($value);
}
unset($value);
$this->directives[\strtolower($name)] = $values;
return $this;
}
/**
* @param array<string,array<string>> $directives
*
* @return static
*/
public function setDirectives(array $directives) : static
{
foreach ($directives as $name => $values) {
$this->setDirective($name, $values);
}
return $this;
}
/**
* @param string $name
*
* @return array<string>|null
*/
public function getDirective(string $name) : ?array
{
return $this->directives[\strtolower($name)] ?? null;
}
/**
* @return array<string,array<string>>
*/
public function getDirectives() : array
{
return $this->directives;
}
public function removeDirective(string $name) : static
{
unset($this->directives[\strtolower($name)]);
return $this;
}
/**
* @param string $type
*
* @see https://content-security-policy.com/nonce/
*
* @return string
*/
protected function addNonce(string $type) : string
{
$nonce = \bin2hex(\random_bytes(8));
$this->addValues($type, "'nonce-{$nonce}'");
return $nonce;
}
protected function getNonceAttr(string $type) : string
{
$nonce = match ($type) {
static::scriptSrc => $this->addNonce(static::scriptSrc),
static::styleSrc => $this->addNonce(static::styleSrc),
default => throw new InvalidArgumentException(
'Invalid CSP directive: ' . $type
),
};
return ' nonce="' . $nonce . '"';
}
/**
* Creates a nonce, adds it to the script-src directive, and returns the
* attribute to be inserted into the script tag.
*
* @return string the nonce attribute
*/
public function getScriptNonceAttr() : string
{
return $this->getNonceAttr(static::scriptSrc);
}
/**
* Creates a nonce, adds it to the style-src directive, and returns the
* attribute to be inserted into the style tag.
*
* @return string the nonce attribute
*/
public function getStyleNonceAttr() : string
{
return $this->getNonceAttr(static::styleSrc);
}
/**
* @param string $html
*
* @return array<string>
*/
public static function getStyleHashes(string $html) : array
{
return static::makeHashes(static::getStyleContents($html));
}
/**
* @see https://stackoverflow.com/a/72636724
* @see https://stackoverflow.com/a/50124875
*
* @param string $html
*
* @return array<string>
*/
public static function getStyleContents(string $html) : array
{
\preg_match_all(
'#<style[\w="\'\s-]*>([^<]+)</style>#i',
$html,
$matches
);
return $matches[1];
}
/**
* @param string $html
*
* @return array<string>
*/
public static function getScriptHashes(string $html) : array
{
return static::makeHashes(static::getScriptContents($html));
}
/**
* @param string $html
*
* @return array<string>
*/
public static function getScriptContents(string $html) : array
{
\preg_match_all(
'#<script[\w="\'\s-]*>([^<]+)</script>#i',
$html,
$matches
);
return $matches[1];
}
/**
* @param array<string> $contents
* @param string $algo
*
* @return array<string>
*/
public static function makeHashes(
array $contents,
string $algo = 'sha256'
) : array {
$hashes = [];
foreach ($contents as $content) {
$hashes[] = static::makeHash($algo, $content);
}
return $hashes;
}
/**
* @see https://content-security-policy.com/hash/
* @see https://security.stackexchange.com/q/58789
*
* @param string $algo
* @param string $content
*
* @return string
*/
public static function makeHash(string $algo, string $content) : string
{
$content = \hash($algo, $content, true);
$content = \base64_encode($content);
return $algo . '-' . $content;
}
}