mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
add wasm-unsafe-eval to CSP (#2656)
This commit is contained in:
parent
285b2ae55b
commit
522df6e91a
@ -57,7 +57,7 @@ server {
|
|||||||
include /etc/nginx/security-headers-ssl.conf;
|
include /etc/nginx/security-headers-ssl.conf;
|
||||||
{{/if}}
|
{{/if}}
|
||||||
include /etc/nginx/security-headers.conf;
|
include /etc/nginx/security-headers.conf;
|
||||||
add_header Content-Security-Policy "{{{String.Coalesce env.BW_CSP "default-src 'self'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https://haveibeenpwned.com; child-src 'self' https://*.duosecurity.com https://*.duofederal.com; frame-src 'self' https://*.duosecurity.com https://*.duofederal.com; connect-src 'self' https://api.pwnedpasswords.com https://api.2fa.directory; object-src 'self' blob:;"}}}";
|
add_header Content-Security-Policy "{{{String.Coalesce env.BW_CSP "default-src 'self'; script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; img-src 'self' data: https://haveibeenpwned.com; child-src 'self' https://*.duosecurity.com https://*.duofederal.com; frame-src 'self' https://*.duosecurity.com https://*.duofederal.com; connect-src 'self' https://api.pwnedpasswords.com https://api.2fa.directory; object-src 'self' blob:;"}}}";
|
||||||
add_header X-Frame-Options SAMEORIGIN;
|
add_header X-Frame-Options SAMEORIGIN;
|
||||||
add_header X-Robots-Tag "noindex, nofollow";
|
add_header X-Robots-Tag "noindex, nofollow";
|
||||||
}
|
}
|
||||||
|
@ -76,8 +76,9 @@ public class Configuration
|
|||||||
[Description("Nginx Header Content-Security-Policy parameter\n" +
|
[Description("Nginx Header Content-Security-Policy parameter\n" +
|
||||||
"WARNING: Reconfiguring this parameter may break features. By changing this parameter\n" +
|
"WARNING: Reconfiguring this parameter may break features. By changing this parameter\n" +
|
||||||
"you become responsible for maintaining this value.")]
|
"you become responsible for maintaining this value.")]
|
||||||
public string NginxHeaderContentSecurityPolicy { get; set; } = "default-src 'self'; style-src 'self' " +
|
public string NginxHeaderContentSecurityPolicy { get; set; } = "default-src 'self'; " +
|
||||||
"'unsafe-inline'; img-src 'self' data: https://haveibeenpwned.com; " +
|
"script-src 'self' 'wasm-unsafe-eval'; style-src 'self' 'unsafe-inline'; " +
|
||||||
|
"img-src 'self' data: https://haveibeenpwned.com; " +
|
||||||
"child-src 'self' https://*.duosecurity.com https://*.duofederal.com; " +
|
"child-src 'self' https://*.duosecurity.com https://*.duofederal.com; " +
|
||||||
"frame-src 'self' https://*.duosecurity.com https://*.duofederal.com; " +
|
"frame-src 'self' https://*.duosecurity.com https://*.duofederal.com; " +
|
||||||
"connect-src 'self' wss://{0} https://api.pwnedpasswords.com " +
|
"connect-src 'self' wss://{0} https://api.pwnedpasswords.com " +
|
||||||
|
Loading…
x
Reference in New Issue
Block a user