Add X-Frame-Options header to .htaccess

Signed-off-by: J0WI <J0WI@users.noreply.github.com>
This commit is contained in:
J0WI 2019-07-01 18:40:17 +02:00 committed by Roeland Jago Douma
parent 11cf253f52
commit 76cbd7db6e
No known key found for this signature in database
GPG Key ID: F941078878347C0C
2 changed files with 2 additions and 1 deletions

View File

@ -17,6 +17,7 @@
Header set X-Download-Options "noopen"
Header set X-Permitted-Cross-Domain-Policies "none"
Header set Referrer-Policy "no-referrer"
Header set X-Frame-Options "SAMEORIGIN"
SetEnv modHeadersAvailable true
</IfModule>

View File

@ -94,7 +94,6 @@ class OC_Response {
. 'object-src \'none\'; '
. 'base-uri \'self\'; ';
header('Content-Security-Policy:' . $policy);
header('X-Frame-Options: SAMEORIGIN'); // Disallow iFraming from other domains
// Send fallback headers for installations that don't have the possibility to send
// custom headers on the webserver side
@ -105,6 +104,7 @@ class OC_Response {
header('X-Download-Options: noopen'); // https://msdn.microsoft.com/en-us/library/jj542450(v=vs.85).aspx
header('X-Permitted-Cross-Domain-Policies: none'); // https://www.adobe.com/devnet/adobe-media-server/articles/cross-domain-xml-for-streaming.html
header('Referrer-Policy: no-referrer'); // https://www.w3.org/TR/referrer-policy/
header('X-Frame-Options: SAMEORIGIN'); // Disallow iFraming from other domains
}
}