服务器在每个请求上发送具有不同值的 Set-Cookie
每次我请求页面时,我们的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看起来 exUserFolder 是故意这样做的。可能是为了尝试增加更多的安全性。
It looks like exUserFolder is doing this intentionally. Probably for the purpose of attempting to add more security.
为了找出发送 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().