Cyber Resilience

CVE-2026-23996

Athroniaeth Fastapi Api Key ≤ 1.1.0

Published
21 January 2026
Modified
27 February 2026
Patch / advisory
CVSS Score v3.1 3.7
Click a component to see what it means
Raw vectorCVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N
EPSS Score 0.0025 17th percentile
Risk Priority 16 floored blend · peak EPSS

Summary

CVE-2026-23996 is a low-severity Observable Timing Discrepancy (CWE-208) vulnerability in Athroniaeth Fastapi Api Key. Its CVSS base score is 3.7 (Low).

Operationally, exploitation aligns with the MITRE ATT&CK technique Brute Force (T1110); ranked at the 17th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog.

The strongest mitigations our analysis identified map to AC-7 (Unsuccessful Logon Attempts) and SC-7 (Boundary Protection) — see the control section below for these in your framework.

EU & UK References

Vulnerability Data

FastAPI Api Key provides a backend-agnostic library that provides an API key system. Version 1.1.0 has a timing side-channel vulnerability in verify_key(). The method applied a random delay only on verification failures, allowing an attacker to statistically distinguish valid from…

more

invalid API keys by measuring response latencies. With enough repeated requests, an adversary could infer whether a key_id corresponds to a valid key, potentially accelerating brute-force or enumeration attacks. All users relying on verify_key() for API key authentication prior to the fix are affected. Users should upgrade to version 1.1.0 to receive a patch. The patch applies a uniform random delay (min_delay to max_delay) to all responses regardless of outcome, eliminating the timing correlation. Some workarounds are available. Add an application-level fixed delay or random jitter to all authentication responses (success and failure) before the fix is applied and/or use rate limiting to reduce the feasibility of statistical timing attacks.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise TechniquesAI

T1110 Brute Force Credential Access
Adversaries may use brute force techniques to gain access to accounts when passwords are unknown or when password hashes are obtained.
Why these techniques?

Timing side-channel in API key verification directly facilitates more efficient brute-force attacks (T1110) by enabling statistical distinction of valid keys.

Confidence: HIGH · MITRE ATT&CK Enterprise v19.0

CVEs Like This One

CVE-2026-47783Shared CWE-208
CVE-2026-27882Shared CWE-208
CVE-2025-59350Shared CWE-208
CVE-2026-40263Shared CWE-208
CVE-2026-23901Shared CWE-208
CVE-2026-23849Shared CWE-208
CVE-2026-48859Shared CWE-208
CVE-2026-54411Shared CWE-208
CVE-2026-22746Shared CWE-208
CVE-2026-32595Shared CWE-208

Affected Assets

athroniaeth
fastapi api key
≤ 1.1.0

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)
  • AC-7 Unsuccessful Logon Attempts
  • SC-7 Boundary Protection
Detect
Catch it (NIST detect / respond)
  • SI-4 System Monitoring
Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V11.2.4

Mitigating Controls (NIST 800-53 r5) AI

prevent

Rate limiting on failed authentication attempts directly reduces the volume of repeated queries an attacker can issue to perform statistical timing analysis on verify_key().

detect

Continuous monitoring of authentication request patterns and response-time anomalies can identify ongoing timing-based enumeration of API keys.

prevent

Boundary protection mechanisms can enforce per-source request throttling or filtering that limits an adversary's ability to gather timing samples at scale.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices directly require constant-time implementations that eliminate observable timing discrepancies.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

none

Consistent reference clocks limit the attacker's ability to measure or manipulate timing differences that could reveal internal state or processing paths.

References