Skip to content

Commit

Permalink
Support decryption for weixin v4.0.0.26. (#23)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xlane committed Nov 12, 2024
1 parent e7944af commit 6cb87dc
Show file tree
Hide file tree
Showing 2 changed files with 580 additions and 89 deletions.
11 changes: 7 additions & 4 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.9"
version = "1.0.10"
edition = "2021"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
Expand All @@ -18,10 +18,13 @@ cbc = "0.1.2"
clap = "4.4.3"
hex = "0.4.3"
hmac = "0.12.1"
pbkdf2 = { version = "0.12.2", features = ["sha1"] }
regex = "1.9.5"
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"
rayon = "1.8"
sha2 = "0.10.8"
threadpool = "1.8.1"
num_cpus = "1.16.0"
regex = "1.11.1"
Loading

0 comments on commit 6cb87dc

Please sign in to comment.