web-vuln-mfa-bypass

web-vuln-mfa-bypass is a skill for Claude Code, Codex from woohyun212/security-skill. It costs 30 tokens per session (3,573 once invoked), scanned B, original, MIT.

A security-testing procedure for checking whether multi-factor authentication, or MFA, can be bypassed. It examines OTP codes, backup codes, sessions, navigation, client-side state, and request timing.

In plain words
What is it for?
Auditing TOTP, SMS, email, or push-based MFA flows, including rate limits, code reuse, race conditions, recovery, and MFA removal.
Why use it?
It helps reveal weaknesses that could let someone access an account without completing the second login step.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Auditing TOTP, SMS, email, or push-based MFA flows, including rate limits, code reuse, race conditions, recovery, and MFA removal.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/woohyun212/security-skill/web-vuln-mfa-bypass
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add woohyun212/security-skill --skill web-vuln-mfa-bypass
Clone the repo
git clone --depth 1 https://github.com/woohyun212/security-skill

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for web-vuln-mfa-bypass

README.md
[![agentmods](https://agentmods.dev/badge/skills/woohyun212/security-skill/web-vuln-mfa-bypass/github.svg)](https://agentmods.dev/skills/woohyun212/security-skill/web-vuln-mfa-bypass)
Your own site
<a href="https://agentmods.dev/skills/woohyun212/security-skill/web-vuln-mfa-bypass"><img src="https://agentmods.dev/badge/skills/woohyun212/security-skill/web-vuln-mfa-bypass/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for web-vuln-mfa-bypass

Your own site · 80×15
<a href="https://agentmods.dev/skills/woohyun212/security-skill/web-vuln-mfa-bypass"><img src="https://agentmods.dev/badge/skills/woohyun212/security-skill/web-vuln-mfa-bypass.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 30 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 3,573 The whole file, excluding the scripts and references it only reads on demand.
Security scan B 2 findings. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00030 $0.03573
Opus 5 $0.00015 $0.01786
Sonnet 5 $0.00006 $0.00715
Haiku 4.5 $0.00003 $0.00357

Measured 12d ago against content hash d3d9d773212c, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-12, from the pricing page.

Security

Grade B, and why

web-vuln-mfa-bypass scanned grade B with 2 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 12d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Asks for rootmediumPrivilege escalation

A mod that escalates privileges can change anything on the machine, not only the project.

| `parallel` command not found | GNU parallel not installed | `sudo apt install parallel` or manually run concurrent curl commands in background with `&` |

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

- `curl` must be installed
web-vuln-mfa-bypass/SKILL.md · 360 lines

How it starts

The opening of the file, as written. The whole thing — 360 lines — stays where its author put it; the contents beside it link to each section on GitHub.

What this skill does

Systematically tests Multi-Factor Authentication (MFA) implementations for bypass vulnerabilities including missing rate limiting, OTP reuse, response manipulation, race conditions on OTP submission, direct navigation to post-MFA pages, backup code handling flaws, MFA disable without re-verification, session fixation pre-MFA, predictable OTP values, and client-side MFA state storage.

When to use

  • When auditing a web application's MFA or 2FA implementation
  • When testing TOTP, SMS OTP, email OTP, or push-notification based MFA flows
  • When verifying whether MFA can be bypassed to gain unauthorized account access
  • When evaluating backup code security or account recovery flows for MFA-enrolled users

Prerequisites

  • curl must be installed
  • parallel (GNU parallel) must be installed for race condition tests: apt install parallel
  • Valid test account with MFA enrolled
  • Knowledge of the application's MFA verification endpoint and parameter names

Inputs

Variable Description Example
BASE_URL Base URL of the application https://app.example.com
MFA_ENDPOINT Endpoint that accepts OTP submission /api/auth/mfa/verify
POST_MFA_PAGE Page only accessible after successful MFA /dashboard
SESSION_COOKIE Session cookie value after username/password login (pre-MFA state) session=abc123
KNOWN_OTP Valid OTP obtained via authenticator app (for reuse test) 123456
MFA_PARAM POST parameter name for OTP value code

Workflow

Step 1: Map the MFA flow

BASE_URL="https://app.example.com"
MFA_ENDPOINT="/api/auth/mfa/verify"
POST_MFA_PAGE="/dashboard"
SESSION_COOKIE="session=abc123"
KNOWN_OTP="123456"
MFA_PARAM="code"

FULL_MFA_URL="${BASE_URL}${MFA_ENDPOINT}"
FULL_POST_MFA="${BASE_URL}${POST_MFA_PAGE}"

echo "=== Step 1: Map MFA flow ==="
echo "[+] MFA verification endpoint: $FULL_MFA_URL"
echo "[+] Post-MFA page: $FULL_POST_MFA"

# Check what parameters the MFA endpoint accepts
echo ""
echo "--- OPTIONS probe ---"
curl -s -X OPTIONS "$FULL_MFA_URL" \
  -H "Cookie: $SESSION_COOKIE" \
  --max-time 10 \
  -D - -o /dev/null \
  | grep -iE "^(HTTP|Allow|Content-Type):"

# Baseline: submit obviously wrong OTP
echo ""
echo "--- Baseline (wrong OTP: 000000) ---"
curl -s -X POST "$FULL_MFA_URL" \
  -H "Cookie: $SESSION_COOKIE" \
  -H "Content-Type: application/json" \
  --data "{\"${MFA_PARAM}\": \"000000\"}" \
  --max-time 10
echo ""

Read the full file on GitHub · 360 lines

Files

What ships with it

1 file beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 12d ago First seen · 360 lines · 30 tokens per session scan B d3d9d773212c

Subscribe to this mod's changes

web-vuln-mfa-bypass is a skill published in the GitHub repository woohyun212/security-skill (21 stars, last pushed 4mo ago), licensed MIT. It adds 30 tokens to every session and 3,573 once invoked, about $0.0002 per session on Opus 5. A static security scan graded it B with 2 findings (asks for root, makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-30.

Related

Other skills, from other repositories

systematic-debugging

Use when encountering any bug, test failure, or unexpected behavior, before proposing fixes.

obra/superpowers · 21 tokens

local-ai-agents

Build local-first AI agents that run entirely on a developer workstation with Microsoft Foundry Local and Qwen function-calling models. Covers Small Language Models (SLMs), the OpenAI-compatible local endpoint, sandboxed local tools, local RAG with Chroma, local MCP servers, hybrid cloud/local routing, and the…

microsoft/ai-agents-for-beginners · 200 tokens

next-cache-components-adoption

Turn on Cache Components in a Next.js app and resolve the blocking routes it surfaces. Use when the user wants to enable, adopt, or migrate to Cache Components, flip the cacheComponents flag, work through a flood of blocking-prerender / instant validation errors, run the cache-components-instant-false codemod, or…

vercel/next.js · 95 tokens

chat-pet-sprite-creation

Use when creating or changing VS Code chat pet sprite art, sprite sheets, state animations, eye treatments, Stable/Insiders variants, or pet transitions under src/vs/workbench/contrib/chat/browser/widget/media/chatPet.

microsoft/vscode · 53 tokens

cpu-profile-analysis

Analyze V8/Chrome CPU profiles (.cpuprofile) and DevTools trace files (Trace-.json). Use when: profiling performance, investigating slow functions, comparing code paths, finding bottlenecks, analyzing timeToRequest, understanding call trees from sampling profiler data, analyzing layout/paint/rendering, investigating…

microsoft/vscode · 71 tokens

insight-error-page

Write or audit an insight-kind error page for the Next.js dev overlay. Use when creating a new errors/ .mdx page, auditing an existing one, or checking that a page matches the framework fix cards. Covers page structure, title alignment, FixCard cards with Copy prompt button, code snippets, terminology verification…

vercel/next.js · 83 tokens