ソース情報
- リポジトリ
- 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 searchsploitコマンドは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 | searchsploit |
| description | Auth/lab ref: Offline CLI search tool for Exploit-DB. |
| license | MIT |
| compatibility | Bash; Linux/macOS; part of exploitdb package. |
| metadata | {"author":"AeonDave","version":"1.1"} |
Offline Exploit-DB search — find public exploits by software name, version, or CVE.
# Install
apt install exploitdb
# Search by product
searchsploit apache 2.4
# Search by CVE
searchsploit CVE-2021-41773
# Exact phrase
searchsploit -e "remote code execution"
# Copy exploit to current dir
searchsploit -m 50383
| Flag | Purpose |
|---|---|
-t TERM | Search title only |
-e TERM | Exact match |
-m ID | Mirror/copy exploit file |
-p ID | Show full path |
-x ID | Examine exploit in pager |
--cve CVE | Search by CVE |
-w | Show web URL (exploitdb.com) |
--nmap FILE | Parse Nmap XML and find exploits |
-u | Update local database |
--id | Show EDB-ID |
Find exploits from Nmap scan:
nmap -sV target.com -oX scan.xml
searchsploit --nmap scan.xml
Filter by type:
# Local privilege escalation only
searchsploit -t "local" apache 2.4
# Remote exploits only
searchsploit -t "remote" openssh
# Web application exploits
searchsploit -t "webapps" wordpress 5.8
JSON output (for scripting):
searchsploit --json apache 2.4 | jq '.RESULTS_EXPLOIT[] | {title: .Title, path: .Path}'
Examine and copy relevant exploit:
searchsploit -x 50383 # Read it
searchsploit -m 50383 # Copy to ./
Show web URL for online reference:
searchsploit -w openssh 8.2
Update local DB:
searchsploit -u
/usr/share/exploitdb/exploits/https://www.exploit-db.com/exploits/<EDB-ID>-m, inspect the exploit header for compilation/usage notes before running| File | When to load |
|---|---|
references/exploit-notes.md | Exploit compilation, modification, and testing notes |