بنقرة واحدة
pentest-auth
Authentication and session security testing. JWT, OAuth, sessions, brute force.
التثبيت باستخدام Codex أو Claude انسخ هذا Prompt والصقه في Codex أو Claude أو مساعد آخر ليراجع صفحة Skill ويثبّتها لك.
القائمة
Authentication and session security testing. JWT, OAuth, sessions, brute force.
التثبيت باستخدام 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.
Cloud and infrastructure testing. Storage misconfig, WAF detection, email security.
Discovery scan. JS bundles, API endpoints, GraphQL, secrets, BaaS backends.
| name | pentest-auth |
| description | Authentication and session security testing. JWT, OAuth, sessions, brute force. |
| user-invocable | true |
| allowed-tools | ["Bash","Agent","Read"] |
Test a target application's authentication mechanisms including JWT token security, OAuth implementation, session management, and brute force resistance.
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 auth-agent using the Agent tool. The agent performs the following:
Phase 1 — Passive Analysis (no consent needed):
pentest -k -j -o ./findings auth jwt <url>
pentest -k -j -o ./findings auth oauth <url>
pentest -k -j -o ./findings auth session <url>
./findings/ for bundle results), extract and analyze them for:
Phase 2 — Active Testing (requires explicit consent):
Before running brute force tests, ask the user:
Brute force testing will send multiple login attempts to the target. This may lock out accounts or trigger rate limiting. Do you want to proceed? (yes/no)
If the user consents:
pentest -k -j -o ./findings auth brute --active --yes <url>
Read the JSON outputs from ./findings/ to gather all results.
Present findings 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.