ソース情報
- リポジトリ
- 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 pacuコマンドは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 | pacu |
| description | Auth/lab ref: modular AWS exploitation framework for authorized cloud assessments. |
| license | BSD-3-Clause |
| compatibility | Linux, macOS, WSL; Python 3.7+. |
| metadata | {"author":"AeonDave","version":"1.0"} |
Session-based AWS exploitation framework.
Use Pacu only with explicit authorization and with awareness of AWS acceptable-use and testing policy constraints.
Upstream is clear: you are responsible for ensuring the engagement and modules are permitted in the target environment.
# Preferred on Kali / modern Python environments
pipx install git+https://github.com/RhinoSecurityLabs/pacu.git
# Simpler pip path
pip3 install -U pacu
# Docker alternative
docker run -it rhinosecuritylabs/pacu:latest
pacu
First launch creates or resumes a session. Sessions store keys and collected data.
Inside Pacu:
set_keys
whoami
list
help iam__privesc_scan
run iam__enum_permissions
run iam__privesc_scan
Use set_keys to provide:
whoami
Do this immediately after loading creds. It anchors the rest of the assessment.
list
help module_name
run iam__enum_permissions
run iam__privesc_scan
iam__privesc_scan is one of the highest-value starting points when IAM abuse is in scope.
pacu --help
pacu --list-modules
pacu --session mysession --whoami
pacu --session mysession --module-name iam__privesc_scan --exec
Useful for reproducible commands, wrappers, or scripted lab flows.
Upstream highlights that Pacu:
~/.aws are convenient but expose host credentials to the container.No bundled scripts/, references/, or assets/.
Use the upstream wiki for module catalog details and installation edge cases.