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" |