Module pwntools::process[][src]

Expand description

Give you an easy interaction with an executable launched as a child process.

Example

use pwntools::process::Process;

let mut conn = Process::new(&"./some_binary")?;
conn.send(&b"x".repeat(32))?;
conn.send(&0x1337beef_u64.to_le_bytes())?;
conn.interactive()?;

Structs

Traits