CVE-2026-71277
CriticalCVSS 9.1Exploitation Probability (EPSS)
Low risk15th percentile - higher than 15% of all known CVEs
Summary
In rust-iot-platform, the AuthToken request-guard implementation (api/src/main.rs) only checks whether the Authorization HTTP header is present, and never validates its value against any session, token store, or signature. Any request carrying an arbitrary non-empty Authorization header (e.g. ) satisfies the guard, granting access to every endpoint protected only by this request guard.
Risk Assessment
An attacker can gain access to protected resources without a valid token, potentially leading to unauthorized access to data and system functions.
Recommendation
Implement proper token validation, checking its validity, signature, and session association. Also, use standard authentication mechanisms such as JWT with signature verification.
Original NVD description (English source)
rust-iot-platform's AuthToken request-guard implementation (api/src/main.rs) only checks whether the Authorization HTTP header is present, and never validates its value against any session, token store, or signature. Any request carrying an arbitrary non-empty Authorization header (e.g. ) satisfies the guard, granting access to every endpoint protected only by this request guard.

