Skip to content

Instantly share code, notes, and snippets.

View Jerit3787's full-sized avatar
๐Ÿ˜

Danish Hakim Jerit3787

๐Ÿ˜
View GitHub Profile
@Jerit3787
Jerit3787 / install-htb-tools.sh
Created December 5, 2025 03:06
Install script for HTB - Intro to PWN talk 05/12/2025
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"