Severity by source
AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
Primary rating from Vendor (GitHub_M) · only source for this CVE.
CVSS VectorVendor: GitHub_M
Lifecycle Timeline
3DescriptionCVE.org
Nextcloud is an open source content collaboration platform. From versions 0.3.0 to before 3.1.0, 5.0.0 to before 5.1.0, and 6.0.0 to before 6.4.0, a missing signature verification in User OIDC allowed a malicious ID4me authority to identify as any user. This issue has been patched in versions 3.1.0, 4.1.0, 5.1.0, 6.4.0 and 8.3.0.
AnalysisAI
Authentication bypass in Nextcloud's User OIDC app (versions 0.3.0-3.0.x, 5.0.0-5.0.x, and 6.0.0-6.3.x) allows a malicious ID4me authority to impersonate arbitrary users due to missing JWT signature verification in the ID4me login flow. The flaw stems from a literal 'TODO: VALIATE SIGNATURE!' code comment that left ID tokens accepted without cryptographic validation, enabling identity spoofing once a victim is redirected through the attacker-controlled authority. No public exploit identified at time of analysis, and the issue is not listed in CISA KEV.
Technical ContextAI
The vulnerability lives in the User OIDC Nextcloud app's Id4meController::code() handler (lib/Controller/Id4meController.php), which processes the OpenID Connect / ID4me authorization-code callback. ID4me is a federated identity protocol layered on top of OIDC that uses DNS to discover an identity authority, which then issues a signed JWT ID token. The pre-patch code decoded the JWT payload and trusted its claims without ever calling JWT::decode() against the authority's JWKS, so any party able to act as an ID4me authority could mint a token claiming any 'sub' identifier. The root cause is classic CWE-287 (Improper Authentication) - specifically the well-known JWT pitfall of treating the unverified payload as authoritative. The fix introduces an obtainJWK() helper in ID4MeService that fetches and caches the JWKS from the discovery document's jwks_uri, then invokes Firebase JWT's decode() with RS256 verification and a 60-second leeway, returning HTTP 403 with reason 'token signature check failed' on validation failure.
RemediationAI
Vendor-released patches are available: upgrade the user_oidc app to 3.1.0, 4.1.0, 5.1.0, 6.4.0, or 8.3.0 depending on the major version line currently deployed, per the advisory at https://github.com/nextcloud/security-advisories/security/advisories/GHSA-qqgv-fqwp-mjpp and PR https://github.com/nextcloud/user_oidc/pull/1285. If immediate patching is not possible, disable the ID4me login option in the User OIDC admin settings (the standard OIDC provider flows in the same app are unaffected by this specific signature-verification gap), which eliminates the vulnerable code path at the cost of breaking any existing ID4me-based federation. Organizations relying on ID4me as a primary login method should plan a maintenance window for the upgrade and invalidate active sessions afterward, since pre-patch sessions could have been established with unverified tokens; review audit logs for unexpected logins via the ID4me handler before then.
Nextcloud server is an open source home cloud implementation. Rated high severity (CVSS 8.8), this vulnerability is remo
A too lax check in Nextcloud Talk 6.0.4, 7.0.2 and 8.0.7 allowed a code injection when a not correctly sanitized talk co
Nextcloud Server provides data storage for Nextcloud, an open source cloud platform. Rated critical severity (CVSS 9.8),
Unauthenticated vector-store tampering in Nextcloud MCP Server before 0.117.2 lets any network attacker who can reach th
Nextcloud Server before 9.0.54 and 10.0.1 & ownCloud Server before 9.1.2, 9.0.6, and 8.2.9 suffer from SMB User Authenti
NextCloud Cookbook is a recipe library app. Rated high severity (CVSS 8.8), this vulnerability is remotely exploitable,
Nextcloud server is an open source home cloud implementation. Rated high severity (CVSS 8.8), this vulnerability is remo
Nextcloud Desktop Client prior to 3.1.3 is vulnerable to resource injection by way of missing validation of URLs, allowi
lib/Controller/ExtractionController.php in the Extract add-on before 1.2.0 for Nextcloud allows Remote Code Execution vi
Authorization bypass in Windmill 1.56.0-1.614.0 enables Operator role users to escalate privileges to remote code execut
Insufficient protection of the server-side encryption keys in Nextcloud Server 19.0.1 allowed an attacker to replace the
Improper access control in Groupfolders app 4.0.3 allowed to delete hidden directories when when renaming an accessible
Same weakness CWE-287 – Improper Authentication
View allSame technique Authentication Bypass
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-33675