ソース情報
- リポジトリ
- AeonDave/malskill
- ソースの最終更新活動
- 2026年6月3日 13:09
- 検出された SKILL.md の言語
- 英語
- スター
- 18
- フォーク
- 1
インストール方法
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
ソースファイルを確認
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
メニュー
デフォルトでは、最初にソースを確認する Prompt が選択されています。直接コマンドに切り替えるか、ローカルコピーをダウンロードすることもできます。
インストールを決める前に、SKILL.md と SkillsMP に表示されている付属ファイルをお読みください。
SOC 職業分類に基づく
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
直接コマンドでは確認用 Prompt が省略されます。実行前にソースを確認してください。
npx skills add https://github.com/AeonDave/malskill --skill shodanコマンドは1行のまま表示されます。コピー前に横へスクロールして全体を確認してください。
ローカルで確認しますか?SkillsMP が現在取得できるファイルをダウンロードできます。
SKILL.md を表示中
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.
| name | shodan |
| description | Auth/lab ref: Shodan CLI for passive internet-wide host and service discovery. |
| license | MIT |
| compatibility | Linux, Windows, macOS. |
| metadata | {"author":"AeonDave","version":"1.1"} |
Passive reconnaissance via Shodan — internet-wide host/service discovery without touching targets.
# Initialize with API key
shodan init YOUR_API_KEY
# Search for a service/banner
shodan search "apache 2.4.49"
# Host lookup
shodan host 203.0.113.10
# Account info / credits
shodan info
| Command | Description |
|---|---|
shodan search <query> | Search Shodan index |
shodan host <ip> | Detailed host info (open ports, banners, vulns) |
shodan count <query> | Count results (no credits consumed) |
shodan download <file> <query> | Download results to compressed JSON |
shodan parse <file> | Parse downloaded results |
shodan domain <domain> | Domain intelligence |
shodan alert | Manage monitoring alerts |
shodan stats <query> | Statistics for a query |
shodan honeyscore <ip> | Honeypot score (0-1) |
shodan myip | Your public IP |
| Filter | Example |
|---|---|
hostname: | hostname:example.com |
ip: | ip:1.2.3.0/24 |
org: | org:"Target Corp" |
port: | port:8080 |
product: | product:Apache |
version: | version:2.4.49 |
country: | country:IT |
os: | os:Windows |
vuln: | vuln:CVE-2021-44228 |
http.title: | http.title:"Login" |
html: | html:"admin panel" |
ssl: | ssl:"example.com" |
asn: | asn:AS12345 |
net: | net:192.168.0.0/16 |
# Find infrastructure for an org
shodan search org:"Target Corp" --fields ip_str,port,product
# Download and parse org results
shodan download results.json.gz org:"Target Corp"
shodan parse --fields ip_str,port,product results.json.gz
# Find exposed login panels
shodan search http.title:"administration" org:"Target"
# CVE-based research
shodan search vuln:CVE-2021-44228
# SSL cert pivot — find all hosts sharing a cert
shodan search ssl:"example.com"
# Count without consuming query credits
shodan count org:"Target Corp"
# Reverse lookup / host details
shodan host 8.8.8.8
# Get favicon mmh3 hash via httpx
httpx -u https://target.com -favicon
# Outputs: [mmh3:<HASH>]
# Search Shodan for all hosts with same favicon (same product/brand)
shodan search "http.favicon.hash:<HASH>"
# Create alert for new hosts in an org
shodan alert create "Target Corp Monitor" org:"Target Corp"
# List alerts
shodan alert list
# Download results when triggered
shodan alert download <alert_id>
| File | When to load |
|---|---|
references/search-filters.md | Full filter reference, dork recipes, favicon hash lookup, API Python integration |