Goblin is an impish, cross-platform binary parsing crate, written in Rust. It supports:
Usage
rustc 1.31.1.Cargo.toml[dependencies]
goblin = “0.1”
libgoblin aims to be your one-stop shop for binary parsing, loading, and analysis.
Goblin primarily supports the following important use cases:
#[repr(C)] structs, tiny compile time, 32/64 (or both) at your leisure.examples/automagic.rs for a basic example.std mode. This throws in read and write impls via Pread and Pwrite, reading from file, convenience allocations, extra methods, etc. This is for clients who can allocate and want to read binaries off disk.Endian_fd. A truly terrible name this is for binary analysis like in panopticon or falcon which needs to read binaries of foreign endianness, or as a basis for constructing cross platform foreign architecture binutils, e.g. cargo-sym and bingrep are simple examples of this, but the sky is the limit.Here are some things you could do with this crate (or help to implement so they could be done):
Pwrite derived).no_std cfg. I.e., it is essentially just struct and const defs (like a C header) – no fd, no output, no std.libgoblin is designed to be massively configurable. The current flags are:
repr(C) struct defsrepr(C) struct defsrepr(C) struct defsrepr(C) struct defsrepr(C) struct defsrepr(C) struct defsno_std environmentsModules
| archive | Implements a simple parser and extractor for a Unix Archive. |
| container | Binary container size information and byte-order context |
| elf | The generic ELF module, which gives access to ELF constants and other helper functions, which are independent of ELF bithood. Also defines an Elf struct which implements a unified parser that returns a wrapped Elf64 or Elf32 binary. |
| elf32 | The ELF 32-bit struct definitions and associated values, re-exported for easy “type-punning” |
| elf64 | The ELF 64-bit struct definitions and associated values, re-exported for easy “type-punning” |
| error | A custom Goblin error |
| mach | The Mach-o, mostly zero-copy, binary format parser and raw struct definitions |
| pe | A PE32 and PE32+ parser |
| strtab | A byte-offset based string table. Commonly used in ELF binaries, Unix archives, and even PE binaries. |
General Working of a Web Application Firewall (WAF) A Web Application Firewall (WAF) acts as…
How to Send POST Requests Using curl in Linux If you work with APIs, servers,…
If you are a Linux user, you have probably seen commands like chmod 777 while…
Vim and Vi are among the most powerful text editors in the Linux world. They…
Working with compressed files is a common task for any Linux user. Whether you are…
In the digital era, an email address can reveal much more than just a contact…