Skip to content

Commit a7d0f4c

Browse files
authored
Loosen CSP headers to keep site working
This backs off the previously introduced CSP header and makes the values permissive enough to work with the current application code and page structure of the Library app. However, usage of `'unsafe-inline'` and `data:` are explicitly discouraged by the CSP spec, because they are so permissive that it's like not having a CSP header at all. We should do further analysis of the changes required to tighten up the CSP header at a later date. Also fixes the `Permissions-Policy` header to be in the right format, and disable almost all known browser permissions - none should be relevant for our very simple Library app.
1 parent c5b7ee0 commit a7d0f4c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,10 @@
5959
<!-- Add all the nice security headers -->
6060
<httpProtocol>
6161
<customHeaders>
62-
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains" />
63-
<add name="Content-Security-Policy" value="default-src https:" />
62+
<add name="Content-Security-Policy" value="default-src https:; img-src https: data:; script-src https: 'unsafe-inline'; style-src https: 'unsafe-inline';" />
63+
<add name="Permissions-Policy" value="accelerometer=(), camera=(), cross-origin-isolated=(), display-capture=(), encrypted-media=(), geolocation=(), gyroscope=(), microphone=(), midi=(), payment=(), picture-in-picture=(), publickey-credentials-get=(), screen-wake-lock=(), sync-xhr=(), usb=(), web-share=(), xr-spatial-tracking=()" />
6464
<add name="Referrer-Policy" value="no-referrer" />
65-
<add name="Permissions-Policy" value="microphone ‘none’; camera ‘none’ https://library.octopus.com" />
65+
<add name="Strict-Transport-Security" value="max-age=31536000; includeSubDomains" />
6666
<add name="X-Frame-Options" value="SAMEORIGIN" />
6767
<add name="X-Content-Type-Options" value="nosniff" />
6868
</customHeaders>

0 commit comments

Comments
 (0)