一键即取,那些你保存在chrome上的密码
Page content
本期搬运 【github】Chrome-Password-Grabber,一款可以快速导出存储在chrome浏览器中密码的工具。支持 Mac
Linux
Windows
三平台。
🍺本篇文章大约需要20秒来阅读。届时你将学到:
- 导出个人电脑的chrome密码
0x01 环境准备
首先我们需要安装好python3环境,这里我们推荐使用miniconda以省去过分多的步骤
打开链接https://docs.conda.io/en/latest/miniconda.html
选择对应自己的系统后安装,win端记得添加自己的环境变量,然后我们将项目下载下来。
git clone https://github.com/x899/chrome_password_grabber.git
cd chrome_password_grabber
0x02 运行导出
我们可以直接运行它提供的脚本并将结果导出到一个文件当中,当然这个过程可能需要一下密码授权
python3 chrome.py | sed -n '1!p' > chrome_pwd.json
或者我们将其变成一个较为清晰的csv
from chrome import Chrome
import pathlib
import csv
chrome_pwd = Chrome()
with pathlib.Path('chrome_pwd.csv').open('w') as csvfile:
writer = csv.DictWriter(csvfile,fieldnames=['url','username','password'])
writer.writeheader()
for item in chrome_pwd.get_password(prettyprint=True)["data"]:
if item["url"]:
writer.writerow(item)
这样一来结果就存放在了 chrome_pwd
中了,由于马赛克现有较大的复现可能,结果我就不附图啦