LinuxCommandLibrary

pwn

Exploit Development Library designed for rapid prototyping.

TLDR

Convert the given assembly code to bytes

$ pwn asm "[xor edi, edi]"
copy


Create a cyclic pattern of the specific number of characters
$ pwn cyclic [number]
copy


Encode the given data into the hexadecimal system
$ pwn hex [deafbeef]
copy


Decode the given data from hexadecimal
$ pwn unhex [6c4f7645]
copy


Print a x64 Linux shellcode for running a shell
$ pwn shellcraft [amd64.linux.sh]
copy


Check the binary security settings for the given ELF file
$ pwn checksec [path/to/file]
copy


Check for Pwntools updates
$ pwn update
copy


Display version
$ pwn version
copy

Copied to clipboard