Skip to content

Commit 891d2d0

Browse files
committed
fix #67
1 parent da36fef commit 891d2d0

File tree

5 files changed

+6
-5
lines changed

5 files changed

+6
-5
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wechat-dump-rs"
3-
version = "1.0.30"
3+
version = "1.0.31"
44
edition = "2021"
55
repository = "https://github.com/0xlane/wechat-dump-rs"
66

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ wechat-dump-rs.exe -k xxxxxxxxxxxxxxxxx -f c:\users\xxxx\xxxx\contact.db -r --vv
9595
- 4.0.1.17
9696
- 4.0.1.21
9797
- 4.0.2.17
98+
- 4.0.3.22
9899

99100
## 库表结构
100101

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ fn cli() -> clap::Command {
44
use clap::{arg, value_parser, Command};
55

66
Command::new("wechat-dump-rs")
7-
.version("1.0.30")
7+
.version("1.0.31")
88
.about("A wechat db dump tool")
99
.author("REinject")
1010
.help_template("{name} ({version}) - {author}\n{about}\n{all-args}")

wxdump/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "wxdump"
3-
version = "1.0.30"
3+
version = "1.0.31"
44
edition = "2021"
55
repository = "https://github.com/0xlane/wechat-dump-rs"
66

wxdump/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -680,11 +680,11 @@ rule GetKeyAddrStub
680680
const PAGE_SIZE: usize = 4096;
681681
const ROUND_COUNT: u32 = 256000;
682682
let mut db_file_path = PathBuf::from(data_dir.clone());
683-
db_file_path.push(r"db_storage\biz\biz.db");
683+
db_file_path.push(r"db_storage\contact\contact.db");
684684
let mut db_file = std::fs::File::open(&db_file_path)
685685
.expect(format!("{} is not exsit", db_file_path.display()).as_str());
686686
let mut buf = [0u8; PAGE_SIZE];
687-
db_file.read(&mut buf[..]).expect("read biz.db is failed");
687+
db_file.read(&mut buf[..]).expect("read contact.db is failed");
688688

689689
// HMAC_SHA512算法比较耗时,使用多线程跑
690690
let n_job = pre_addresses.len();

0 commit comments

Comments
 (0)