4 vulnerabilities classified as CWE-566 (通过用户控制SQL主密钥绕过授权机制). AI Chinese analysis included.
CWE-566 represents a critical authorization bypass weakness where applications execute SQL queries using primary keys directly supplied by users, failing to enforce proper access controls. Attackers typically exploit this vulnerability by manipulating input parameters, such as changing an ID value in a URL or API request, to access or modify records belonging to other users or sensitive administrative data. This occurs because the application trusts the user-provided identifier without verifying if the requesting actor has legitimate permission to view or alter that specific resource. To prevent this, developers must implement strict server-side authorization checks that validate the current user’s rights against the requested resource before executing any database operations. Additionally, using parameterized queries and abstracting database access through secure service layers can further mitigate risks by ensuring that data retrieval is always governed by verified business logic rather than raw user input.
... 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(); ...| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2025-9953 | SQLi in Database Software's Databank Accreditation Software — Databank Accreditation Software | 9.8 | Critical | 2026-02-19 |
| CVE-2025-30369 | Zulip allows the deletion of Custom profile fields by administrators of a different organization — zulip | 2.7 | Low | 2025-03-31 |
| CVE-2025-30368 | Zulip allows the deletion of organization by administrators of a different organization — zulip | 2.7 | Low | 2025-03-31 |
| CVE-2024-22261 | SQL Injection in Harbor scan log API — Harbor | 2.7 | Low | 2024-06-10 |
Vulnerabilities classified as CWE-566 (通过用户控制SQL主密钥绕过授权机制) represent 4 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.