بنقرة واحدة
pentest-recon
Full reconnaissance scan on a deployed app. Subdomains, DNS, ports, tech stack, OSINT.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Full reconnaissance scan on a deployed app. Subdomains, DNS, ports, tech stack, OSINT.
التثبيت باستخدام 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-recon |
| description | Full reconnaissance scan on a deployed app. Subdomains, DNS, ports, tech stack, OSINT. |
| user-invocable | true |
| allowed-tools | ["Bash","Agent","Read"] |
Run a comprehensive passive reconnaissance scan against a target URL to enumerate subdomains, DNS records, open ports, technology stack, and OSINT data.
The target URL is provided via $ARGUMENTS. If no URL is provided, ask the user for one.
Parse the target URL from $ARGUMENTS.
Delegate to recon-agent using the Agent tool. The agent must run the following commands sequentially, collecting all JSON output:
pentest -k -j -o ./findings recon subdomains <url>
pentest -k -j -o ./findings recon dns <url>
pentest -k -j -o ./findings recon ports <url>
pentest -k -j -o ./findings recon osint <url>
pentest -k -j -o ./findings discover tech <url>
pentest -k -j -o ./findings cloud email <url>
Read the JSON outputs from ./findings/ to gather all results.
Present a summary to the user covering:
-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.