HowToCyberSec

Where you learn about technology news and raise your Cyber IQ

Tag: wfuzz

  • Dirsearch Cheat Sheet

    Tool Overviewdirsearch is a fast command-line web path scanner written in Python. It’s used to brute-force directories and files on web servers using wordlists. Basic Usage -u: Target URL -e: Extensions to brute-force Brute-force Directories and Files Recursive Bruteforcing Custom Wordlist Filter Responses by Status Code Exclude Noisy Status Codes Use HTTP Headers (e.g. JWT,…

  • FFUF Playbook – Web Fuzzing Like a Pro

    Installation go install github.com/ffuf/ffuf/v2@latest Or precompiled:https://github.com/ffuf/ffuf/releases Basic Syntax Basic Directory Fuzzing Filter by Status Code / Size / Words -mc 200 → Match status code -fs 1234 → Filter by size -fw 20 → Filter by word count Hidden Admin Pages Detection Use targeted wordlists like Admin-Login-Pages.txt. File Extension Brute Force Or: Use Case: Discover…