Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1310 CNY

100%

CWE-639 (通过用户控制密钥绕过授权机制) — Vulnerability Class 1148

1148 vulnerabilities classified as CWE-639 (通过用户控制密钥绕过授权机制). AI Chinese analysis included.

CWE-639 represents an authorization bypass weakness where systems fail to validate that a user is permitted to access a resource identified by a user-controlled key. Attackers typically exploit this by manipulating identifiers, such as changing a numeric user ID in a URL or API parameter, to retrieve or modify another user’s private data. This insecure direct object reference allows unauthorized access without requiring authentication bypasses. Developers prevent this vulnerability by implementing robust server-side authorization checks that verify the requesting user’s permissions against the requested resource, rather than trusting client-supplied identifiers. Additionally, using indirect references or opaque tokens instead of predictable, sequential keys can mitigate the risk of enumeration and unauthorized access attempts.

MITRE CWE Description
The system's authorization functionality does not prevent one user from gaining access to another user's data or record by modifying the key value identifying the data. Retrieval of a user record occurs in the system based on some key value that is under user control. The key would typically identify a user-related record stored in the system and would be used to lookup that record for presentation to the user. It is likely that an attacker would have to be an authenticated user in the system. However, the authorization process would not properly check the data access operation to ensure that the authenticated user performing the operation has sufficient entitlements to perform the requested data access, hence bypassing any other authorization checks present in the system. For example, attackers can look at places where user specific data is retrieved (e.g. search screens) and determine whether the key for the item being looked up is controllable externally. The key may be a hidden field in the HTML form field, might be passed as a URL parameter or as an unencrypted cookie variable, then in each of these cases it will be possible to tamper with the key value. One manifestation of this weakness is when a system uses sequential or otherwise easily-guessable session IDs that would allow one user to easily switch to another user's session and read/modify their data.
Common Consequences (3)
Access ControlBypass Protection Mechanism
Access control checks for specific user data or functionality can be bypassed.
Access ControlGain Privileges or Assume Identity
Horizontal escalation of privilege is possible (one user can view/modify information of another user).
Access ControlGain Privileges or Assume Identity
Vertical escalation of privilege is possible if the user-controlled key is actually a flag that indicates administrator status, allowing the attacker to gain administrative access.
Mitigations (3)
Architecture and DesignFor each and every data access, ensure that the user has sufficient privilege to access the record that is being requested.
Architecture and Design, ImplementationMake sure that the key that is used in the lookup of a specific user's record is not controllable externally by the user or that any tampering can be detected.
Architecture and DesignUse encryption in order to make it more difficult to guess other legitimate values of the key or associate a digital signature with the key so that the server can verify that there has been no tampering.
Examples (1)
The following code uses a parameterized statement, which escapes metacharacters and prevents SQL injection vulnerabilities, to construct and execute a SQL query that searches for an invoice matching the specified identifier [1]. The identifier is selected from a list of all invoices associated with the current authenticated user.
... conn = new SqlConnection(_ConnectionString); conn.Open(); int16 id = System.Convert.ToInt16(invoiceID.Text); SqlCommand query = new SqlCommand( "SELECT * FROM invoices WHERE id = @id", conn); query.Parameters.AddWithValue("@id", id); SqlDataReader objReader = objCommand.ExecuteReader(); ...
Bad · C#
CVE IDTitleCVSSSeverityPublished
CVE-2026-4868 Authorization Bypass Through User-Controlled Key in GitLab — GitLab 8.2 High2026-05-27
CVE-2026-9712 Insecure direct object reference — pretix--2026-05-27
CVE-2026-42736 WordPress BP Better Messages plugin <= 2.14.16 - Insecure Direct Object References (IDOR) vulnerability — BP Better Messages 7.5 High2026-05-27
CVE-2026-42725 WordPress Checkout Files Upload for WooCommerce plugin <= 2.2.5 - Insecure Direct Object References (IDOR) vulnerability — Checkout Files Upload for WooCommerce 6.5 Medium2026-05-27
CVE-2026-8890 code100x Mobile API Authentication Bypass via Header Spoofing — code100x 8.2 High2026-05-26
CVE-2026-44776 Kavita: IDOR in /api/Download/* — Kavita--2026-05-26
CVE-2026-47716 Bugsink: Issue bulk actions can affect another project’s issue if its UUID is known — bugsink 3.1 Low2026-05-26
CVE-2026-47715 Bugsink: Issue event views can show an event from another project if its UUID is known — bugsink 3.1 Low2026-05-26
CVE-2026-40127 Authorization Bypass Through User-Controlled Key in OutSystems Lifetime — Lifetime--2026-05-25
CVE-2026-9306 QuantumNous new-api Midjourney Image Relay Endpoint relay-router.go GetByOnlyMJId authorization — new-api 3.7 Low2026-05-23
CVE-2026-35430 Azure Privileged Identity Management (PIM) Elevation of Privilege Vulnerability — Azure Privileged Identity Management (PIM) 8.8 High2026-05-22
CVE-2026-39967 TypeBot: Cross-Typebot Result Data Access via Missing typebotId Filter — typebot.io 3.1 Low2026-05-22
CVE-2026-28444 Typebot: IDOR in Result Logs Endpoint Allows Cross-Workspace Data Disclosure — typebot.io 6.5 Medium2026-05-22
CVE-2026-9248 Devolutions Server越权漏洞影响2025及2026版本 — Server--2026-05-22
CVE-2026-8347 Concrete CMS 9.5.0 and below is vulnerable to IDOR + wrong-authorization-level in Express association Reorder dialog — Concrete CMS--2026-05-22
CVE-2026-3473 Improper file ownership validation in the Boards API allows unauthorised file access — Mattermost 5.9 Medium2026-05-22
CVE-2026-8679 AudioIgniter Music Player <= 2.0.2 - Unauthenticated Insecure Direct Object Reference to 'audioigniter_playlist_id' Parameter — AudioIgniter Music Player 7.5 High2026-05-22
CVE-2026-7886 Concrete CMS 9.5.0 and below is vulnerable to IDOR in AddMessage/UpdateMessage via attachments[] parameter — Concrete CMS--2026-05-21
CVE-2026-8337 Concrete CMS 9.5.0 and below is vulnerable to IDOR in surveys when sites are running concurrent public surveys and private surveys — Concrete CMS--2026-05-21
CVE-2026-7881 Concrete CMS 9.5.0 and below is vulnerable to IDOR in the Express Entry Detail block — Concrete CMS--2026-05-21
CVE-2026-8204 Concrete CMS 9.5.0 and below is vulnerable to Authorization Bypass in the Calendar Event Frontend Dialog — Concrete CMS--2026-05-21
CVE-2025-13479 IDOR in PosCube's QR Menu — QR Menu 7.5 High2026-05-21
CVE-2026-1881 Broadstreet <= 1.52.2 - Authenticated (Subscriber+) Private Post Meta Disclosure via get_sponsored_meta — Broadstreet 4.3 Medium2026-05-21
CVE-2026-9136 Unauthorized ShadowAttribute modification in MISP via client-supplied identifier — misp--2026-05-20
CVE-2026-9087 Keycloak: cross-session email verification proof not bound to upstream identity in first-broker-login — Red Hat Build of Keycloak 6.4 Medium2026-05-20
CVE-2026-47068 Cross-session PubSub topic injection via URL parameter in phoenix_storybook — phoenix_storybook--2026-05-20
CVE-2026-6566 Photo Gallery, Sliders, Proofing and Themes <= 4.2.0 - Insecure Direct Object Reference to Authenticated (Subscriber+) Image Deletion via REST API — Photo Gallery, Sliders, Proofing and Themes – NextGEN Gallery 4.3 Medium2026-05-20
CVE-2026-6072 Oliver POS <= 2.4.2.6 - Unauthenticated Authorization Bypass Through User-Controlled Key to 'OliverAuth' Header — Oliver POS – A WooCommerce Point of Sale (POS) 6.5 Medium2026-05-20
CVE-2026-42097 Authentication Bypass in Sparx Pro Cloud Server — Pro Cloud Server--2026-05-19
CVE-2026-37978 Keycloak: org.keycloak.services: keycloak: information disclosure via evaluate-scopes admin api — Red Hat build of Keycloak 26.4 4.9 Medium2026-05-19

Vulnerabilities classified as CWE-639 (通过用户控制密钥绕过授权机制) represent 1148 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.