Skip to content

Latest commit

Β 

History

History
31 lines (24 loc) Β· 872 Bytes

File metadata and controls

31 lines (24 loc) Β· 872 Bytes

πŸ“œ CTF Scripts Collection

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

⚑ Alias the Scripts for Quick Access

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