Example Usage
# Clone the repository
git clone https://github.com/ByamB4/Common-CTF-Challenges.git
cd Common-CTF-Challenges

# Search for keywords
grep -r "pickle" .
grep -r "sql" web/

# Or use ripgrep (faster)
rg -n "pickle"
rg -n "sql" web/