diff options
author | Lukas Reschke <lukas@owncloud.com> | 2015-02-26 12:54:15 +0100 |
---|---|---|
committer | Lukas Reschke <lukas@owncloud.com> | 2015-02-28 12:27:46 +0100 |
commit | b29940d956e638b14f2012022b0ad91ebac7f8e8 (patch) | |
tree | 02824c7f6b6df67b5bd9f6aacbb92740486439f9 /lib/public/appframework | |
parent | 42f6448da239c1b716ae514a513c4985eec48ef5 (diff) | |
download | nextcloud-server-b29940d956e638b14f2012022b0ad91ebac7f8e8.tar.gz nextcloud-server-b29940d956e638b14f2012022b0ad91ebac7f8e8.zip |
Add support for 'child-src' directive
This is required when working with stuff such as PDF.js in the files_pdfviewer application. Opt-in only.
Master change only because the stable CSP policies has a failback that allows nearly anything :see_no_evil:
Diffstat (limited to 'lib/public/appframework')
-rw-r--r-- | lib/public/appframework/http/contentsecuritypolicy.php | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/lib/public/appframework/http/contentsecuritypolicy.php b/lib/public/appframework/http/contentsecuritypolicy.php index cb9a241d8af..6778d1035be 100644 --- a/lib/public/appframework/http/contentsecuritypolicy.php +++ b/lib/public/appframework/http/contentsecuritypolicy.php @@ -65,6 +65,8 @@ class ContentSecurityPolicy { private $allowedFontDomains = [ '\'self\'', ]; + /** @var array Domains from which web-workers and nested browsing content can load elements */ + private $allowedChildSrcDomains = []; /** * Whether inline JavaScript snippets are allowed or forbidden @@ -181,6 +183,16 @@ class ContentSecurityPolicy { } /** + * Domains from which web-workers and nested browsing content can load elements + * @param string $domain Domain to whitelist. Any passed value needs to be properly sanitized. + * @return $this + */ + public function addAllowedChildSrcDomain($domain) { + $this->allowedChildSrcDomains[] = $domain; + return $this; + } + + /** * Get the generated Content-Security-Policy as a string * @return string */ @@ -236,6 +248,11 @@ class ContentSecurityPolicy { $policy .= ';'; } + if(!empty($this->allowedChildSrcDomains)) { + $policy .= 'child-src ' . implode(' ', $this->allowedChildSrcDomains); + $policy .= ';'; + } + return rtrim($policy, ';'); } } |