CWE-20 输入验证不恰当 类弱点 3600 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-20 属于输入验证不当漏洞,指软件接收数据时未正确校验其是否符合安全处理要求。攻击者常通过注入恶意或畸形数据,绕过逻辑检查以触发缓冲区溢出、命令执行等严重后果。开发者应实施严格的白名单验证,确保输入格式、类型及范围完全符合预期,并在所有数据入口点强制执行校验逻辑,从而从源头阻断潜在攻击。
... public static final double price = 20.00; int quantity = currentUser.getAttribute("quantity"); double total = price * quantity; chargeUser(total); ...... #define MAX_DIM 100 ... /* board dimensions */ int m,n, error; board_square_t *board; printf("Please specify the board height: \n"); error = scanf("%d", &m); if ( EOF == error ){ die("No integer passed: Die evil hacker!\n"); } printf("Please specify the board width: \n"); error = scanf("%d", &n); if ( EOF == error ){ die("No integer passed: Die evil hacker!\n"); } if ( m > MAX_DIM || n > MAX_DIM ) { die("Value too large: Die evil hacker!\n"); } board = (board_square_t*) malloc( m * n * sizeof(board_square_t)); ...| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2022-3140 | LibreOffice 参数注入漏洞 — LibreOffice | 7.6 | - | 2022-10-11 |
| CVE-2022-31766 | Siemens RUGGEDCOM RM1224 输入验证错误漏洞 — RUGGEDCOM RM1224 LTE(4G) EU | 8.6 | High | 2022-10-11 |
| CVE-2022-36362 | Siemens LOGO! 8 BM 输入验证错误漏洞 — LOGO! 12/24RCE | 7.5 | High | 2022-10-11 |
| CVE-2022-40227 | Siemens SIMATIC HMI Comfort Panels 输入验证错误漏洞 — SIMATIC HMI Comfort Panels (incl. SIPLUS variants) | 9.8 | - | 2022-10-11 |
| CVE-2022-39281 | Fat Free CRM 输入验证错误漏洞 — fat_free_crm | 6.5 | Medium | 2022-10-08 |
| CVE-2022-36868 | SAMSUNG Mobile devices 安全漏洞 — Samsung Mobile Devices | 5.9 | Medium | 2022-10-07 |
| CVE-2022-39291 | ZoneMinder 输入验证错误漏洞 — zoneminder | 5.4 | Medium | 2022-10-07 |
| CVE-2022-39863 | SAMSUNG Mobile devices 安全漏洞 — Samsung Account | 3.6 | Low | 2022-10-07 |
| CVE-2022-2529 | GoFlow 资源管理错误漏洞 — goflow | 7.5 | High | 2022-09-30 |
| CVE-2022-39232 | Discourse 安全漏洞 — discourse | 6.5 | Medium | 2022-09-29 |
| CVE-2022-31629 | PHP 安全漏洞 — PHP | 6.5 | - | 2022-09-28 |
| CVE-2022-22525 | Carlo Gavazzi UWP 输入验证错误漏洞 — UWP 3.0 Monitoring Gateway and Controller | 7.2 | High | 2022-09-28 |
| CVE-2022-39236 | Matrix 输入验证错误漏洞 — matrix-js-sdk | 4.3 | Medium | 2022-09-28 |
| CVE-2022-24280 | Apache Pulsar 输入验证错误漏洞 — Apache Pulsar | 7.5 | - | 2022-09-23 |
| CVE-2022-35252 | curl 安全漏洞 — https://github.com/curl/curl | 3.7 | - | 2022-09-23 |
| CVE-2022-23766 | BigFile BigFileAgent 输入验证错误漏洞 — BigFileAgent | 7.8 | High | 2022-09-19 |
| CVE-2022-36027 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-36017 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35986 | Google TensorFlow 安全漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35982 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35979 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35974 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35972 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35973 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35970 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35966 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35967 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-35964 | Google TensorFlow 输入验证错误漏洞 — tensorflow | 5.9 | Medium | 2022-09-16 |
| CVE-2022-38408 | Adobe Illustrator 输入验证错误漏洞 — Illustrator | 7.8 | High | 2022-09-16 |
| CVE-2022-1798 | Red Hat OpenShift 路径遍历漏洞 — Kubevirt | 8.7 | High | 2022-09-15 |
CWE-20(输入验证不恰当) 是常见的弱点类别,本平台收录该类弱点关联的 3600 条 CVE 漏洞。