CWE-88 参数注入或修改 类弱点 167 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-88 属于参数注入漏洞,指程序在构建外部命令字符串时,未正确界定参数边界。攻击者通过注入特殊字符(如空格或引号),将恶意参数伪装成合法选项,从而执行非预期的系统命令。开发者应避免直接拼接用户输入,转而使用接受独立参数数组的 API 调用命令,或严格过滤输入中的特殊字符,以确保命令解析的准确性与安全性。
my $arg = GetArgument("filename"); do_listing($arg); sub do_listing { my($fname) = @_; if (! validate_name($fname)) { print "Error: name is not well-formed!\n"; return; } # build command my $cmd = "/bin/ls -l $fname"; system($cmd); } sub validate_name { my($name) = @_; if ($name =~ /^[\w\-]+$/) { return(1); } else { return(0); } }if ($name =~ /^\w[\w\-]+$/) ...| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2026-12530 | AWS Bedrock AgentCore Python SDK 安装包参数处理漏洞 — bedrock-agentcore | 7.3 | High | 2026-06-17 |
| CVE-2026-47365 | WebPros Toolkit 命令注入漏洞 — WordPress-Toolkit | 9.9 | Critical | 2026-06-12 |
| CVE-2026-47250 | MCP Server Kubernetes 参数注入漏洞 — mcp-server-kubernetes | 6.1 | Medium | 2026-06-11 |
| CVE-2026-53694 | NoMachine 参数注入漏洞 — NoMachine | - | - | 2026-06-10 |
| CVE-2026-52750 | NSA Ghidra 参数注入漏洞 — ghidra | 7.8 | High | 2026-06-10 |
| CVE-2026-11332 | Ansible 参数注入漏洞 — Red Hat Ansible Automation Platform 2 | 7.8 | High | 2026-06-05 |
| CVE-2026-41013 | CloudFoundry CF Deployment 安全漏洞 — smb-volume-release | - | - | 2026-06-01 |
| CVE-2026-49373 | JetBrains TeamCity 参数注入漏洞 — TeamCity | 7.1 | High | 2026-05-29 |
| CVE-2026-44449 | Lumiverse 参数注入漏洞 — Lumiverse | 9.1 | Critical | 2026-05-26 |
| CVE-2026-44450 | Lumiverse 参数注入漏洞 — Lumiverse | 9.9 | Critical | 2026-05-26 |
| CVE-2026-3515 | Prefect 参数注入漏洞 — prefecthq/prefect | - | - | 2026-05-24 |
| CVE-2026-47114 | IINA 参数注入漏洞 — iina | 8.8 | High | 2026-05-21 |
| CVE-2026-8773 | litemall 注入漏洞 — litemall | 4.7 | Medium | 2026-05-18 |
| CVE-2026-45158 | Deciso OPNsense 参数注入漏洞 — core | 9.1 | Critical | 2026-05-13 |
| CVE-2026-44193 | Deciso OPNsense 参数注入漏洞 — core | 9.1 | Critical | 2026-05-13 |
| CVE-2026-42266 | JupyterLab 参数注入漏洞 — jupyterlab | 8.8 | High | 2026-05-13 |
| CVE-2026-25690 | Fortinet FortiDeceptor 参数注入漏洞 — FortiDeceptor | 4.0 | Medium | 2026-05-12 |
| CVE-2025-40948 | Siemens多款产品 参数注入漏洞 — RUGGEDCOM ROX MX5000 | 6.8 | Medium | 2026-05-12 |
| CVE-2026-43893 | exiftool-vendored 参数注入漏洞 — exiftool-vendored.js | 8.2 | High | 2026-05-11 |
| CVE-2026-45181 | Hex-Rays IDA Pro 参数注入漏洞 — IDA | 6.5 | Medium | 2026-05-09 |
| CVE-2026-42601 | ArchiveBox 参数注入漏洞 — ArchiveBox | 9.8 | - | 2026-05-09 |
| CVE-2026-43941 | Electerm 参数注入漏洞 — electerm | 9.6 | Critical | 2026-05-08 |
| CVE-2026-42284 | GitPython 参数注入漏洞 — GitPython | 8.1 | High | 2026-05-07 |
| CVE-2026-40281 | Gotenberg 参数注入漏洞 — gotenberg | 10.0 | Critical | 2026-05-06 |
| CVE-2026-7865 | Crestron Touchpanels 参数注入漏洞 — Touchpanels (x60/x70) | 8.8 | - | 2026-05-05 |
| CVE-2026-7725 | Prefect 注入漏洞 — prefect | 6.3 | Medium | 2026-05-04 |
| CVE-2026-40938 | Tekton Pipelines 参数注入漏洞 — pipeline | 7.5 | High | 2026-04-21 |
| CVE-2026-6437 | Amazon EFS CSI Driver 安全漏洞 — AWS EFS CSI Driver | 6.5 | Medium | 2026-04-17 |
| CVE-2026-35153 | Dell PowerProtect Data Domain(Dell PowerProtect DD) 安全漏洞 — PowerProtect Data Domain | 6.7 | Medium | 2026-04-17 |
| CVE-2026-4145 | Lenovo Software Fix 安全漏洞 — Software Fix | 7.8 | High | 2026-04-15 |
CWE-88(参数注入或修改) 是常见的弱点类别,本平台收录该类弱点关联的 167 条 CVE 漏洞。