Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kkinos/rdelf
CLI application for parsing ELF written in Go.
https://github.com/kkinos/rdelf
cli elf-parser go
Last synced: 16 days ago
JSON representation
CLI application for parsing ELF written in Go.
- Host: GitHub
- URL: https://github.com/kkinos/rdelf
- Owner: kkinos
- License: apache-2.0
- Created: 2021-12-14T04:04:20.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-21T14:26:31.000Z (almost 3 years ago)
- Last Synced: 2024-08-13T09:48:44.000Z (5 months ago)
- Topics: cli, elf-parser, go
- Language: Go
- Homepage:
- Size: 43 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rdelf
A CLI application for parsing ELF headers written in Go.
## Install
```bash
go install github.com/kinpoko/rdelf@latest
```## Usage
```bash
rdelf -h
A CLI application for parsing ELF headers.Usage:
rdelf [file name] [flags]Flags:
--hed display elf header
-h, --help help for rdelf
-l, --progh display program headers
-S, --segh display section headers
``````bash
rdelf sample/a.out --hed
Magic: 7f 45 4c 46 2 1 1 0 0 0 0 0 0 0 0 0
Class: ELF64
Data: little endian
Version: 1
Type: A shared object
Machine: AMD x86-64
EntryPoint: 0x1060
Start of Program headers: 64 (bytes)
Start of Section headers: 14712 (bytes)
Number of Program headers: 13
Number of Section headers: 31
Section header string table index: 30```