pwnkit 0.1.0

CTF exploit development toolkit — pwntools, rewritten in Rust
Documentation
  • Coverage
  • 35.77%
    49 out of 137 items documented5 out of 86 items with examples
  • Size
  • Source code size: 81.49 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 8.11 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 23s Average build duration of successful builds.
  • all releases: 23s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Pribess/PwnKit
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • Pribess

PwnKit — CTF exploit development toolkit, rewritten in Rust.

use pwnkit::*;
use pwnkit::tubes::Tube;

fn main() -> Result<()> {
    context::set_arch(Arch::Amd64);

    let mut io = remote("localhost", 1337)?;
    io.recv_until(b"> ", true)?;
    io.sendline(&p64(0xdeadbeef));
    io.interactive()?;

    Ok(())
}