File tree Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Expand file tree Collapse file tree 5 files changed +6
-5
lines changed Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " wechat-dump-rs"
3
- version = " 1.0.30 "
3
+ version = " 1.0.31 "
4
4
edition = " 2021"
5
5
repository = " https://github.com/0xlane/wechat-dump-rs"
6
6
Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ wechat-dump-rs.exe -k xxxxxxxxxxxxxxxxx -f c:\users\xxxx\xxxx\contact.db -r --vv
95
95
- 4.0.1.17
96
96
- 4.0.1.21
97
97
- 4.0.2.17
98
+ - 4.0.3.22
98
99
99
100
## 库表结构
100
101
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ fn cli() -> clap::Command {
4
4
use clap:: { arg, value_parser, Command } ;
5
5
6
6
Command :: new ( "wechat-dump-rs" )
7
- . version ( "1.0.30 " )
7
+ . version ( "1.0.31 " )
8
8
. about ( "A wechat db dump tool" )
9
9
. author ( "REinject" )
10
10
. help_template ( "{name} ({version}) - {author}\n {about}\n {all-args}" )
Original file line number Diff line number Diff line change 1
1
[package ]
2
2
name = " wxdump"
3
- version = " 1.0.30 "
3
+ version = " 1.0.31 "
4
4
edition = " 2021"
5
5
repository = " https://github.com/0xlane/wechat-dump-rs"
6
6
Original file line number Diff line number Diff line change @@ -680,11 +680,11 @@ rule GetKeyAddrStub
680
680
const PAGE_SIZE : usize = 4096 ;
681
681
const ROUND_COUNT : u32 = 256000 ;
682
682
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" ) ;
684
684
let mut db_file = std:: fs:: File :: open ( & db_file_path)
685
685
. expect ( format ! ( "{} is not exsit" , db_file_path. display( ) ) . as_str ( ) ) ;
686
686
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" ) ;
688
688
689
689
// HMAC_SHA512算法比较耗时,使用多线程跑
690
690
let n_job = pre_addresses. len ( ) ;
You can’t perform that action at this time.
0 commit comments