Skip to content

Commit 73b693b

Browse files
committed
fix README
1 parent c936639 commit 73b693b

File tree

1 file changed

+18
-1
lines changed

1 file changed

+18
-1
lines changed

README.md

Lines changed: 18 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,25 @@ Only support x86_64 for now.
88

99
## Usage
1010

11+
You need a config file to describe the filter
12+
13+
```bash
14+
eatpdb exec config.yaml
1115
```
12-
eatpdb -i your.exe -o your_mod.exe -p your.pdb --DllName your_mod.exe
16+
17+
config.yaml:
18+
19+
```yaml
20+
in: your.exe
21+
out: your_mod.exe
22+
filter: !blacklist
23+
- prefix: "_"
24+
- prefix: "?__"
25+
- prefix: "??_"
26+
- prefix: "??@"
27+
- prefix: "?$TSS"
28+
- regex: "std@@[QU]"
29+
- name: "atexit"
1330
```
1431
1532
## LICENSE

0 commit comments

Comments
 (0)