only allow iframe https content

This commit is contained in:
Bernhard Posselt 2015-02-02 23:23:30 +01:00
Родитель b02ea08db4
Коммит 7c4b72e820
2 изменённых файлов: 5 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,6 @@
owncloud-news (5.2.2)
* **Security**: Only allow YouTube and Vimeo to embed iframes if they use HTTPS to prevent mixed active content iframe attacks
owncloud-news (5.2.1)
* **Bugfix**: Fix admin settings by using the correct config path

Просмотреть файл

@ -124,8 +124,8 @@ class Application extends App {
$config->set('Cache.SerializerPath', $directory);
$config->set('HTML.SafeIframe', true);
$config->set('URI.SafeIframeRegexp',
'%^(?:https?:)?//(' .
'www.youtube(?:-nocookie)?.com/embed/|' .
'%^https://(?:www\.)?(' .
'youtube(?:-nocookie)?.com/embed/|' .
'player.vimeo.com/video/)%'); //allow YouTube and Vimeo
return new HTMLPurifier($config);
});