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

Goal: 1000 CNY · Raised: 1310 CNY

100%

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

1216 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-1291 Meow Gallery <= 5.4.4 - Missing Authorization to Authenticated (Author+) Shortcode creation — Meow Gallery 4.3 Medium2026-06-13
CVE-2026-54361 MISP mass assignment vulnerabilities allow unauthorized modification of ownership and delegation records — misp--2026-06-12
CVE-2026-54360 MISP sharing group creation mass assignment allows unauthorized takeover of existing sharing groups — misp--2026-06-12
CVE-2026-53726 Parse Server: Relation `$relatedTo` query bypasses `protectedFields` and owning-object ACL — parse-server--2026-06-12
CVE-2026-42947 Naxclow IoT Platform Authorization bypass through User-Controlled key — Smart Doorbell X3 8.8 High2026-06-12
CVE-2026-45832 ChromaDB V1端点授权绕过漏洞 — ChromaDB--2026-06-12
CVE-2026-8828 ChromaDB Rust 1.0.0+越权漏洞 — ChromaDB--2026-06-12
CVE-2026-45830 ChromaDB<=0.4.17越权读写数据漏洞 — ChromaDB--2026-06-12
CVE-2026-44207 Frappe: Insecure Direct Object Reference for email accounts — frappe--2026-06-12
CVE-2026-47238 ClipBucket: IDOR in videos subtitle editor — clipbucket-v5 6.5 Medium2026-06-11
CVE-2026-47189 Quest Bot: AutoMod removal can delete rules from another guild by global rule ID — quest-bot--2026-06-11
CVE-2026-7787 Unauthenticated Session History Access via Public Flow Execution — Langflow OSS 7.5 High2026-06-11
CVE-2026-8406 openSIS Classic 9.3 - Insecure Direct Object Reference in Sent Mail — openSIS-Classic--2026-06-11
CVE-2026-6552 Authorization Bypass Through User-Controlled Key in GitLab — GitLab 8.7 High2026-06-11
CVE-2026-6976 Authorization Bypass Through User-Controlled Key in GitLab — GitLab 3.7 Low2026-06-11
CVE-2026-53911 Cerebrate primary key mass assignment in CRUD edit operations allows authenticated users to overwrite unrelated records — cerebrate--2026-06-11
CVE-2023-40200 WordPress WP Logo Showcase Responsive Slider and Carousel plugin <= 3.6 - Broken Access Control vulnerability — WP Logo Showcase Responsive Slider and Carousel 5.3 Medium2026-06-11
CVE-2026-44692 Authenticated Sharp users can download unrelated Laravel Storage objects through the generic download endpoint — sharp 7.7 High2026-06-10
CVE-2026-46558 Plane: Cross-workspace asset authorization bypass lets any authenticated user read, copy, delete, and overwrite assets in other Plane workspaces — plane 8.3 High2026-06-10
CVE-2026-45563 Roxy-WI: IDOR — any authenticated user can read another user's full action history — roxy-wi 4.3 Medium2026-06-10
CVE-2026-45550 Roxy-WI: IDOR on PUT /smon/check — any user can rewrite any tenant's monitoring URL/IP/body — roxy-wi 9.1 Critical2026-06-10
CVE-2026-45552 Roxy-WI: Cross-tenant authorization bypass on /install/* — guest can run Ansible / SSH on every registered server — roxy-wi 9.9 Critical2026-06-10
CVE-2026-53470 Migration-planner: getsourcedownloadurl missing organization check 9.6 Critical2026-06-10
CVE-2026-53471 Migration-planner: agent api ignores jwt source_id claim 9.6 Critical2026-06-10
CVE-2026-53675 BuddyPress 14.4.0 Friends List IDOR via REST API — BuddyPress 4.3 Medium2026-06-09
CVE-2026-53673 BuddyPress 14.4.0 Private Message IDOR via REST API user_id Parameter — BuddyPress 8.1 High2026-06-09
CVE-2026-6444 FlashArray Purity越权漏洞 — FlashArray--2026-06-09
CVE-2026-44083 QuMagie — QuMagie--2026-06-09
CVE-2026-9185 6Storage Rentals <= 2.22.0 - Unauthenticated Insecure Direct Object Reference to Arbitrary User Disclosure and Modification via 'userId' Parameter — 6Storage Rentals 7.5 High2026-06-09
CVE-2026-49141 WACRM Authorization Bypass via Automation Engine Endpoint — wacrm 7.1 High2026-06-08

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