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

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-348 (使用不可信的源) — Vulnerability Class 59

59 vulnerabilities classified as CWE-348 (使用不可信的源). AI Chinese analysis included.

CWE-348 represents a trust relationship management weakness where software incorrectly relies on a data source with insufficient verification or security controls. This flaw typically arises when applications accept input from external entities, such as user-supplied fields or unvalidated network packets, instead of prioritizing internal, authenticated sources. Attackers exploit this by injecting malicious payloads or manipulating data through the less trusted channel, bypassing intended security checks and potentially leading to injection attacks, privilege escalation, or data corruption. To mitigate this risk, developers must rigorously validate all external inputs against strict allowlists and implement robust authentication mechanisms. By consistently prioritizing verified, internal data sources and applying defense-in-depth strategies, engineers can ensure that critical operations rely only on trustworthy information, thereby neutralizing the threat of compromised data integrity.

MITRE CWE Description
The product has two different sources of the same data or information, but it uses the source that has less support for verification, is less trusted, or is less resistant to attack.
Common Consequences (1)
Access ControlBypass Protection Mechanism, Gain Privileges or Assume Identity
An attacker could utilize the untrusted data source to bypass protection mechanisms and gain access to sensitive data.
Examples (1)
This code attempts to limit the access of a page to certain IP Addresses. It checks the 'HTTP_X_FORWARDED_FOR' header in case an authorized user is sending the request through a proxy.
$requestingIP = '0.0.0.0'; if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) { $requestingIP = $_SERVER['HTTP_X_FORWARDED_FOR']; else{ $requestingIP = $_SERVER['REMOTE_ADDR']; } if(in_array($requestingIP,$ipAllowlist)){ generatePage(); return; } else{ echo "You are not authorized to view this page"; return; }
Bad · PHP
$requestingIP = '0.0.0.0'; if (array_key_exists('HTTP_X_FORWARDED_FOR', $_SERVER)) { echo "This application cannot be accessed through a proxy."; return; else{ $requestingIP = $_SERVER['REMOTE_ADDR']; } ...
Good · PHP
CVE IDTitleCVSSSeverityPublished
CVE-2026-25552 Ghost CLI < 1.30.1 IP Spoofing via X-Forwarded-For Header — Ghost-CLI 3.7 Low2026-07-31
CVE-2026-63220 CodeIgniter: Spoofable forwarded HTTPS headers in IncomingRequest::isSecure() — CodeIgniter4 4.8 Medium2026-07-31
CVE-2026-50243 'response-ip'/'rpz' can rewrite BOGUS answers instead of returning SERVFAIL — Unbound--2026-07-22
CVE-2026-63770 Glance 0.8.5 IP Spoofing Authentication Brute-Force Protection Bypass — glance 7.5 High2026-07-20
CVE-2026-64619 FileCodeBox < 2.4 Anti-bruteforce Rate Limit Bypass via Spoofed Headers — FileCodeBox 7.5 High2026-07-20
CVE-2026-9561 Eclipse kura 输入验证错误漏洞 — Eclipse Kura--2026-07-14
CVE-2026-58122 Hermes WebUI < 0.51.307 Authentication Bypass via X-Forwarded-For Header Spoofing — hermes-webui 9.1 Critical2026-07-09
CVE-2026-59897 Hono: API Gateway v1 adapter can drop a distinct repeated request header value during de-duplication — hono 4.8 Medium2026-07-08
CVE-2026-59999 OpenBSD OpenSSH 信任管理问题漏洞 — OpenSSH 5.9 Medium2026-07-08
CVE-2026-46466 Dell PowerProtect Data Domain 信任管理问题漏洞 — PowerProtect Data Domain 2.7 Low2026-07-03
CVE-2026-57942 LibreTranslate - IP Spoofing via X-Forwarded-For Header — LibreTranslate 5.3 Medium2026-06-29
CVE-2026-54289 Hono: Lambda@Edge adapter keeps only the last value of a repeated request header, dropping the rest — hono 4.8 Medium2026-06-22
CVE-2026-12249 Canonical ADSys Trust Store Poisoning via Plaintext HTTP Certificate Auto-Enrollment 8.3 Critical2026-06-22
CVE-2026-48772 ProxySQL: PROXY-Protocol-v1 UNKNOWN parses spoofed source IP, bypassing mysql_query_rules.client_addr ACL — proxysql 10.0 Critical2026-06-19
CVE-2026-44046 Apache APISIX: wolf-rbac plugin Identity Spoofing — Apache APISIX--2026-06-19
CVE-2020-37248 OfflineIMAP 安全漏洞 — OfflineIMAP 6.5 Medium2026-06-08
CVE-2026-43634 HestiaCP 1.2.0-1.9.4 IP Spoofing via CF-Connecting-IP Header — hestiacp 7.5 High2026-05-19
CVE-2026-40226 systemd 安全漏洞 — systemd 6.4 Medium2026-04-10
CVE-2026-35391 Bulwark Webmail getClientIP() trusted client-controlled X-Forwarded-For value, enabling rate limit bypass and audit log forgery — webmail 9.1AICriticalAI2026-04-06
CVE-2026-35507 shynet 安全漏洞 — Shynet 6.4 Medium2026-04-03
CVE-2026-26927 URL (HTTP Origin) call location spoofing in Szafir SDK Web — Szafir SDK Web 8.1AIHighAI2026-04-02
CVE-2026-33690 AVideo vulnerable to IP Address Spoofing via Untrusted HTTP Headers in getRealIpAddr() — AVideo 5.3 Medium2026-03-23
CVE-2026-3635 Fastify request.protocol and request.host spoofable via X-Forwarded-Proto/Host from untrusted connections when trustProxy uses restrictive trust function — fastify 6.1 Medium2026-03-23
CVE-2025-69240 Header Poisoning in Raytha CMS — Raytha 8.8 -2026-03-16
CVE-2026-22201 wpDiscuz before 7.6.47 - IP Address Spoofing in getIP() — wpDiscuz 5.3 Medium2026-03-13
CVE-2025-55292 In Meshtastic, an attacker can spoof licensed amateur flag for a node — firmware 8.2 High2026-01-27
CVE-2026-24910 Bun 安全漏洞 — Bun 5.9 Medium2026-01-27
CVE-2025-13694 AA Block country <= 1.0.1 - Unauthenticated IP Address Spoofing via X-Forwarded-For Header — AA Block country 5.3 Medium2026-01-07
CVE-2025-15154 PbootCMS Header handle.php get_user_ip less trusted source — PbootCMS 5.3 Medium2025-12-28
CVE-2025-32900 KDE Connect 安全漏洞 — KDE Connect information-exchange protocol 4.3 Medium2025-12-05

Vulnerabilities classified as CWE-348 (使用不可信的源) represent 59 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.