Checks Status Deploy Status

pwninit

A tool for automating starting binary exploit challenges

Features

Usage

Short version

Run pwninit

Long version

Run pwninit in a directory with the relevant files and it will detect which ones are the binary, libc, and linker. If the detection is wrong, you can specify the locations with --bin, --libc, and --ld.

Custom solve.py template

If you don't like the default template, you can use your own. Just specify --template-path <path>. Check template.py for the template format. The names of the exe, libc, and ld bindings can be customized with --template-bin-name, --template-libc-name, and --template-ld-name.

Persisting custom solve.py

You can make pwninit load your custom template automatically by adding an alias to your ~/.bashrc.

Example

bash alias pwninit='pwninit --template-path ~/.config/pwninit-template.py --template-bin-name e'

Install

Arch Linux

Install pwninit or pwninit-bin from the AUR.

Download

You can download statically-linked musl binaries from the releases page.

Using cargo

Run

sh cargo install pwninit

This places the binary in ~/.cargo/bin.

Note that openssl, liblzma, and pkg-config are required for the build.

Example

```sh $ ls hunter libc.so.6 readme

$ pwninit bin: ./hunter libc: ./libc.so.6

setting ./hunter executable fetching linker https://launchpad.net/ubuntu/+archive/primary/+files//libc62.23-0ubuntu10i386.deb unstripping libc https://launchpad.net/ubuntu/+archive/primary/+files//libc6-dbg2.23-0ubuntu10i386.deb setting ./ld-2.23.so executable copying ./hunter to ./hunterpatched running patchelf on ./hunterpatched writing solve.py stub

$ ls hunter hunter_patched ld-2.23.so libc.so.6 readme solve.py ```

solve.py:

```python

!/usr/bin/env python3

from pwn import *

exe = ELF("./hunter_patched") libc = ELF("./libc.so.6") ld = ELF("./ld-2.23.so")

context.binary = exe

def conn(): if args.LOCAL: r = process([exe.path]) if args.DEBUG: gdb.attach(r) else: r = remote("addr", 1337)

return r

def main(): r = conn()

# good luck pwning :)

r.interactive()

if name == "main": main() ```