ソース情報
- リポジトリ
- 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コマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
Operate the MCPwn Kali/Debian MCP efficiently: manage sessions, discover catalog tools, choose synchronous, detached, or interactive execution, move files through workspace/CAS planes, establish tunnels and shells, and run GDB or Frida debugging in the MCPwn runtime or through explicit host/device transports. Use for MCPwn or Kali MCP work, pwn/CTF and dynamic-analysis sessions, remote targets, connectivity or file-transfer problems, and optional NeuroMatrix-backed emulation/debugging through MCPwn's emulation domain.
Operate the standalone, client-neutral NeuroMatrix emulation MCP: create isolated sessions, stage CAS artifacts, discover and run Unicorn/Qiling/QEMU/Renode tools, manage jobs and interactive processes, expose guest endpoints, and debug emulated targets with GDB. Use for reverse engineering, user-mode or full-system emulation, firmware/kernel/MCU analysis, guest-service rehosting, runtime-evidence collection, or as the optional emulation provider behind MCPwn or another orchestrator.
Create, implement, scaffold, migrate, or review Model Context Protocol (MCP) servers against modern MCP 2026-07-28. Use for server architecture, tool/resource/prompt contracts, stdio or Streamable HTTP transports, MRTR, optional extensions, authorization, security, and real-transport validation. Also use to isolate legacy initialization or session behavior. Do not use merely to configure an MCP client or invoke an existing server.
SOC 職業分類に基づく
SKILL.md を表示中
| 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 |