EatPdb icon indicating copy to clipboard operation
EatPdb copied to clipboard

Export all symbol from PDB!

EatPdb

.NET Core

Export all symbols of PE file in pdb file, so you can easily import them.

Only support x86_64 for now.

Usage

You need a config file to describe the filter

eatpdb exec config.yaml

config.yaml:

in: your.exe
out: your_mod.exe
filterdb: extra.db
filter: !blacklist
  - prefix: "_"
  - prefix: "?__"
  - prefix: "??_"
  - prefix: "??@"
  - prefix: "?$TSS"
  - regex: "std@@[QU]"
  - name: "atexit"

LICENSE

MIT