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

推荐订阅源

博客园_首页
博客园 - Franky
大猫的无限游戏
大猫的无限游戏
博客园 - 三生石上(FineUI控件)
量子位
博客园 - 聂微东
OSCHINA 社区最新新闻
OSCHINA 社区最新新闻
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
爱范儿
爱范儿
V
Visual Studio Blog
雷峰网
雷峰网
T
Tailwind CSS Blog
宝玉的分享
宝玉的分享
Blog — PlanetScale
Blog — PlanetScale
有赞技术团队
有赞技术团队
博客园 - 叶小钗
Microsoft Azure Blog
Microsoft Azure Blog
T
The Blog of Author Tim Ferriss
U
Unit 42
钛媒体:引领未来商业与生活新知
钛媒体:引领未来商业与生活新知
小众软件
小众软件
阮一峰的网络日志
阮一峰的网络日志
Y
Y Combinator Blog

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
Exponential Backoff Lockout: Stopping Brute Force Without...
Odilon HUGONNOT · 2026-06-18 · via DEV Community

Odilon HUGONNOT

In the previous article, we saw how to normalize login timing to prevent enumeration via timing oracle. But even with constant timing, an attacker can still brute-force passwords. They just need time.

Lockout is the standard answer. Except most implementations I've seen have at least one of three problems: they leak account existence, they don't reset correctly, or they use a fixed delay that's either too short (useless) or too long (denial of service on real users).

The pattern: capped exponential backoff

The first N failures are silent — no lockout, just an incremented counter. Beyond N, the account is locked for 1 << (failures - N) seconds, capped at 15 minutes.

Failures

Delay (N=5)

1-5

0 (silent)

6

2s

7

4s

8

8s

9

16s

10

32s

11

64s

12

128s

13

256s

14

512s

15+

900s (15 min cap)

Exponential is the right trade-off: a typo on the 6th attempt costs 2 seconds. A brute force at the 15th attempt costs 15 minutes per try. The attacker effort / user annoyance ratio is maximal.

func lockoutDuration(failures, threshold int) time.Duration {
    if failures <= threshold {
        return 0
    }
    shift := failures - threshold
    seconds := 1 << shift // 2, 4, 8, 16, 32...
    if seconds > 900 {
        seconds = 900 // cap at 15 min
    }
    return time.Duration(seconds) * time.Second
}

The status code trap

I've seen implementations returning 423 Locked when the account is locked and 401 Unauthorized when the password is wrong. Good intention. Catastrophic result: the attacker knows the account exists.

The rule: the status code must never distinguish "locked" from "wrong credentials". Always 401, always the same message. The attacker doesn't know if the account exists, is locked, or if the password is wrong.

func (h *LoginHandler) Handle(email, password string) error {
    user, err := h.repo.FindByEmail(email)
    if err != nil {
        argon2.CompareHashAndPassword(h.dummyHash, []byte(password))
        return ErrInvalidCredentials // same error
    }

    if h.isLocked(user) {
        argon2.CompareHashAndPassword(h.dummyHash, []byte(password))
        return ErrInvalidCredentials // same error, same timing
    }

    if !argon2.CompareHashAndPassword(user.PasswordHash, []byte(password)) {
        h.incrementFailures(user)
        return ErrInvalidCredentials // same error
    }

    h.resetFailures(user)
    return nil
}

Note the dummy hash on the "locked" case too. Same timing as the other branches. We combine the Argon2 dummy hash pattern with lockout.

The reset: three cases, one missed is enough

The failure counter must be reset in exactly three situations:

  1. Successful login — the user proved they know the password
  2. Password change — by the user themselves
  3. Admin reset — an admin manually unlocks the account

I saw a codebase where reset only happened on successful login. Result: a user who changes their password (via "forgot password" flow) keeps their old counter. At the next typo, they're immediately locked at whatever level they were at before the reset. Not the expected behavior.

// In the change password command handler
func (h *ChangePasswordHandler) Handle(cmd ChangePasswordCmd) error {
    // ... validation, hashing new password ...

    user.PasswordHash = newHash
    user.FailedAttempts = 0      // mandatory reset
    user.LockedUntil = time.Time{} // unlock

    return h.repo.Save(user)
}

Lockout on unknown users: persist nothing

A subtler trap: if you persist login failures for users that don't exist, a brute-forcer can pollute your table. 10 million attempts on random emails = 10 million rows in your lockout table.

For unknown users: slog and nothing else. The per-IP rate limiter (upstream) handles volume. Lockout is per-account, not per random attempt.

Audit log: what to trace, what not to

Login failures on existing accounts are business events — they feed the counter and deserve an audit log entry. Login failures on non-existent accounts are noise — slog.Warn and move on.

If you trace both in the same table, you give an attacker a pollution vector for your audit table. And you make real incident analysis harder.

Conclusion

Exponential backoff lockout is a deceptively simple pattern. The subtleties are in the details: same status code everywhere, same timing everywhere, reset on all three cases, no persistence for unknown users.

Combined with the dummy hash, you have a login endpoint that leaks neither account existence nor lock state, and resists brute force with progressive cost for the attacker.

The login is now solid. But authenticated requests that follow have their own attack surface. CSRF, for example: the double-submit cookie everyone uses is insufficient for certain contexts. That's the subject of the next article.