Skip to content
Snippets Groups Projects
Verified Commit 9faa7b80 authored by Kevin Morris's avatar Kevin Morris
Browse files

feat: add cdn.jsdelivr.net to script/style CSP


Signed-off-by: Kevin Morris's avatarKevin Morris <kevr@0cost.org>
parent df0a4a2b
No related branches found
No related tags found
No related merge requests found
Pipeline #28800 passed
......@@ -253,10 +253,14 @@ async def add_security_headers(request: Request, call_next: typing.Callable):
# Add CSP header.
nonce = request.user.nonce
csp = "default-src 'self'; "
script_hosts = []
# swagger-ui needs access to cdn.jsdelivr.net javascript
script_hosts = ["cdn.jsdelivr.net"]
csp += f"script-src 'self' 'nonce-{nonce}' " + " ".join(script_hosts)
# It's fine if css is inlined.
csp += "; style-src 'self' 'unsafe-inline'"
# swagger-ui needs access to cdn.jsdelivr.net css
css_hosts = ["cdn.jsdelivr.net"]
csp += "; style-src 'self' 'unsafe-inline' " + " ".join(css_hosts)
response.headers["Content-Security-Policy"] = csp
# Add XTCO header.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment