nextcloud/lib/private/AppFramework
Lukas Reschke 9e6634814e
Add support for CSP nonces
CSP nonces are a feature available with CSP v2. Basically instead of saying "JS resources from the same domain are ok to be served" we now say "Ressources from everywhere are allowed as long as they add a `nonce` attribute to the script tag with the right nonce.

At the moment the nonce is basically just a `<?php p(base64_encode($_['requesttoken'])) ?>`, we have to decode the requesttoken since `:` is not an allowed value in the nonce. So if somebody does on their own include JS files (instead of using the `addScript` public API, they now must also include that attribute.)

IE does currently not implement CSP v2, thus there is a whitelist included that delivers the new CSP v2 policy to newer browsers. Check http://caniuse.com/#feat=contentsecuritypolicy2 for the current browser support list. An alternative approach would be to just add `'unsafe-inline'` as well as `'unsafe-inline'` is ignored by CSPv2 when a nonce is set. But this would make this security feature unusable at all in IE. Not worth it at the moment IMO.

Implementing this offers the following advantages:

1. **Security:** As we host resources from the same domain by design we don't have to worry about 'self' anymore being in the whitelist
2. **Performance:** We can move oc.js again to inline JS. This makes the loading way quicker as we don't have to load on every load of a new web page a blocking dynamically non-cached JavaScript file.

If you want to toy with CSP see also https://csp-evaluator.withgoogle.com/

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
2016-10-24 12:27:50 +02:00
..
Core Update with robin 2016-07-21 18:13:58 +02:00
Db Added method to DB and fix test 2016-10-24 09:45:04 +02:00
DependencyInjection Add support for CSP nonces 2016-10-24 12:27:50 +02:00
Http Merge pull request #797 from nextcloud/only-match-for-auth-cookie 2016-08-31 15:59:16 +02:00
Middleware Add support for CSP nonces 2016-10-24 12:27:50 +02:00
OCS Add trict CSP to OCS responses 2016-09-15 13:11:36 +02:00
Routing Cache the build ControllerName 2016-09-11 13:25:32 +02:00
Utility When we can not create the class, try if the variable is a registered service 2016-10-05 16:33:19 +02:00
App.php Don't parse info.xml but reuse already cached app infos - fixes #25603 (#25968) 2016-10-07 20:58:22 +02:00
Http.php Fix others 2016-07-21 18:13:57 +02:00