服务器在每个请求上发送具有不同值的 Set-Cookie

发布于 2024-10-14 19:36:11 字数 140 浏览 4 评论 0原文

每次我请求页面时,我们的 Zope 服务器都会为同一个 cookie 发送不同的值。我不知道为什么它会这样做。听起来这是故意的还是我们遇到的配置错误问题?似乎只有在有人登录后才开始执行此操作。

看起来我们正在使用的可扩展用户文件夹插件负责执行此操作。

Our Zope server is sending a different value for the same cookie every time I request a page. I'm not sure why it would be doing this. Does it sound like it would be intentional or a misconfiguration issue we have? It seems to only start doing this after someone logs in.

It looks like the Extensible User Folder add-on we are using is responsible for doing it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

云淡月浅 2024-10-21 19:36:11

看起来 exUserFolder 是故意这样做的。可能是为了尝试增加更多的安全性。

It looks like exUserFolder is doing this intentionally. Probably for the purpose of attempting to add more security.

放赐 2024-10-21 19:36:11

为了找出发送 cookie 的违规软件,我建议在 ZPublisher setCookie() 方法中添加调试器调用。至少会有一条调试消息告诉您何时发送 cookie。如果有必要,您可以使用 pdb.set_trace() 调查调用堆栈,以找出实际调用 setCookie() 的代码。

In order to figure out offending software sending cookies I suggest to add a debugger call into the ZPublisher setCookie() method. At least a debugging message will tell you when a cookie is send. And if necessary you can investigate with pdb.set_trace() the call stack to figure out the code actually calling setCookie().

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文