CWE-89 SQL命令中使用的特殊元素转义处理不恰当(SQL注入) 类弱点 9545 条 CVE 漏洞汇总,含 AI 中文分析。
CWE-89即SQL注入,属于输入验证类漏洞。当软件未对用户输入进行充分净化或转义,直接将其拼接到SQL命令中时,攻击者可注入恶意SQL代码,从而篡改查询逻辑、绕过身份验证或窃取敏感数据。开发者应避免直接拼接字符串,转而使用参数化查询或预编译语句,确保用户输入仅被视为数据而非可执行代码,从而从根本上阻断注入路径。
... string userName = ctx.getAuthenticatedUserName(); string query = "SELECT * FROM items WHERE owner = '" + userName + "' AND itemname = '" + ItemName.Text + "'"; sda = new SqlDataAdapter(query, conn); DataTable dt = new DataTable(); sda.Fill(dt); ...SELECT * FROM items WHERE owner = <userName> AND itemname = <itemName>;| CVE ID | 标题 | CVSS | 风险等级 | Published |
|---|---|---|---|---|
| CVE-2023-52082 | Lychee SQL注入漏洞 — Lychee | 8.8 | High | 2023-12-28 |
| CVE-2023-7129 | Voting System SQL注入漏洞 — Voting System | 5.5 | Medium | 2023-12-28 |
| CVE-2023-7128 | Voting System SQL注入漏洞 — Voting System | 6.3 | Medium | 2023-12-28 |
| CVE-2023-7127 | Automated Voting System SQL注入漏洞 — Automated Voting System | 6.3 | Medium | 2023-12-28 |
| CVE-2023-7126 | Automated Voting System SQL注入漏洞 — Automated Voting System | 6.3 | Medium | 2023-12-28 |
| CVE-2023-50848 | WordPress Plugin 404 Solution SQL注入漏洞 — 404 Solution | 7.6 | High | 2023-12-28 |
| CVE-2023-50849 | WordPress Plugin E2Pdf SQL注入漏洞 — E2Pdf – Export To Pdf Tool for WordPress | 7.6 | High | 2023-12-28 |
| CVE-2023-50852 | WordPress Plugin Booking Calendar SQL注入漏洞 — Booking Calendar | Appointment Booking | BookIt | 7.6 | High | 2023-12-28 |
| CVE-2023-50851 | WordPress Plugin Appointment Booking Calendar SQL注入漏洞 — Appointment Booking Calendar — Simply Schedule Appointments Booking Plugin | 7.6 | High | 2023-12-28 |
| CVE-2023-50853 | WordPress Plugin Advanced Form Integration SQL注入漏洞 — Advanced Form Integration – Connect WooCommerce and Contact Form 7 to Google Sheets and other platforms | 7.6 | High | 2023-12-28 |
| CVE-2023-50854 | WordPress Plugin Squirrly SEO SQL注入漏洞 — Squirrly SEO - Advanced Pack | 7.6 | High | 2023-12-28 |
| CVE-2023-50855 | WordPress Plugin Pre* Party Resource Hints SQL注入漏洞 — Pre* Party Resource Hints | 7.6 | High | 2023-12-28 |
| CVE-2023-50856 | WordPress Plugin Funnel Builder for WordPress by FunnelKit SQL注入漏洞 — Funnel Builder for WordPress by FunnelKit – Customize WooCommerce Checkout Pages, Create Sales Funnels & Maximize Profits | 7.6 | High | 2023-12-28 |
| CVE-2023-50857 | WordPress Plugin Recover WooCommerce Cart Abandonment, Newsletter, Email Marketing, Marketing Automation By FunnelKit 安全漏洞 — Recover WooCommerce Cart Abandonment, Newsletter, Email Marketing, Marketing Automation By FunnelKit | 7.6 | High | 2023-12-28 |
| CVE-2023-4671 | Talent Software ECOP SQL注入漏洞 — ECOP | 9.8 | Critical | 2023-12-28 |
| CVE-2023-7123 | Medicine Tracker System SQL注入漏洞 — Medicine Tracking System | 6.3 | Medium | 2023-12-27 |
| CVE-2023-7111 | Library Management System SQL注入漏洞 — Library Management System | 6.3 | Medium | 2023-12-26 |
| CVE-2023-7110 | Library Management System SQL注入漏洞 — Library Management System | 7.3 | High | 2023-12-26 |
| CVE-2023-7109 | Library Management System SQL注入漏洞 — Library Management System | 7.3 | High | 2023-12-26 |
| CVE-2023-7107 | E-Commerce Website 安全漏洞 — E-Commerce Website | 7.3 | High | 2023-12-25 |
| CVE-2023-7106 | E-Commerce Website SQL注入漏洞 — E-Commerce Website | 6.3 | Medium | 2023-12-25 |
| CVE-2023-7105 | E-Commerce Website SQL注入漏洞 — E-Commerce Website | 4.7 | Medium | 2023-12-25 |
| CVE-2023-7100 | Restaurant Table Booking System SQL注入漏洞 — Restaurant Table Booking System | 6.3 | Medium | 2023-12-25 |
| CVE-2023-7099 | Nipah virus Testing Management System SQL注入漏洞 — Nipah Virus Testing Management System | 6.3 | Medium | 2023-12-25 |
| CVE-2023-7097 | Water Billing System SQL注入漏洞 — Water Billing System | 6.3 | Medium | 2023-12-25 |
| CVE-2023-7096 | Faculty Management System SQL注入漏洞 — Faculty Management System | 4.7 | Medium | 2023-12-25 |
| CVE-2023-51448 | Cacti SQL注入漏洞 — cacti | 8.8 | High | 2023-12-22 |
| CVE-2023-49085 | Cacti SQL注入漏洞 — cacti | 8.8 | High | 2023-12-22 |
| CVE-2023-49689 | Kashipara Job Portal SQL注入漏洞 — Job Portal | 9.8 | Critical | 2023-12-21 |
| CVE-2023-49688 | Kashipara Job Portal SQL注入漏洞 — Job Portal | 9.8 | Critical | 2023-12-21 |
CWE-89(SQL命令中使用的特殊元素转义处理不恰当(SQL注入)) 是常见的弱点类别,本平台收录该类弱点关联的 9545 条 CVE 漏洞。