如何保护 CFID 以实现 PCI 合规性?

编程入门 行业动态 更新时间:2024-10-27 12:27:18
本文介绍了如何保护 CFID 以实现 PCI 合规性?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

我们一直未能通过 PCI 扫描,因为 ColdFusion 具有可预测的 CFID.我们得到的确切 FAIL 是Predictable Cookie Session IDs".现在 CFTOKEN 不再可预测,因为我已将 CF 配置为对 CFTOKEN 使用 UUID,但是,CFID 仍然是可预测的,并且不受 CF Admin 中的任何更改的影响.

We've been failing our PCI scans because ColdFusion has predictable CFIDs. The exact FAIL we get is "Predictable Cookie Session IDs". Now the CFTOKEN is no longer predictable since I've configured CF to use UUID for CFTOKEN, however, the CFID is still predictable and unaffected by any changes in CF Admin.

我真的不知道为什么可预测的 CFID 是一种威胁,但他们希望我们修复它.

I don't really know why the CFID being predictable is a threat, but they want us to fix it.

我无法通过谷歌搜索找到任何关于此事的信息,我真的不知道还能做什么.

I have been unable to find anything on the matter by googeling, and I'm really not sure what else to do.

有没有其他人处理过这样的事情?有什么建议?

Has anyone else dealt with something like this? Any suggestions?

这是我的 Application.cfc 文件的样子:

Here is what my Application.cfc file looks like:

<cfcomponent output="false"> <cfset this.name="DatabaseOnline"> <cfset this.sessionManagement=true> <cfset this.setDomainCookies=true> <cfset this.setClientCookies=true> <cfset this.sessionTimeOut=#CreateTimeSpan(0,20,0,0)#> </cfcomponent>

我的 CF 管理员看起来像这样:i.imgur/k9OZH.png

And my CF admin looks like this: i.imgur/k9OZH.png

那么如何禁用 CFID?

So how do I disable CFID?

推荐答案

使用 J2EE 会话变量应该可以解决这个问题.

Using J2EE session variables should address that problem.

为此,请转到 CF 管理员.服务器设置 --> 内存变量并选中使用 J2EE 会话变量"复选框.

To do that go to CF Administrator. Server Settings --> Memory Variables and check the 'Use J2EE session variables' check box.

您可以在此处找到更多信息 helpx.adobe/coldfusion/kb/predictable-cookie-session-ids-reported.html

You can find some more information here helpx.adobe/coldfusion/kb/predictable-cookie-session-ids-reported.html

更多推荐

如何保护 CFID 以实现 PCI 合规性?

本文发布于:2023-08-01 16:48:07,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1269966.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:CFID   PCI

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!