Skip to content

Commit 1267afc

Browse files
committed
fix #61
1 parent 1720cbd commit 1267afc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
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.28"
3+
version = "1.0.29"
44
edition = "2021"
55
repository = "https://github.com/0xlane/wechat-dump-rs"
66

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.28")
7+
.version("1.0.29")
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.28"
3+
version = "1.0.29"
44
edition = "2021"
55
repository = "https://github.com/0xlane/wechat-dump-rs"
66

wxdump/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ const RULES_V4: &str = r#"
6969
rule GetUserInfoOffset
7070
{
7171
strings:
72-
$a = /(.{16}[\x00-\x20]\x00{7}(\x0f|\x1f)\x00{7}){2}.{16}[\x01-\x20]\x00{7}(\x0f|\x1f)\x00{7}[0-9]{11}\x00{5}\x0b\x00{7}\x0f\x00{7}.{25}\x00{7}(\x2f|\x1f|\x0f)\x00{7}/s
72+
$a = /(.{16}[\x00-\x20]\x00{7}(\x0f|\x1f)\x00{7}){2}.{16}[\x01-\x20]\x00{7}(\x0f|\x1f)\x00{7}[0-9]{11}\x00{5}\x0b\x00{7}\x0f\x00{7}.{25}\x00{7}(\x3f|\x2f|\x1f|\x0f)\x00{7}/s
7373
condition:
7474
$a
7575
}

0 commit comments

Comments
 (0)