Merge branch 'master' into Develop

This commit is contained in:
Ozzie Isaacs 2023-02-07 18:38:47 +01:00
commit 8d0a699078
1 changed files with 2 additions and 2 deletions

View File

@ -95,10 +95,10 @@ def add_security_headers(resp):
if request.endpoint == "edit-book.show_edit_book" or config.config_use_google_drive:
csp += " *;"
elif request.endpoint == "web.read_book":
csp += " style-src-elem 'self' blob: 'unsafe-inline';"
csp += " blob:; style-src-elem 'self' blob: 'unsafe-inline';"
else:
csp += ";"
csp += "object-src: 'none';"
csp += " object-src 'none';"
resp.headers['Content-Security-Policy'] = csp
resp.headers['X-Content-Type-Options'] = 'nosniff'
resp.headers['X-Frame-Options'] = 'SAMEORIGIN'