from pwn import *
The most common way that you’ll see pwntools used is
>>> from pwn import *
Which imports a bazillion things into the global namespace to make your life easier.
This is a quick list of most of the objects and routines imported, in rough order of importance and frequency of use.
pwnlib.contextResponsible for most of the pwntools convenience settings
Set context.log_level = ‘debug’ when troubleshooting your exploit
Scope-aware, so you can disable logging for a subsection of code via
ContextType.local()
remote,listen,ssh,processSuper convenient wrappers around all of the common functionality for CTF challenges
Connect to anything, anywhere, and it works the way you want it to
Helpers for common tasks like
recvline,recvuntil,clean, etc.Interact directly with the application via
.interactive()
p32andu32Useful functions to make sure you never have to remember if
'>'means signed or unsigned forstruct.pack, and no more ugly[0]index at the end.Set
signedandendianin sane manners (also these can be set once oncontextand not bothered with again)Most common sizes are pre-defined (
u8,u64, etc), andpwnlib.util.packing.pack()lets you define your own.
logMake your output pretty!
cyclicandcyclic_funcUtilities for generating strings such that you can find the offset of any given substring given only N (usually 4) bytes. This is super useful for straight buffer overflows. Instead of looking at 0x41414141, you could know that 0x61616171 means you control EIP at offset 64 in your buffer.
asmanddisasmQuickly turn assembly into some bytes, or vice-versa, without mucking about
Supports any architecture for which you have a binutils installed
Over 20 different architectures have pre-built binaries at ppa:pwntools/binutils.
shellcraftLibrary of shellcode ready to go
asm(shellcraft.sh())gives you a shellTemplating library for reusability of shellcode fragments
ELFELF binary manipulation tools, including symbol lookup, virtual memory to file offset helpers, and the ability to modify and save binaries back to disk
DynELFDynamically resolve functions given only a pointer to any loaded module, and a function which can leak data at any address
ROPpwnlib.ropAutomatically generate ROP chains using a DSL to describe what you want to do, rather than raw addresses
gdb.debugandgdb.attachLaunch a binary under GDB and pop up a new terminal to interact with it. Automates setting breakpoints and makes iteration on exploits MUCH faster.
Alternately, attach to a running process given a PID,
pwnlib.tubesobject, or even just a socket that’s connected to it
argsDictionary containing all-caps command-line arguments for quick access
Run via
python foo.py REMOTE=1andargs['REMOTE'] == '1'.- Can also control logging verbosity and terminal fanciness
NOTERM
SILENT
DEBUG
randoms,rol,ror,xor,bitsUseful utilities for generating random data from a given alphabet, or simplifying math operations that usually require masking off with 0xffffffff or calling ord and chr an ugly number of times
netRoutines for querying about network interfaces
procRoutines for querying about processes
pauseIt’s the new
getch
safeevalFunctions for safely evaluating python code without nasty side-effects.
These are all pretty self explanatory, but are useful to have in the global namespace.
hexdumpreadandwriteenhexandunhexmoregroupalignandalign_downurlencodeandurldecodewhichwget
Additionally, all of the following modules are auto-imported for you. You were going to do it anyway.
ossystimerequestsrerandom