惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

GbyAI
GbyAI
B
Blog
Stack Overflow Blog
Stack Overflow Blog
量子位
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
T
Tailwind CSS Blog
MongoDB | Blog
MongoDB | Blog
小众软件
小众软件
博客园 - 三生石上(FineUI控件)
Recent Announcements
Recent Announcements
U
Unit 42
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
腾讯CDC
D
DataBreaches.Net
Microsoft Azure Blog
Microsoft Azure Blog
G
Google Developers Blog
M
MIT News - Artificial intelligence
P
Proofpoint News Feed
罗磊的独立博客
L
LangChain Blog
V
Visual Studio Blog
雷峰网
雷峰网
aimingoo的专栏
aimingoo的专栏
宝玉的分享
宝玉的分享

DEV Community

Authentication Security Deep Dive: From Brute Force to Salted Hashing (With Java Examples) Why AI Systems Don’t Fail — They Drift Spilling beans for how i learn for exam😁"Reinforcement Learning Cheat Sheet" I Replaced Chrome with Safari for AI Browser Automation. Here's What Broke (and What Finally Worked) How Python Borrows Other People's Work The $40 Architecture: Processing 1 Billion API Requests with 99.99% Uptime Vibe Coding: A Workflow Guide (From Zero to SaaS) Most webhook security guides protect the wrong side. The scary part is delivery. Headless CMS for TanStack Start: Build a Blog with Cosmic EU Age Verification App "Hacked in 2 Minutes" — What Actually Happened Comfy Cloud’s delete function does not actually remove files Running AI Models on GPU Cloud Servers: A Beginner Guide Event-driven media intelligence with AWS Step Functions and Bedrock I scored 500 AI prompts across 8 quality dimensions — here's what broke How to Call Google Gemini API from Next.js (Free Tier, No Backend Needed) The Portal Protocol: Reclaiming Human Connection in the Age of AI How to Fix Your Team's Scattered Knowledge Problem With a Self-Hosted Forum Intro to tc Cloud Functors: A Graph-First Mental Model for the Modern Cloud Designing Multi-Tenant Backends With Both Ownership and Team Access I Built a Neumorphic CSS Library with 77+ Components — Here's What I Learned PostgreSQL Performance Optimization: Why Connection Pooling Is Critical at Scale Cómo construí un SaaS multi-rubro para gestionar expensas en Argentina con FastAPI + Vue 3 🚀 I Built an Ethical Hacking Scanner Tool – Open Source Project I Replaced /usage and /context in Claude Code With a Single Statusline A Pythonic Way to Handle Emails (IMAP/SMTP) with Auto-Discovery and AI-Ready Design I Collected 8.9 Million Polymarket Price Points — Here's What I Found About How Markets Really Move EcoTrack AI — Carbon Footprint Tracker & Dashboard Everyone's Using AI. No One Agrees How. 5 self-hosted ebook managers worth trying in 2026 Building Your First AI Agent with LangChain: From Chatbot to Autonomous Assistant
Securing Automated OTP Flows
Qasim Muhammad · 2026-06-15 · via DEV Community

Before: a signup flow stalls at "enter the code we emailed you," a human digs through a shared inbox, copies six digits, pastes them into a terminal. After: the agent owns the mailbox, a webhook fires when the verification email lands, a regex pulls the code, and the flow completes in seconds with nobody watching. Automated OTP extraction is one of the most satisfying agent patterns to build — and one of the easiest to build dangerously, because you've just turned authentication codes into machine-readable input.

The threat model

An OTP is a credential with a short fuse. The extraction recipe for Agent Accounts (currently in beta) is straightforward plumbing — webhook in, parse, return the code to whatever's blocked waiting for it. The risks live around the plumbing:

  • Anyone can email the inbox. Mailboxes are public endpoints. If your handler extracts codes from any message that arrives, an attacker who knows the address can feed it crafted "verification" emails and influence what your orchestrator receives.
  • Email content is untrusted input. The agent security guide is firm on this: agents should never execute instructions found in messages. An OTP pipeline that passes raw bodies to an LLM is exposed to whatever instructions are buried in the HTML.
  • Codes leak through logs. The natural debugging instinct — log the extracted value — turns your log aggregator into a credential store.

Each of these has a cheap mitigation. Take them in order.

Lock down who can reach the inbox

First line of defense: match hard on the sender before any parsing runs. The recipe's handler checks two signals — the sender domain belongs to the service being authenticated against, and the subject looks like a verification email:

app.post("/webhooks/otp", async (req, res) => {
  res.status(200).end();

  const event = req.body;
  if (event.type !== "message.created") return;

  const msg = event.data.object;
  if (msg.grant_id !== AGENT_GRANT_ID) return;

  const sender = msg.from?.[0]?.email ?? "";
  const subject = msg.subject ?? "";

  const senderMatches = sender.endsWith("@no-reply.example.com");
  const subjectLooksRight = /code|verif|one.?time|passcode/i.test(subject);
  if (!senderMatches || !subjectLooksRight) return;

  await handleOtp(msg.id);
});

