8000 GitHub - halloweeks/elf-info: ARM64 ELF Section Info Tool: A lightweight C program (elf.c) that extracts and displays information about sections in ARM64 ELF binaries, including section names, offsets, and sizes. Ideal for analyzing binary structure and layout.
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

ARM64 ELF Section Info Tool: A lightweight C program (elf.c) that extracts and displays information about sections in ARM64 ELF binaries, including section names, offsets, and sizes. Ideal for analyzing binary structure and layout.

License

Notifications You must be signed in to change notification settings

halloweeks/elf-info

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

ELF Section Info Tool

This simple C program (elf.c) extracts information about ELF binary sections, specifically designed for ARM64 architecture. It prints section names, offsets, and sizes.

Build Instructions

Ensure you have the necessary dependencies installed (e.g., gcc). Then, follow these steps to build the program:

gcc -o elf_section_info elf.c

Usage

ARM64 Binary Support

Make sure to use ARM64 ELF binaries with this tool.

Example

Run the program with the ARM64 ELF binary as an argument:

./elf_section_info <your_arm64_binary>

The program will output information about each section, including section name, offset from the start of the binary, and size.

Note

If a section has an empty name (""), it will be displayed as:

section 'NULL' offset 0, size 0

Example Output

section: '<section_name>' offset: 0x<offset>, size: <size>
section: 'text' offset: 0x1000, size: 4096
section: 'data' offset: 0x5000, size: 1024
section 'NULL' offset 0, size 0
...

About

ARM64 ELF Section Info Tool: A lightweight C program (elf.c) that extracts and displays information about sections in ARM64 ELF binaries, including section names, offsets, and sizes. Ideal for analyzing binary structure and layout.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0