Page 1 of 1

HTML pages not showing in Views

Posted: Tue Dec 03, 2019 4:59 pm
by Lisa.sorenson
I have an external website page that I'm tyring to link to in my view so it rotates through. Let's say I want one of the view pages to be a link to this: https://www.fireeye.com/cyber-map/threat-map.html
It is just a blank page when the rotation gets to this page in the view. Any ideas on how to get this to show in my view rotation?

Re: HTML pages not showing in Views

Posted: Tue Dec 03, 2019 5:14 pm
by scottwilkerson
That page has a content security policy that disallows it from being embedded in a frame.

Code: Select all

worker-src blob: ;
default-src https: data: 'unsafe-inline' 'unsafe-eval';
frame-ancestors 'self' http://fireeye.lookbookhq.com https://fireeye.lookbookhq.com http://content.fireeye.com https://content.fireeye.com
If you own this page, you can adjust the policy to allow access from your Nagios server.

there is a CSP tester here
https://csp-evaluator.withgoogle.com/