Microsoft
CVE-2026-33544
HIGH
Severity by source
AV:N/AC:H/PR:L/UI:R/S:C/C:H/I:H/A:N
Primary rating from GitHub Advisory · only source for this CVE.
CVSS VectorGitHub Advisory
CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:C/C:H/I:H/A:N
Lifecycle Timeline
3DescriptionGitHub Advisory
Summary
All three OAuth service implementations (GenericOAuthService, GithubOAuthService, GoogleOAuthService) store PKCE verifiers and access tokens as mutable struct fields on singleton instances shared across all concurrent requests. When two users initiate OAuth login for the same provider concurrently, a race condition between VerifyCode() and Userinfo() causes one user to receive a session with the other user's identity.
Details
The OAuthBrokerService.GetService() returns a single shared instance per provider for every request. The OAuth flow stores intermediate state as struct fields on this singleton:
Token storage - generic_oauth_service.go line 96:
generic.token = token // Shared mutable field on singletonVerifier storage - generic_oauth_service.go line 81:
generic.verifier = verifier // Shared mutable field on singletonIn the callback handler oauth_controller.go lines 136-143, the code calls:
err = service.VerifyCode(code) // line 136 - stores token on singleton
// ... race window ...
user, err := controller.broker.GetUser(req.Provider) // line 143 - reads token from singletonBetween these two calls, a concurrent request's VerifyCode() can overwrite the token field, causing GetUser() → Userinfo() to fetch the wrong user's identity claims.
The same pattern exists in all three implementations:
PoC
Race scenario (two concurrent OAuth callbacks):
- User A and User B both click "Login with GitHub" on the same tinyauth instance
- Both are redirected to GitHub, authorize, and GitHub redirects both back with authorization codes
- Both callbacks arrive at tinyauth nearly simultaneously:
Timeline:
t0: Request A → service.VerifyCode(codeA) → singleton.token = tokenA
t1: Request B → service.VerifyCode(codeB) → singleton.token = tokenB (overwrites tokenA)
t2: Request A → broker.GetUser("github") → Userinfo() reads singleton.token = tokenB
t3: Request A receives User B's identity (email, name, groups)User A now has a tinyauth session with User B's email, gaining access to all resources User B is authorized for via tinyauth's ACL.
PKCE verifier DoS variant: Even with PKCE, concurrent oauthURLHandler calls overwrite the verifier field, causing VerifyCode() to send the wrong verifier to the OAuth provider, which rejects the exchange.
Static verification: Run Go's race detector on a test that calls VerifyCode and Userinfo concurrently on the same service instance - the -race flag will flag data races on the token and verifier fields.
Go race detector confirmation: Running a concurrent test with go test -race on the singleton service detects 4 data races on the token and verifier fields. Without the race detector, measured token overwrite rate is 99.9% (9,985/10,000 iterations).
Test environment: tinyauth v5.0.4, commit 592b7ded, Go race detector + source code analysis
Impact
An attacker who times their OAuth callback to race with a victim's callback can obtain a tinyauth session with the victim's identity. This grants unauthorized access to all resources the victim is permitted to access through tinyauth's ACL system. The probability of collision increases with concurrent OAuth traffic.
The PKCE verifier overwrite additionally causes a denial-of-service: concurrent OAuth logins for the same provider reliably fail.
Suggested Fix
Pass verifier and token through method parameters or return values instead of storing them on the singleton:
func (generic *GenericOAuthService) VerifyCode(code string, verifier string) (*oauth2.Token, error) {
return generic.config.Exchange(generic.context, code, oauth2.VerifierOption(verifier))
}
func (generic *GenericOAuthService) Userinfo(token *oauth2.Token) (config.Claims, error) {
client := generic.config.Client(generic.context, token)
// ...
}Store the PKCE verifier in the session/cookie associated with the OAuth state parameter, not on the service struct.
AnalysisAI
Authentication bypass via OAuth token race condition in tinyauth allows concurrent attackers to hijack user sessions and gain unauthorized access to victim accounts. The vulnerability affects tinyauth v5.0.4 and earlier versions where singleton OAuth service instances share mutable PKCE verifier and access token fields across all concurrent requests. When two users authenticate simultaneously with the same OAuth provider (GitHub, Google, or generic OAuth), the second request overwrites the first
Technical ContextAI
The vulnerability stems from unsafe concurrent access to shared mutable state in Go OAuth service implementations. The affected package (pkg:go/github.com_steveiliop56_tinyauth) implements three OAuth service classes (GenericOAuthService, GithubOAuthService, GoogleOAuthService) as singletons returned by OAuthBrokerService.GetService(). These singletons store OAuth2 tokens and PKCE (Proof Key for Code Exchange) verifiers as struct fields rather than thread-local or session-scoped storage. The root cause is CWE-362 (Concurrent Execution using Shared Resource with Improper Synchronization, also known as a race condition). During the OAuth authorization code flow, the callback handler invokes VerifyCode() which stores the exchanged access token in a singleton field, then calls Userinfo() to fetch user claims using that stored token. Between these operations, a concurrent request can overwrite the token field, causing the original request to authenticate as the wrong user. This violates the fundamental OAuth security assumption that authorization codes and tokens are bound to specific user sessions. The lack of synchronization primitives (mutexes) or proper state isolation makes the race window exploitable in production under normal concurrent load.
RemediationAI
Upgrade to a patched version of tinyauth once available from the vendor repository at https://github.com/steveiliop56/tinyauth. Monitor the GitHub advisory at https://github.com/steveiliop56/tinyauth/security/advisories/GHSA-9q5m-jfc4-wc92 for patch release notifications. The vendor's suggested fix involves architectural changes to pass OAuth tokens and PKCE verifiers as method parameters or return values rather than storing them as mutable singleton fields, and migrating PKCE verifier storage to session cookies keyed by the OAuth state parameter. As an interim workaround, organizations can implement request serialization by adding mutex locks around the VerifyCode/Userinfo call sequence in oauth_controller.go, though this may impact concurrent authentication performance and does not fully resolve the architectural issue. Alternatively, deploy separate tinyauth instances per OAuth provider to reduce collision probability, or implement network-level rate limiting to prevent concurrent OAuth callbacks from the same provider. Organizations should audit authentication logs for anomalous session creation patterns where user identities change unexpectedly, as this may indicate exploitation. Given the authentication bypass severity and high proof-of-concept reliability, prioritize patching for internet-facing tinyauth deployments with multiple concurrent users.
Same weakness CWE-362 – Race Condition
View allSame technique Race Condition
View allShare
External POC / Exploit Code
Leaving vuln.today
GHSA-9q5m-jfc4-wc92