rust_pwntools 0.1.0

A Rust crate inspired by Pwntools, providing powerful tools for binary exploitation, reverse engineering, and CTF challenges.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod process;
pub mod network;
pub mod binary;
pub mod exploit;
pub mod memory;
pub mod utils;
pub mod elf;

pub use process::Process;
pub use network::Remote;
pub use binary::Binary;
pub use exploit::RopChain;
pub use memory::Memory;
pub use elf::ElfFile;