We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c936639 commit 73b693bCopy full SHA for 73b693b
README.md
@@ -8,8 +8,25 @@ Only support x86_64 for now.
8
9
## Usage
10
11
+You need a config file to describe the filter
12
+
13
+```bash
14
+eatpdb exec config.yaml
15
```
-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"
30
31
32
## LICENSE
0 commit comments