4

基于 IBM App Scan DSAT 测试,我们发现 primefaces.download 的加密会话 (SSL) Cookie 中缺少安全属性问题。

Primefaces 版本是 7.0

示例示例:https ://www.primefaces.org/showcase/ui/data/dataexporter/basic.xhtml

primefaces.download - 当我们下载文件时设置此 cookie

我们已经在 web.xml 中有 session-config,但是当我签入 chrome 时,primefaces.download cookie 没有设置为 http-only 和secured。

在 JBOSS 7.2 上运行它时还需要做些什么吗?

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" id="WebApp_ID" version="3.0">

..........

<session-config>
    <cookie-config>
        <http-only>true</http-only>
        <secure>true</secure>
    </cookie-config>
    <tracking-mode>COOKIE</tracking-mode>
</session-config>

在此处输入图像描述

更新: 提出的问题 https://github.com/primefaces/primefaces/issues/6040

4

1 回答 1

1

已提交修复 9.0-SNAPSHOT 中问题的拉取请求。

https://github.com/primefaces/primefaces/pull/6041

于 2020-06-17T02:01:24.550 回答