소스 정보
- 저장소
- AeonDave/malskill
- 최근 소스 활동
- 2026년 6월 3일 13:09
- 감지된 SKILL.md 언어
- 영어
- 스타
- 18
- 포크
- 1
설치 방법
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
소스 파일 검토
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
메뉴
기본적으로 소스를 먼저 확인하는 Prompt가 선택됩니다. 직접 명령으로 전환하거나 로컬 사본을 다운로드할 수도 있습니다.
설치 여부를 결정하기 전에 SKILL.md와 SkillsMP에 표시된 보조 파일을 읽어 보세요.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/AeonDave/malskill --skill feroxbuster명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
SOC 직업 분류 기준
| name | feroxbuster |
| description | Auth/lab ref: Fast, recursive web content discovery tool written in Rust. |
| license | MIT |
| compatibility | Linux, Windows, macOS. |
| metadata | {"author":"AeonDave","version":"1.1"} |
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 |