بنقرة واحدة
pentest-discover
Discovery scan. JS bundles, API endpoints, GraphQL, secrets, BaaS backends.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Discovery scan. JS bundles, API endpoints, GraphQL, secrets, BaaS backends.
التثبيت باستخدام 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-discover |
| description | Discovery scan. JS bundles, API endpoints, GraphQL, secrets, BaaS backends. |
| user-invocable | true |
| allowed-tools | ["Bash","Agent","Read"] |
Analyze a target application to discover JavaScript bundles, API endpoints, GraphQL schemas, exposed secrets, source maps, and Backend-as-a-Service (BaaS) configurations.
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 discovery-agent using the Agent tool. The agent must run the following commands, collecting all JSON output:
pentest -k -j -o ./findings discover bundle <url>
pentest -k -j -o ./findings discover api <url>
pentest -k -j -o ./findings discover graphql <url>
pentest -k -j -o ./findings baas <url>
Read the JSON outputs from ./findings/ to gather all results.
Present findings to the user covering:
.map files are publicly accessible (leaking original source code)-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.