最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

jsf - Primefaces csp cannot work with some part of faces.js - Stack Overflow

programmeradmin2浏览0评论

Versions: faces 2.2 Faces JavaScript Library Mojarra Faces 4.0.7

I switched on Primefaces.CSP on web.xml. And generates nonce-s to js.

I found some xhtml where faces.js violated (unsafe-inline)

Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self'

if (!!script) {
    var scriptNode = document.createElement("script");
    scriptNode.type = "text/javascript";
    scriptNode.text = script;
    head.appendChild(scriptNode); //this violates
    head.removeChild(scriptNode)
}

How can I use Primefaces.CSP and faces.js together safetly?

Versions: faces 2.2 Faces JavaScript Library Mojarra Faces 4.0.7

I switched on Primefaces.CSP on web.xml. And generates nonce-s to js.

I found some xhtml where faces.js violated (unsafe-inline)

Refused to execute inline script because it violates the following Content Security Policy directive: "script-src 'self'

if (!!script) {
    var scriptNode = document.createElement("script");
    scriptNode.type = "text/javascript";
    scriptNode.text = script;
    head.appendChild(scriptNode); //this violates
    head.removeChild(scriptNode)
}

How can I use Primefaces.CSP and faces.js together safetly?

Share Improve this question asked Apr 2 at 7:30 László TóthLászló Tóth 6137 silver badges20 bronze badges
Add a comment  | 

2 Answers 2

Reset to default 1

PrimeFaces CSP does not work with Mojarra f:ajax, it works however with MyFaces f:ajax.
See our documentation: https://primefaces.github.io/primefaces/15_0_0/#/core/contentsecuritypolicy?id=known-limitations

Primefaces CSP doenst work with f:ajax!

USE

p:ajax!

发布评论

评论列表(0)

  1. 暂无评论