68 vulnerabilities classified as CWE-807 (在安全决策中依赖未经信任的输入). AI Chinese analysis included.
CWE-807 represents a critical security weakness where a system’s protective mechanisms depend on untrusted inputs that attackers can manipulate to bypass defenses. This flaw typically arises when developers erroneously assume that client-side data, such as cookies, environment variables, or hidden form fields, remain immutable and trustworthy. Attackers exploit this vulnerability by modifying these inputs using customized clients or other interception techniques, effectively tricking the application into granting unauthorized access or executing privileged actions. To mitigate this risk, developers must never rely on client-side validation for security decisions. Instead, they should enforce strict server-side validation, implement robust authentication and authorization checks independent of user-supplied data, and treat all external inputs as potentially hostile. By decoupling security logic from untrusted sources, organizations can prevent attackers from circumventing protective measures through simple input tampering.
Cookie[] cookies = request.getCookies(); for (int i =0; i< cookies.length; i++) { Cookie c = cookies[i]; if (c.getName().equals("role")) { userRole = c.getValue(); } }
$auth = $_COOKIES['authenticated']; if (! $auth) { if (AuthenticateUser($_POST['user'], $_POST['password']) == "success") { // save the cookie to send out in future responses setcookie("authenticated", "1", time()+60*60*2); } else { ShowLoginScreen(); die("\n"); } } DisplayMedicalHistory($_POST['patient_ID']);
| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2022-24400 | DCK pinning attack in TETRA — TETRA Standard | 7.5 | High | 2023-10-19 |
| CVE-2023-0009 | GlobalProtect App: Local Privilege Escalation (PE) Vulnerability — GlobalProtect App | 7.8 | High | 2023-06-14 |
| CVE-2022-20744 | Cisco Firepower Management Center Software Information Disclosure Vulnerability — Cisco Firepower Management Center | 6.5 | - | 2022-05-03 |
| CVE-2021-36777 | login-proxy sends password to attacker-provided domain — Build service | 8.1 | High | 2022-03-09 |
| CVE-2021-31999 | Rancher: Privilege escalation vulnerability via malicious Connection header — Rancher | 8.8 | High | 2021-07-15 |
| CVE-2021-29479 | Cached redirect poisoning via X-Forwarded-Host header — ratpack | 7.0 | High | 2021-06-29 |
| CVE-2020-5252 | Malicious package may avoid detection in python auditing — safety | 5.0 | Medium | 2020-03-23 |
| CVE-2017-0887 | Nextcloud Server 安全漏洞 — Nextcloud Server | 2.7 | - | 2017-04-05 |
Vulnerabilities classified as CWE-807 (在安全决策中依赖未经信任的输入) represent 68 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.