1 stable release

3.1.0 Oct 31, 2024

#442 in Hardware support

Download history 328/week @ 2024-12-11 301/week @ 2024-12-18 296/week @ 2024-12-25 297/week @ 2025-01-01 406/week @ 2025-01-08 326/week @ 2025-01-15 321/week @ 2025-01-22 312/week @ 2025-01-29 382/week @ 2025-02-05 337/week @ 2025-02-12 307/week @ 2025-02-19 371/week @ 2025-02-26 435/week @ 2025-03-05 408/week @ 2025-03-12 329/week @ 2025-03-19 344/week @ 2025-03-26

1,577 downloads per month
Used in injected-image-checker

MIT license

645KB
12K SLoC

binwalk

A Rust implementation of the Binwalk firmware analysis tool.

System Requirements

Building requires the following system packages:

build-essential libfontconfig1-dev liblzma-dev

Example

use binwalk::Binwalk;

// Create a new Binwalk instance
let binwalker = Binwalk::new();

// Read in the data to analyze
let file_data = std::fs::read("/tmp/firmware.bin").expect("Failed to read from file");

// Scan the file data and print the results
for result in binwalker.scan(&file_data) {
    println!("{:#?}", result);
}

Dependencies

~11–21MB
~279K SLoC