https://github.com/berrysoft/symdep
A simple tool to view the import & export symbols of executable.
https://github.com/berrysoft/symdep
Last synced: 9 months ago
JSON representation
A simple tool to view the import & export symbols of executable.
- Host: GitHub
- URL: https://github.com/berrysoft/symdep
- Owner: Berrysoft
- License: mit
- Created: 2021-02-08T06:36:03.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2025-06-05T09:27:09.000Z (about 1 year ago)
- Last Synced: 2025-06-05T10:19:31.918Z (about 1 year ago)
- Language: Rust
- Size: 44.9 KB
- Stars: 8
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# SymDep
A simple tool to view the import & export symbols of executable.
## Usage
``` sh
# Show dependencies
$ symdep -d
# Show import symbols
$ symdep -i
# Show import symbols group by dependencies
$ symdep -id
# Show export symbols
$ symdep -e
```
## Support binary types
It uses `goblin` package to read the binaries.
* ELF(32, 64)
* PE(32, 32+)
* MachO/Fat MachO
## Note for ELF
ELF doesn't require a symbol should be found in a specific library for convience.
Therefore, `symdep` tries to do the same as `ld.so` to find the libraries for the symbols.