Module elf

Module elf 

Source
Expand description

Utility to parsing ELF file.

The Executable and Linkable Format (ELF, formerly named Extensible Linking Format) is a common standard file format for executable files, object code, shared libraries, and core dumps.

ELF format An ELF file has the program header, and section headers. The program headers show the segments used at run time, whereas the section header lists the set of sections.

Structs§

ELFHeader
Represents the ELF file header.
Elf
Represents an ELF file in memory.
PFlags
Segment permission flags for ELF program headers.
Phdr
ELF program header for 64-bit binaries.
PhdrIterator
Iterator over program headers in an ELF binary.

Enums§

PType
ELF program header type.