Tools in picoCTF
- catagory
- tool
- format
- link(s)
- if anything below format is empty / incomplete its probs coz i havent used it enough or forgot
- description if applicable
- sub notes
- end with a RTFM for any more info coz if you need any more info it could be outdated this is just to quick remember things exist / how to download it
- sub notes
- description if applicable
- format
- tool
- General Exploit tools
- pwntools
- Python, CLI
- https://docs.pwntools.com/en/stable/
- pwntools is a CTF framework and exploit development library. Written in Python, it is designed for rapid prototyping and development, and intended to make exploit writing as simple as possible.
- if you do
import pwn
orfrom pwn import *
, you will have access to everything you need to write an exploit. - Pwntools is best supported on 64-bit Ubuntu LTS releases (14.04, 16.04, 18.04, and 20.04). Most functionality should work on any Posix-like distribution (Debian, Arch, FreeBSD, OSX, etc.). so get ready to use wsl or a linux machine :D
- if you must use python 2 u need a specific version of pip
$ apt-get update $ apt-get install python python-pip python-dev git libssl-dev libffi-dev build-essential $ python2 -m pip install --upgrade pip==20.3.4 $ python2 -m pip install --upgrade pwntools
- otherwise python 3 works as normal
$ apt-get update $ apt-get install python3 python3-pip python3-dev git libssl-dev libffi-dev build-essential $ python3 -m pip install --upgrade pip $ python3 -m pip install --upgrade pwntools
- When installed with
sudo
the above commands will install Pwntools’ command-line tools to somewhere like/usr/bin
. An error will occur, so add~/.local/bin
to your$PATH
environment variable.
- if you must use python 2 u need a specific version of pip
- heres a link to the tutuorial https://docs.pwntools.com/en/stable/intro.html#tutorials
- if you do
- pwntools is a CTF framework and exploit development library. Written in Python, it is designed for rapid prototyping and development, and intended to make exploit writing as simple as possible.
- https://docs.pwntools.com/en/stable/
- Python, CLI
- pwntools
- Disk Analasys
- Autopsy
- GUI
- GUI
- Sleuthkit
- Autopsy