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-49625 | Kashipara Billing Software SQL注入漏洞 — Billing Software | 9.8 | Critical | 2024-01-04 |
| CVE-2023-49624 | Kashipara Billing Software 安全漏洞 — Billing Software | 9.8 | Critical | 2024-01-04 |
| CVE-2023-49622 | Kashipara Billing Software SQL注入漏洞 — Billing Software | 9.8 | Critical | 2024-01-04 |
| CVE-2023-6981 | WordPress Plugin WP SMS SQL注入漏洞 — WSMS (formerly WP SMS) – SMS & MMS Notifications with OTP and 2FA for WooCommerce | 6.1 | Medium | 2024-01-03 |
| CVE-2023-6436 | Ekol Informatics Website Template SQL注入漏洞 — Website Template | 9.8 | Critical | 2024-01-02 |
| CVE-2024-0182 | Engineers Online Portal SQL注入漏洞 — Engineers Online Portal | 7.3 | High | 2024-01-01 |
| CVE-2023-51423 | WordPress Plugin Webinar SQL注入漏洞 — Webinar Plugin: Create live/evergreen/automated/instant webinars, stream & Zoom Meetings | WebinarIgnition | 9.3 | Critical | 2023-12-31 |
| CVE-2023-51469 | WordPress Plugin Checkout Mestres WP SQL注入漏洞 — Checkout Mestres WP | 9.3 | Critical | 2023-12-31 |
| CVE-2023-52131 | WordPress Plugin Page Generator SQL注入漏洞 — Page Generator | 7.6 | High | 2023-12-31 |
| CVE-2023-51547 | WordPress Plugin Fluent Support SQL注入漏洞 — Fluent Support – WordPress Helpdesk and Customer Support Ticket Plugin | 7.6 | High | 2023-12-31 |
| CVE-2023-52132 | WordPress Plugin WP Adminify SQL注入漏洞 — WP Adminify | 7.6 | High | 2023-12-31 |
| CVE-2023-52133 | WordPress Plugin Most And Least Read Posts Widget SQL注入漏洞 — Most And Least Read Posts Widget | 8.5 | High | 2023-12-31 |
| CVE-2023-52134 | WordPress Plugin GEO my WordPress SQL注入漏洞 — GEO my WordPress | 7.6 | High | 2023-12-31 |
| CVE-2023-7191 | S-CMS SQL注入漏洞 — S-CMS | 5.5 | Medium | 2023-12-31 |
| CVE-2023-7190 | S-CMS SQL注入漏洞 — S-CMS | 5.5 | Medium | 2023-12-31 |
| CVE-2023-7189 | S-CMS SQL注入漏洞 — S-CMS | 5.5 | Medium | 2023-12-31 |
| CVE-2023-7188 | Shipping 100 Fahuo100 安全漏洞 — Fahuo100 | 5.0 | Medium | 2023-12-31 |
| CVE-2023-7186 | 7-card Fakabao SQL注入漏洞 — Fakabao | 5.5 | Medium | 2023-12-31 |
| CVE-2023-7185 | 7-card Fakabao SQL注入漏洞 — Fakabao | 5.5 | Medium | 2023-12-31 |
| CVE-2023-7184 | 7-card Fakabao SQL注入漏洞 — Fakabao | 5.5 | Medium | 2023-12-31 |
| CVE-2023-7183 | 7-card Fakabao SQL注入漏洞 — Fakabao | 5.5 | Medium | 2023-12-31 |
| CVE-2023-52180 | WordPress Plugin Recipe Maker For Your Food Blog from Zip Recipes SQL注入漏洞 — Recipe Maker For Your Food Blog from Zip Recipes | 7.6 | High | 2023-12-31 |
| CVE-2023-7130 | College Notes Gallery SQL注入漏洞 — College Notes Gallery | 6.3 | Medium | 2023-12-31 |
| CVE-2023-7180 | Tongda2000 SQL注入漏洞 — OA 2017 | 5.5 | Medium | 2023-12-30 |
| CVE-2023-7179 | Online College Library System 安全漏洞 — Online College Library System | 4.7 | Medium | 2023-12-30 |
| CVE-2023-7178 | Online College Library System SQL注入漏洞 — Online College Library System | 4.7 | Medium | 2023-12-30 |
| CVE-2023-7177 | Online College Library System SQL注入漏洞 — Online College Library System | 4.7 | Medium | 2023-12-30 |
| CVE-2023-7176 | Online College Library System SQL注入漏洞 — Online College Library System | 4.7 | Medium | 2023-12-30 |
| CVE-2023-7175 | Online College Library System SQL注入漏洞 — Online College Library System | 4.7 | Medium | 2023-12-30 |
| CVE-2023-7172 | PHPGurukul Hospital Management System SQL注入漏洞 — Hospital Management System | 7.3 | High | 2023-12-30 |
CWE-89(SQL命令中使用的特殊元素转义处理不恰当(SQL注入)) 是常见的弱点类别,本平台收录该类弱点关联的 9545 条 CVE 漏洞。