目标达成 感谢每一位支持者 — 我们达成了 100% 目标!

目标: 1000 元 · 已筹: 1336

100%

CWE-174 对同一数据的双重编码 类漏洞列表 1

CWE-174 对同一数据的双重编码 类弱点 1 条 CVE 漏洞汇总,含 AI 中文分析。

MITRE CWE 官方描述
The product decodes the same input twice, which can limit the effectiveness of any protection mechanism that occurs in between the decoding operations.
常见影响 (1)
Access Control, Confidentiality, Availability, Integrity, Other Bypass Protection Mechanism, Execute Unauthorized Code or Commands, Varies by Context
缓解措施 (4)
Architecture and Design Avoid making decisions based on names of resources (e.g. files) if those resources can have alternate names.
Implementation Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use a list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. When performing input validation, consider all potentially relevant properties, including length, type of input, the full range…
Implementation Use and specify an output encoding that can be handled by the downstream component that is reading the output. Common encodings include ISO-8859-1, UTF-7, and UTF-8. When an encoding is not specified, a downstream component may choose a different encoding, either by assuming a default encoding or automatically inferring which encoding is being used, which can be erroneous. When the encodings are i…
Implementation Inputs should be decoded and canonicalized to the application's current internal representation before being validated (CWE-180). Make sure that the application does not decode the same input twice (CWE-174). Such errors could be used to bypass allowlist validation schemes by introducing dangerous inputs after they have been checked.
CVE ID 标题 CVSS 风险等级 Published
CVE-2026-75899 Fastify fast-uri 服务端请求伪造漏洞 — fast-uri 7.5 High 2026-08-24

CWE-174(对同一数据的双重编码) 是常见的弱点类别,本平台收录该类弱点关联的 1 条 CVE 漏洞。