You can push this below your application code entirely. Policies, Rules, and Lists let you constrain inbound so only expected senders reach the agent — unwanted mail gets handled at the mailbox layer, and your handler's sender check becomes a second layer instead of the only one. Inbound rules match sender fields (from.address, from.domain, from.tld) with operators including is_not, so a single-purpose OTP inbox can reject everything that isn't from the one service it exists to hear from:

curl --request POST \
  --url "https://api.us.nylas.com/v3/rules" \
  --header "Authorization: Bearer $NYLAS_API_KEY" \
  --header "Content-Type: application/json" \
  --data '{
    "name": "OTP inbox: only the identity provider gets in",
    "priority": 1,
    "trigger": "inbound",
    "match": {
      "conditions": [
        { "field": "from.domain", "operator": "is_not", "value": "no-reply.example.com" }
      ]
    },
    "actions": [{ "type": "block" }]
  }'

A block rejects the message at the SMTP layer — it's never stored and message.created never fires, so your extraction code never even sees the attacker's mail. For a mailbox that exists to receive from exactly one sender, that tight posture costs nothing.

Handle the code like the credential it is

The extraction itself is regex-first, with an LLM picking up messy marketing templates the patterns miss. The recipe's tiers run from most to least specific:

// Strip HTML so the regex sees plain text, not inline style / hidden pixels.
const plaintext = stripHtml(message.body);

const patterns = [
  /(?:code|passcode|one[\s-]?time)[^\d]{0,20}(\d{4,8})/i, // "Your code is: 123456"
  /\b(\d{6})\b/,                                          // bare 6-digit
  /\b(\d{4,8})\b/,                                        // bare 4–8 digit (last resort)
];

for (const p of patterns) {
  const match = p.exec(plaintext);
  if (match) return returnCode(match[1]);
}
return extractWithLlm(plaintext); // only for templates regex can't handle

Order matters: the labeled pattern can't grab a phone number or an order ID by accident, while the bare 4–8 digit fallback absolutely can — which is why it runs last, and why the sender filtering above has to happen first. Two handling rules from the recipe deserve promotion to policy:

Don't log codes. Log that a code was received and returned; never the value. If the LLM fallback is in play, remember the provider's logs too — the recipe keeps the prompt narrow (return JSON with the code or null, nothing else) partly so the model never gets asked to "understand" or act on the email, only to extract one value. Strip HTML before the body reaches either the regex or the model, which also discards hidden tracking pixels and invisible text.

Rate-limit aggressively. A retry loop that keeps requesting fresh codes looks like an attack to the service on the other side and can get the agent's address blocked. Cap retries, back off on failure. The recipe's awaitCode helper uses a 60-second timeout per attempt — a sane default that fails the run instead of hammering the provider.

Respect freshness, expect duplicates

Most services expire OTPs within 5–15 minutes, and a stale code is worse than no code — it burns an attempt and can trip the service's own velocity checks. Check message.date and refuse codes older than a few minutes rather than returning whatever parsed.

The companion failure: multiple codes in the inbox. An earlier attempt leaves a stale OTP behind, the service sends a fresh one, and a naive regex grabs the old message. Sort by message timestamp, newest first, before extracting. And since some providers deliberately rotate formats — 6 digits this session, 8 or alphanumeric the next — keep the regex permissive and let the LLM fallback absorb shape changes instead of hard-coding one pattern.

Two infrastructure leaks to close

Beyond message handling, the pipeline itself has trust boundaries:

Verify the webhook before extracting anything. Your handler is an HTTP endpoint, and a forged message.created payload is a second way to feed the pipeline a fake code — no email required. Check the x-nylas-signature HMAC on every request before touching the payload, and dedup on the message ID: webhooks can be redelivered, and a replayed event shouldn't re-trigger extraction or hand a stale code to a fresh login attempt.

Don't trust an in-memory registry in production. The recipe's promise-based pending map — awaitCode(correlationKey) resolving when the code arrives — is the right shape, but webhook handlers run on short-lived processes and an in-memory Map doesn't survive a restart. A run that loses its waiter mid-flight times out and retries, and now you're in the multiple-codes scenario above. Use a real queue or pub/sub once anything depends on it.

Wire it up, then attack it

The full implementation — webhook filter, regex tiers, LLM fallback, and the promise registry that returns codes to the caller — is in the OTP extraction cookbook. Build it on a test inbox first.

Then, before trusting it anywhere real, spend ten minutes as the attacker: email the OTP inbox from a personal address with a fake "your code is 999999" message and watch what your pipeline does. If that code reaches your orchestrator, you know exactly which check to add next.