Skip to content

VincentKobz/simple-readelf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SIMPLE-READELF

A simple readelf program that does basic things to analyse and display information about ELF files.

Get Started

Run make in order to compile the program.

$ make

Run make debug in order to compile the program with debug information and fsanitize active.

$ make debug

How it works ?

The name of the output program is simple-readelf.

  • Display header
$ ./simple-readelf -h <elf_file>
  • Display program headers
$ ./simple-readelf -P <elf_file>
  • Display section headers
$ ./simple-readelf -S <elf_file>
  • Display symbol table
$ ./simple-readelf -s <elf_file>
  • Display dynamic sections
$ ./simple-readelf -d <elf_file>
  • Display all
$ ./simple-readelf -a <elf_file>

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors