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

目标: 1000 元 · 已筹: 1336

100%

CWE-144 行分隔符转义处理不恰当 类漏洞列表 3

CWE-144 行分隔符转义处理不恰当 类弱点 3 条 CVE 漏洞汇总,含 AI 中文分析。

CWE-144 属于输入验证缺陷,指程序未正确清理上游传入数据中的换行符等分隔符。攻击者通过注入恶意换行序列,诱导下游组件解析异常,从而引发逻辑错误或执行非预期操作。开发者应严格过滤或转义输入中的特殊字符,确保数据格式符合预期,防止分隔符被误解析,从而阻断此类注入攻击。

MITRE CWE 官方描述
CWE:CWE-144 行分隔符(Line Delimiters)的不当中和 产品从上游组件接收输入,但未对特殊元素进行中和或进行了不当中和,而这些特殊元素在发送给下游组件时可能被解释为行分隔符。 在数据解析过程中,注入的、缺失的或格式错误的分隔符可能导致进程采取意外操作。
常见影响 (1)
Integrity Unexpected State
缓解措施 (4)
Developers should anticipate that line delimiters will be injected/removed/manipulated in the input vectors of their product. Use an appropriate combination of denylists and allowlists to ensure only valid, expected and appropriate input is processed by the system.
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 While it is risky to use dynamically-generated query strings, code, or commands that mix control and data together, sometimes it may be unavoidable. Properly quote arguments and escape any special characters within those arguments. The most conservative approach is to escape or filter all characters that do not pass an extremely strict allowlist (such as everything that is not alphanumeric or whit…
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-53878 Django 输入验证错误漏洞 — Django 6.1 Medium 2026-07-07
CVE-2025-24367 Cacti 安全漏洞 — cacti 8.8 - 2025-01-27
CVE-2023-39212 Zoom Rooms 代码问题漏洞 — Zoom Rooms for Windows 7.9 High 2023-08-08

CWE-144(行分隔符转义处理不恰当) 是常见的弱点类别,本平台收录该类弱点关联的 3 条 CVE 漏洞。