Closed mrvanes closed 3 years ago
Chrome forbids the <script>ALLOWED_PATH="/opt/intelmq/var/lib/bots/";</script> line in template.php @101 because of the recommended CSP 'self' setting. This can be resolved with 'unsafe-inline' or adding the hash to the apache conf.
<script>ALLOWED_PATH="/opt/intelmq/var/lib/bots/";</script>
Thanks for the bug report.
script-tags in html are not allowed, so either
But
So maybe 2 is the way to go
cc also @e3rd
Fixed by #264
Chrome forbids the
<script>ALLOWED_PATH="/opt/intelmq/var/lib/bots/";</script>
line in template.php @101 because of the recommended CSP 'self' setting. This can be resolved with 'unsafe-inline' or adding the hash to the apache conf.