Web Cheat Sheet
2024-08-08 20:37:52 # cheatsheets

Websites

Overall Reference
Information Emumeration
Helpful Tools

Tools

Information Enumeration
  • dirsearch - Directory Bruteforcing
    python3 dirsearch.py -e html -u https://target -w /path/to/wordlist
  • GitTools - .git folder enumeration
    ./gitdumper.sh https://target/.git . && ./extractor.sh . .
  • proxy.py - MITM Proxy proxy --log-level d
  • mitmproxy - MITM Proxy mitmproxy
  • Burp Suite - 👍Web Security Tool
Hash / Session Cracker
  • HashCat - Password/Hash Cracker
    hashcat -m 0 -a 0 hash.txt wordlist.txt
  • jwt-cracker - JWT Cracker
    jwtcrack -t <token> -w <wordlist>
  • Flask-Unsign - Flask Session Cracker
    flask-unsign -u -c <cookie> --wordlist <wordlist>
SQL Injection
Prev
2024-08-08 20:37:52 # cheatsheets