Read more

CSP: strict-dynamic

Julian
May 24, 2023Software engineer at makandra GmbH

tl;dr

The strict-dynamic source list keyword allows you to simplify your CSP policy by favoring hashes and nonces over domain host lists.

The key super power of strict-dynamic is that it will allow to load additional scripts via non-"parser-inserted" script elements.

For unsupported browsers Show archive.org snapshot , your script can be made backwards compatible by doing something like this:

script-src 'nonce-rAnd0m' 'strict-dynamic' https: 'self'
default-src 'self';
Illustration online protection

Rails professionals since 2007

Our laser focus on a single technology has made us a leader in this space. Need help?

  • We build a solid first version of your product
  • We train your development team
  • We rescue your project in trouble
Read more Show archive.org snapshot

With 'strict-dynamic' the https: entry will be ignored by modern browsers. Older browsers will allow the loading of scripts from any URL.

Does not affect CSS or Images

img-src and style-src directives still apply.

Read further

A good default CSP can be found at Strict CSP Show archive.org snapshot .

Posted by Julian to makandra dev (2023-05-24 16:59)