BINPER is a binary parser library in Rust.
🔒 Implemented using 100% safe rust and works on all platforms supported by rust
bash
cargo install binper
bash
binper [BIN_FILE_PATH]
Currently, only PE file parsing is implemented
```rust use std::fs::File; use std::io::Read;
use binper::pe::pe::PE;
fn main() -> binper::error::Result<()> { let mut f = File::open("samples/pe.exe")?; let mut data = Vec::new(); f.readtoend(&mut data)?; let pe:PE = PE::new(&data)?; println!("{}", pe);
Ok(())
} ```
Windows binary PE - [x] DOS header - [x] PE header - [x] Optional header - [x] Data Directories - [x] Sections - [ ] Export, Import tables - [ ] Resources
Linux binary ELF - [ ] ELF header - [ ] Program header table - [ ] Sections
If you want to add some features, fix bugs or improve the code as defined in the MIT license, without any additional terms or conditions, I will gladly accept.
This is an alpha version.
I don't recommend you to use in your production applications.
The structure of objects can change.
binper
is distributed under the terms of the MIT license.
See LICENSE for details.
This project has been inspired by goblin project.