Crypto导入方式更改

This commit is contained in:
xaoyo 2023-10-07 22:06:52 +08:00
parent 67ef33f8fa
commit 92e47f217b
3 changed files with 5 additions and 3 deletions

View File

@ -12,8 +12,7 @@
该分支是[SharpWxDump](https://github.com/AdminTest0/SharpWxDump)的经过重构python语言版本同时添加了一些新的功能。
**如果觉得好用的话的话,帮忙点个[![Star](https://img.shields.io/github/stars/xaoyaoo/PyWxDump.svg?style=social&label=Star)](https://github.com/xaoyaoo/PyWxDump/)
呗**
**如果觉得好用的话的话,帮忙点个[![Star](https://img.shields.io/github/stars/xaoyaoo/PyWxDump.svg?style=social&label=Star)](https://github.com/xaoyaoo/PyWxDump/)呗**
## 二、使用方法
@ -148,6 +147,8 @@ git clone https://github.com/xaoyaoo/PyWxDump.git
* [decrypt.py](./decrypted/decrypt.py) : 数据库解密脚本
* [get_wx_decrypted_db.py](./decrypted/get_wx_decrypted_db.py) :直接读取当前登录微信的数据库解密后保存到当前目录下的decrypted文件夹中
[注]每台设备、每个微信账号对应一个key切换设备或者微信账号key都会变化
![image](https://user-images.githubusercontent.com/33925462/179410883-10deefb3-793d-4e15-8475-a74954fafe19.png)
* 解密后可拖入数据库工具查找敏感信息

View File

@ -4,6 +4,7 @@ import hashlib
import os
from Cryptodome.Cipher import AES
# from Crypto.Cipher import AES # 如果上面的导入失败,可以尝试使用这个
SQLITE_FILE_HEADER = "SQLite format 3\x00" # SQLite文件头

View File

@ -1,3 +1,3 @@
psutil
pycryptodome
pycryptodomex
pywin32