用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill pacu命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
基于 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.