offensive-tools/recon/feroxbuster/SKILL.md
Fast, recursive web content discovery tool written in Rust. Use when asked to enumerate web directories recursively, find hidden files/endpoints, fuzz a web application, or when a deep recursive scan is needed that gobuster doesn't handle natively.
npx skillsauth add aeondave/malskill feroxbusterInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Recursive, fast content discovery — handles JavaScript-rendered apps and auto-recurses into found dirs.
# Basic scan
feroxbuster -u http://example.com -w /usr/share/wordlists/dirb/common.txt
# With extensions
feroxbuster -u http://example.com -w common.txt -x php,html,txt
# No recursion (flat scan)
feroxbuster -u http://example.com -w common.txt --no-recursion
| Flag | Description |
|------|-------------|
| -u <url> | Target URL |
| -w <wordlist> | Wordlist (use - to read stdin) |
| -x <ext> | File extensions comma-separated |
| -t <n> | Threads (default 50) |
| -d <n> | Recursion depth (default 4, 0 = unlimited) |
| --no-recursion | Disable recursion |
| -s <codes> | Status codes to match (default 200,204,301,302,307,308,401,403,405) |
| -C <codes> | Filter/exclude status codes |
| -S <size> | Filter by response size |
| -W <words> | Filter by word count |
| -L <lines> | Filter by line count |
| -H <header> | Custom HTTP header |
| -b <cookie> | Cookie value |
| -k | Disable TLS verification |
| -r | Follow redirects |
| --proxy <url> | HTTP/SOCKS5 proxy |
| -o <file> | Output file |
| -q | Quiet (no progress bar) |
| --json | JSON output |
| --auto-tune | Automatically slow down on errors |
| --smart-auto-tune | Only slow on 429/503 |
| --collect-words | Collect words from responses for wordlist mutation |
| --collect-backups | Also request common backup file extensions |
| --collect-extensions | Collect extensions from responses |
| --resume-from <state> | Resume from a previous scan state file |
| --extract-links | Extract links from HTML and add to queue |
| --scan-limit <n> | Max concurrent scans (for recursion) |
| --time-limit <dur> | Max time limit (e.g., 10m) |
| -A | Random User-Agent per request |
| --dont-filter | Disable auto-filter of wildcard responses |
# Filter out 404 and 302
feroxbuster -u http://target.com -w common.txt -C 404,302
# Filter by response size (hide 0-byte responses)
feroxbuster -u http://target.com -w common.txt -S 0
# Show only 200 responses
feroxbuster -u http://target.com -w common.txt -s 200
# Recursive scan with extensions, output to file
feroxbuster -u https://target.com -w raft-medium.txt -x php,bak,conf -o results.txt
# API endpoint discovery (JSON-focused)
feroxbuster -u https://api.target.com -w api-endpoints.txt -x json -H "Accept: application/json"
# Authenticated scan
feroxbuster -u https://target.com -w common.txt -H "Authorization: Bearer TOKEN"
# Behind proxy (Burp)
feroxbuster -u http://target.com -w common.txt --proxy http://127.0.0.1:8080 -k
# Fast aggressive scan
feroxbuster -u http://target.com -w big.txt -t 100 --no-recursion -d 1
# Scan multiple URLs from file
feroxbuster --stdin -w common.txt < urls.txt
# Link extraction (spider + brute)
feroxbuster -u https://target.com -w common.txt --extract-links
# Smart collect mode (mutate wordlist from response)
feroxbuster -u https://target.com -w common.txt --collect-words --collect-extensions
# Time-boxed scan
feroxbuster -u https://target.com -w big.txt --time-limit 5m
# Resume interrupted scan
feroxbuster --resume-from ferox-target-state.json
# Set defaults to avoid repeating flags
wordlist = "/usr/share/seclists/Discovery/Web-Content/raft-medium-directories.txt"
threads = 50
timeout = 10
status_codes = [200, 204, 301, 302, 307, 401, 403]
filter_status = [404]
auto_tune = true
collect_words = true
extract_links = true
user_agent = "Mozilla/5.0 (compatible; feroxbuster)"
While running, press:
Enter — display current states — stop a specific URL scanq / Ctrl+C — quit| File | When to load |
|------|--------------|
| references/filters.md | Detailed filter flag combinations, size/word/line-based noise reduction |
data-ai
Scoped routing: Linux operator; hosts, sessions, users, services, packages, logs, containers, SSH, network paths, privilege evidence.
development
Offensive methodology for ICS/OT/SCADA environments in authorized industrial penetration testing and red team operations. Use when assessing PLCs, RTUs, HMIs, engineering workstations, historians, or field devices running Modbus, DNP3, EtherNet/IP, S7comm/S7+, Profinet, IEC 60870-5-104, BACnet, or OPC-UA. Covers passive OT network enumeration, protocol-level device interrogation, PLC coil/register read-write attacks, HMI session exploitation, historian and engineering workstation compromise, and safe escalation rules for critical infrastructure scope. Does not cover: general IT network exploitation (network-technique), physical hardware interfaces UART/JTAG/SPI (hardware-technique), wireless sensor network attacks (wireless-technique), RF/SDR signal analysis (hardware-ctf or wireless-technique), or CTF-framed ICS lab tasks (ics-ctf).
tools
Offensive methodology for authorized game security assessments, game client security research, and game-adjacent penetration testing in real-world engagements. Use when assessing game clients for cheating vulnerabilities, testing anti-cheat effectiveness, auditing game server protocols for score manipulation or economic fraud, reverse engineering game DRM or license validation, analyzing game save file protection, or assessing game mod/plugin security. Covers: process memory scanning and manipulation (Cheat Engine methodology), game binary reversing for license and DRM bypass, game network protocol analysis and packet replay, anti-cheat mechanism analysis, save file format reversing and tampering, speed hack and value injection techniques. Does NOT cover: CTF game challenges (game-ctf), game engine source code auditing (web-exploit-technique or vuln-search-technique for the backend), or general binary exploitation (pwn-ctf or reversing-technique).
development
Auth assessment: hardware/embedded methodology; UART/JTAG/SWD/SPI/I2C, firmware extraction, boot/debug paths, embedded OS evidence.