authentication
Authentication security testing - auth bypass, JWT attacks, OAuth flaws, password attacks, 2FA bypass, CAPTCHA bypass, and bot detection evasion.
Works with
--- name: authentication description: Authentication security testing - auth bypass, JWT attacks, OAuth flaws, password attacks, 2FA bypass, CAPTCHA bypass, and bot detection evasion. license: MIT --- # Authentication Test authentication mechanisms including login security, token handling, 2FA, CAPTCHA, and bot detection. ## Techniques | Type | Key Vectors | |------|-------------| | **Auth Bypass** | Default credentials, logic flaws, response manipulation | | **ADFS/SAML** | Golden SAML, token signing cert theft, assertion manipulation, SAML wrapping | | **JWT** | Algorithm confusion, key injection, claim tampering, token forging | | **OAuth** | Redirect manipulation, CSRF, token leakage, scope abuse | | **Password** | Brute force, credential stuffing, password policy bypass | | **2FA Bypass** | Response manipulation, direct endpoint access, code reuse, race conditions | | **CAPTCHA Bypass** | Missing server validation, token reuse, OCR, parameter manipulation | | **Bot Detection** | Behavioral biometrics simulation, fingerprint randomization, stealth mode | ## Tools **PasswordGenerator** (`tools/password_generator.py`): ```python from tools.password_generator import generate_password password = generate_password(hint_text="8-16 chars, uppercase, numbers") ``` **CredentialManager** (`tools/credential_manager.py`): ```python from tools.credential_manager import CredentialManager mgr = CredentialManager() mgr.store_credential(target="example.com", username="test", password="pass") ``` ## Workflow 1. Analyze auth implementation (forms, tokens, 2FA, CAPTCHA) 2. Test bypass vectors per technique type 3. Use Playwright MCP with human-like behavior (typing 80-200ms, random pauses) 4. Capture evidence (screenshots, network logs, tokens) 5. Document findings with PoC scripts ## Reference - `reference/authentication*.md` - Auth bypass techniques, payloads, and resources - `reference/jwt*.md` - JWT attack techniques and cheat sheets - `reference/oauth*.md` - OAuth vulnerability testing - `reference/scenarios/password-attacks/*.md` - Password attack vectors (spray, stuffing, cracking, PtH) - `reference/adfs-exploitation.md` - ADFS, Golden SAML, federation attacks - `reference/scenarios/2fa/*.md` - 2FA bypass methods - `reference/CAPTCHA_BYPASS.md` - 11 CAPTCHA bypass techniques - `reference/BOT_DETECTION.md` - Bot detection evasion strategies - `reference/PASSWORD_CREDENTIAL_MANAGEMENT.md` - Tool usage guide
More Security skills
azure-cost
microsoft/azure-skills
Azure cost management: query costs, forecast spending, optimize to reduce waste. WHEN: \"Azure costs\", \"Azure bill\", \"cost breakdown\", \"how much am I spending\", \"forecast spending\", \"optimize costs\", \"reduce spending\", \"orphaned resources\", \"rightsize VMs\", \"cost spike\", \"reduce storage costs\", \"AKS cost\". DO NOT USE FOR: deploying resources, provisioning, diagnostics, or security audits.
entra-app-registration
microsoft/azure-skills
Guides Microsoft Entra ID app registration, OAuth 2.0 authentication, and MSAL integration. USE FOR: create app registration, register Azure AD app, configure OAuth, set up authentication, add API permissions, generate service principal, MSAL example, console app auth, Entra ID setup, Azure AD authentication. DO NOT USE FOR: Key Vault secrets (use azure-keyvault-expiration-audit), general Azure resource security guidance.
azure-messaging
microsoft/azure-skills
Troubleshoot and resolve issues with Azure Messaging SDKs for Event Hubs and Service Bus. Covers connection failures, authentication errors, message processing issues, and SDK configuration problems. WHEN: event hub SDK error, service bus SDK issue, messaging connection failure, AMQP error, event processor host issue, message lock lost, message lock expired, lock renewal, lock renewal batch, send timeout, receiver disconnected, SDK troubleshooting, azure messaging SDK, event hub consumer, service bus queue issue, topic subscription error, enable logging event hub, service bus logging, eventhub python, servicebus java, eventhub javascript, servicebus dotnet, event hub checkpoint, event hub not receiving messages, service bus dead letter, batch processing lock, session lock expired, idle timeout, connection inactive, link detach, slow reconnect, session error, duplicate events, offset reset, receive batch.

