用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill wifite命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 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 | wifite |
| description | Auth/lab ref: Automated Wi-Fi auditing wrapper for WEP/WPA/WPA2/PMKID workflows with minimal operator input. |
| license | MIT |
| compatibility | Python 3; Linux. |
| metadata | {"author":"AeonDave","version":"1.0"} |
Automated Wi‑Fi attack wrapper for rapid WPA/WEP/PMKID triage and capture workflows.
pip install wifite # or: apt install wifite
# Full auto (scan and attack all visible networks)
sudo wifite
# Target specific BSSID
sudo wifite --bssid AA:BB:CC:DD:EE:FF
# WPA handshake only + crack with wordlist
sudo wifite --wpa --dict /usr/share/wordlists/rockyou.txt
# PMKID attack
sudo wifite --pmkid
Choose wifite when you need:
aircrack-ng| Flag | Purpose |
|---|---|
--bssid MAC | Target specific AP |
--essid NAME | Target by SSID name |
--channel N | Target channel |
--wpa | Only WPA targets |
--wep | Only WEP targets |
--pmkid | PMKID attack (clientless) |
--dict FILE | Wordlist for cracking |
--no-deauth | Skip deauth (stealth) |
--timeout N | Attack timeout (s) |
--crack | Auto-crack after capture |
Automated PMKID + crack:
sudo wifite --pmkid --dict rockyou.txt
WPA handshake capture only (no crack):
sudo wifite --wpa --no-crack
# Handshake saved to ~/hs/
# Crack later: aircrack-ng ~/hs/*.cap -w rockyou.txt
wifite is only as good as the adapter and dependencies underneath it.aircrack-ng.kismet instead.| Need | Better fit |
|---|---|
| Fast automated WPA/PMKID flow | wifite |
| Manual control of capture/injection | aircrack-ng |
| Passive Wi‑Fi / Bluetooth / RF recon | kismet |
| File | When to load |
|---|---|
references/dependency-troubleshooting.md | For dependency expectations, common failures, and when to switch back to manual tooling |