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. |
Kali Linux 2024.4, the final release of 2024, brings a wide range of updates and…
This Go program applies a lifetime patch to PowerShell to disable ETW (Event Tracing for…
GPOHunter is a comprehensive tool designed to analyze and identify security misconfigurations in Active Directory…
Across small-to-medium enterprises (SMEs) and managed service providers (MSPs), the top priority for cybersecurity leaders…
The free and open-source security platform SecHub, provides a central API to test software with…
Don't worry if there are any bugs in the tool, we will try to fix…