A simple ELF format inspect tool without any dependencies.
- ELF file header (with
-h
or-a
options) - ELF sections' header (with
-S
option)
- Clone this repo to local.
# clone with https
git clone https://github.com/ghosind/readelf.git
# clone with ssh
git clone git@github.com:ghosind/readelf.git
- Run
make
to compile program.
make
NOTE: You may need to install
automake
tools before run this command.
- Run
bin/readelf
to inspect some elf-format files.
./bin/readelf -a <path_of_elf_format_file>