Created
December 5, 2025 03:06
-
-
Save Jerit3787/2cda2b3a62517109cb8f50e5a2254a62 to your computer and use it in GitHub Desktop.
Install script for HTB - Intro to PWN talk 05/12/2025
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| set -e #Exit on error | |
| echo "=== Installing GDB and pwndbg on Kali Linux" | |
| sudo apt update | |
| sudo apt install -y gdb | |
| sudo apt install -y python3 python3-pip python3-dev git libglib2.0-dev libc6-dbg libssl-dev libffi-dev build-essential | |
| curl -qsL 'https://install.pwndbg.re' | sh -s -- -t pwndbg-gdb | |
| echo "=== Installing ghidra on Kali Linux" | |
| sudo apt install ghidra -y | |
| echo "=== Installing pwntools on Kali Linux" | |
| sudo apt install python3-pwntools | |
| echo "=== Installing checksec on Kali Linux" | |
| sudo apt install checksec |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment