cookies.sqlite 在 Firefox 3.6 及更高版本上加密吗?
我刚刚下载了 Firefox 3.6。我有一个 Python 脚本可以读取 cookies.sqlite DB,但在 Firefox 3.6 中它无法工作。它一直告诉我数据库已加密。我卸载了 Firefox,然后找到了 3.5 版本并安装了它。现在我可以访问cookies.sqlite。我在 Python 中使用 sqlite3。
有谁知道是否可以从 Firefox 外部访问加密的 cookies.sqlite?
Possible Duplicate:
Accessing firefox cookies.sqlite Error [Solved]
I just downloaded Firefox 3.6. I have a Python script that reads my cookies.sqlite DB but it would not work after with Firefox 3.6. It kept telling me the database was encrypted. I uninstalled Firefox then found version 3.5 and installed that. Now I can access cookies.sqlite. I am using sqlite3 in Python.
Does anyone know if you can access the encrypted cookies.sqlite from outside of Firefox?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该文件未加密,但从 Firefox 3.6 开始使用独占锁打开。我怀疑 python 告诉你为什么它无法打开数据库文件的原因是错误的,但是 Firefox 附带的 SQLite 版本没有加密模块。
The file isn't encrypted, but it is opened with an exclusive lock as of Firefox 3.6. I suspect python is telling you the wrong reason as to why it cannot open the database file, but the version of SQLite that Firefox ships with does not have the encryption module.