Skip to content

Commit

Permalink
v1.0.11
Browse files Browse the repository at this point in the history
- Update the algorithm for searching db key.
- Update and remove some dependencies.
- Fix some other issues.
  • Loading branch information
0xlane committed Nov 13, 2024
1 parent 8b9911e commit 915f764
Show file tree
Hide file tree
Showing 4 changed files with 626 additions and 143 deletions.
25 changes: 18 additions & 7 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "wechat-dump-rs"
version = "1.0.10"
version = "1.0.11"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -20,11 +20,22 @@ hex = "0.4.3"
hmac = "0.12.1"
pbkdf2 = { version = "0.12.2", features = ["sha1", "sha2"] }
sha1 = "0.10.5"
tasklist = "0.2.13"
windows = { version = "0.51.1", features = ["implement", "Win32_Security", "Win32_System_WindowsProgramming", "Win32_System_Com", "Win32_System_Memory", "Win32_System_Threading", "Win32_Foundation", "Win32_System_ProcessStatus", "Win32_System_Diagnostics_Debug"] }
yara = { version = "0.21.0", features = ["yara-static", "vendored"] }
rayon = "1.8"
windows = { version = "0.58.0", features = [
"implement",
"Win32_Security",
"Win32_System_WindowsProgramming",
"Win32_System_Com",
"Win32_System_Memory",
"Win32_System_Threading",
"Win32_Foundation",
"Win32_System_ProcessStatus",
"Win32_System_Diagnostics_Debug",
"Win32_System_Diagnostics_ToolHelp",
"Wdk_System_Threading",
"Win32_System_Kernel",
"Win32_Storage_FileSystem"
] }
yara = { version = "0.29.0", features = ["yara-static", "vendored"] }
rayon = "1.10"
sha2 = "0.10.8"
threadpool = "1.8.1"
num_cpus = "1.16.0"
regex = "1.11.1"
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
## 工具用法

```bash
wechat-dump-rs (1.0.10) - REinject
wechat-dump-rs (1.0.11) - REinject
A wechat db dump tool
Options:
-p, --pid <PID> pid of wechat
Expand All @@ -19,7 +19,7 @@ Options:
-d, --data-dir <PATH> special wechat data dir path (pid is required)
-o, --output <PATH> decrypted database output path
-a, --all dump key and decrypt db files
-v <VERSION> decrypt 4.0 db files [default: 4] [possible values: 3, 4]
--vv <VERSION> wechat db file version [default: 4] [possible values: 3, 4]
-h, --help Print help
```

Expand Down
Loading

0 comments on commit 915f764

Please sign in to comment.