barabadzhi / binpatch

Binary patching for Rust

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

binpatch Build Status Latest Version Maintenance

Binary patching for Rust

Usage

extern crate binpatch;

use binpatch::Patch;

fn main() {
    Patch::new()
        .file("lib.so")
        .replace(b"FF", b"CC")
        .output("lib.patched.so")
        .execute()
        .unwrap();
}

Contributing

All sorts of contributions are warmly welcomed.

There is no special restricted form for those willing to contribute to this project.

You can start contributing by filing an issue or forking this repository.

License

MIT

About

Binary patching for Rust

License:MIT License


Languages

Language:Rust 100.0%