An open API service indexing awesome lists of open source software.

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.

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.