ワンクリックで
pentest-inject
Injection testing. SQLi, XSS, SSTI, SSRF, and more. Requires user consent for active testing.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Injection testing. SQLi, XSS, SSTI, SSRF, and more. Requires user consent for active testing.
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 | pentest-inject |
| description | Injection testing. SQLi, XSS, SSTI, SSRF, and more. Requires user consent for active testing. |
| user-invocable | true |
| allowed-tools | ["Bash","Agent","Read"] |
Test a target application for injection vulnerabilities including SQL injection, cross-site scripting (XSS), server-side template injection (SSTI), server-side request forgery (SSRF), and more.
The target URL is provided via $ARGUMENTS. If no URL is provided, ask the user for one.
Parse the target URL from $ARGUMENTS.
WARN the user before proceeding:
WARNING: Active Testing Mode
This skill sends actual attack payloads to the target application. This includes SQL injection strings, XSS payloads, SSTI probes, and SSRF attempts.
- Only run this against applications you own or have explicit written authorization to test.
- These payloads may trigger WAF alerts, logging, or IDS/IPS notifications.
- Some payloads could potentially cause application errors or data corruption.
Do you want to proceed? (yes/no)
Wait for explicit user confirmation. Do NOT proceed without a clear "yes."
Delegate to injection-agent using the Agent tool. The agent must run all injection commands with --active --yes flags:
pentest -k -j -o ./findings inject sqli --active --yes <url>
pentest -k -j -o ./findings inject xss --active --yes <url>
pentest -k -j -o ./findings inject ssti --active --yes <url>
pentest -k -j -o ./findings inject ssrf --active --yes <url>
pentest -k -j -o ./findings inject cmdi --active --yes <url>
pentest -k -j -o ./findings inject lfi --active --yes <url>
pentest -k -j -o ./findings inject redirect --active --yes <url>
Read the JSON outputs from ./findings/ to gather all results.
Present confirmed vulnerabilities organized by severity:
--active flag enables payload delivery. The --yes flag skips interactive prompts.-k to skip SSL verification for targets with self-signed certs.-j for machine-readable JSON output.-o ./findings to persist results for later reporting.