Home | Projects | Articles | Apophthegm | About |
PWN and RE on Parrot Security 5.0
Linux Binary Exploitation (PWN) and Reverse Engineering (RE) on Parrot Security 5.0 (Electro Ara) requires to install the following packages (software), they are pwntools, pwndbg and libc-database. Meanwhile, gdb and Ghidra are already installed on official release.
pwntools Installation
sudo apt install libssl-dev
python3 -m pip install --upgrade pip
python3 -m pip install --upgrade pwntools
pwndbg Installation
git clone https://github.com/pwndbg/pwndbg
cd pwndbg
./setup.sh
libc-database Installation (Optional)
sudo apt install jq zstd rpm2cpio
git clone https://github.com/niklasb/libc-database
cd libc-database
./get all
or
./get ubuntu debian
Samiux
OSCE OSCP OSCE
April 12, 2022, China, Hong Kong
Reference
- Parrot Security
- pwntools
- pwntools Documentation
- pwndbg
- pwndbg Documentation
- libc-database
- libc database search
- gdb
- gdb Documentation
- Ghidra
Home | Projects | Articles | Apophthegm | About |