원클릭으로
setup
Install pentest-cli and verify the security testing environment. Run this first.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Install pentest-cli and verify the security testing environment. Run this first.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Complete reference for pentest-cli. Load this skill when you need to call the CLI with correct syntax, flags, and output shapes.
Business logic and authorization testing. IDOR, privilege escalation, workflow bypass, payment manipulation.
Show all available pentest-cli commands and how to use them.
Advanced attack testing. Request smuggling, race conditions, cache poisoning, subdomain takeover.
Authentication and session security testing. JWT, OAuth, sessions, brute force.
Cloud and infrastructure testing. Storage misconfig, WAF detection, email security.
| name | setup |
| description | Install pentest-cli and verify the security testing environment. Run this first. |
| user-invocable | true |
| allowed-tools | ["Bash","Read"] |
Check if pentest-cli is installed and working. If not, install it automatically.
Check if pentest is installed:
pentest --version 2>/dev/null
If NOT installed, install it:
curl -fsSL https://raw.githubusercontent.com/sabania/pentest-cli/main/install.sh | bash
export PATH="$HOME/.local/bin:$PATH"
Verify installation:
pentest --version
Check optional tools:
for tool in nmap sqlmap hydra nikto nuclei whatweb dnsrecon gobuster; do
path=$(which $tool 2>/dev/null)
if [ -n "$path" ]; then
echo " ✓ $tool ($path)"
else
echo " ✗ $tool (not installed - optional)"
fi
done
Report to user:
pentest --help/pentest-full <url> to start a full security audit"pip install -e . from the repo