备份 chrome 存储的密码

备份 chrome 存储的密码

我的硬盘已损坏,但部分可用。我从 USB 笔式驱动器启动了我的 ubuntu,现在我想将 chrome 保存的密码复制到外部硬盘驱动器,以便在将 Ubuntu 重新安装到新磁盘时可以重复使用它们。

不幸的是,我无法再启动 chrone。

答案1

我刚刚写了一个脚本,可以从 Chromium 获取密码并解密。
解密部分取自https://stackoverflow.com/questions/23153159/decrypting-chromium-cookies

https://gist.github.com/sh4dowb/10a64a954e3c6af895620fa0ebc83853

运行以下命令:

wget https://gist.githubusercontent.com/sh4dowb/10a64a954e3c6af895620fa0ebc83853/raw/9b439556f09fc9d2313dd9d832c4c87804a316cc/retrieve_password.py
python3 retrieve_password.py
cat passwords.csv

然后,您可以将 CSV 文件导入到另一台机器/浏览器,我认为

笔记:我认为你使用 Chromium,如果你使用谷歌浏览器,在代码中替换Chromium Safe StorageChrome Safe Storagechromium在路径中替换为google-chrome

相关内容