Use "unsafe-wasm-eval" instead of "unsafe-eval" in script-src CSP (#20606)

* Add "unsafe-eval" to script-src CSP

* Use 'unsafe-wasm-eval' instead of 'unsafe-eval'
This commit is contained in:
prplecake 2022-11-14 20:22:38 -06:00 committed by GitHub
parent b59683c156
commit b46b7c3d5e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ Rails.application.config.content_security_policy do |p|
p.worker_src :self, :blob, assets_host
else
p.connect_src :self, :data, :blob, assets_host, media_host, Rails.configuration.x.streaming_api_base_url
p.script_src :self, assets_host, :unsafe_eval
p.script_src :self, assets_host, "'unsafe-wasm-eval'"
p.child_src :self, :blob, assets_host
p.worker_src :self, :blob, assets_host
end