This repository contains essential scripts and references for Hack The Box (HTB) challenges, Capture The Flag (CTF) competitions, and general penetration testing tasks. It covers:
- ๐ฅ๏ธ Reverse Shells (Bash, Netcat, PHP, Socat)
- ๐ TTY Breakout Techniques
- ๐ก Nmap Scans and Protocol Information
To quickly use these scripts, you can set up aliases in your shell configuration file (~/.bashrc, ~/.zshrc, etc.).
Example Aliases Add these lines to your ~/.bashrc or ~/.zshrc:
alias revshells='cat ~/path/to/reverse_shells'
alias ttybreakout='cat ~/path/to/tty_breakout'
alias nmapref='cat ~/path/to/nmap_scans'Then reload your configuration:
source ~/.bashrc
Now you can display your scripts with:
revshells
ttybreakout
nmapref