CWE-89 SQL命令中使用的特殊元素转义处理不恰当(SQL注入) 类弱点 9921 条 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-2025-1381 | Code-Projects Real Estate Property Management System 注入漏洞 — Real Estate Property Management System | 6.3 | Medium | 2025-02-17 |
| CVE-2025-1380 | Codezips Gym Management System 注入漏洞 — Gym Management System | 6.3 | Medium | 2025-02-17 |
| CVE-2025-1379 | Code-Projects Real Estate Property Management System 注入漏洞 — Real Estate Property Management System | 6.3 | Medium | 2025-02-17 |
| CVE-2025-1389 | Learning Digital Orca HCM SQL注入漏洞 — Orca HCM | 8.8 | High | 2025-02-17 |
| CVE-2025-1374 | Code-Projects Real Estate Property Management System 注入漏洞 — Real Estate Property Management System | 6.3 | Medium | 2025-02-17 |
| CVE-2025-26755 | WordPress plugin WP Airbnb Review Slider SQL注入漏洞 — WP Airbnb Review Slider | 7.6 | High | 2025-02-16 |
| CVE-2025-22290 | WordPress plugin LTL Freight Quotes – FreightQuote Edition SQL注入漏洞 — LTL Freight Quotes – FreightQuote Edition | 9.3 | Critical | 2025-02-16 |
| CVE-2025-1356 | Library Card System 注入漏洞 — Library Card System | 6.3 | Medium | 2025-02-16 |
| CVE-2024-13488 | WordPress plugin LTL Freight Quotes – Estes Edition SQL注入漏洞 — LTL Freight Quotes – Estes Edition | 7.5 | High | 2025-02-15 |
| CVE-2024-13500 | WordPress plugin WP Project Manager SQL注入漏洞 — Project Manager – AI Powered Project Management, Task Management, Kanban Board & Time Tracker | 6.5 | Medium | 2025-02-15 |
| CVE-2025-22208 | Joomsky JS Jobs 安全漏洞 — JS Jobs component for Joomla | 7.2 | - | 2025-02-15 |
| CVE-2025-22209 | Joomsky JS Jobs 安全漏洞 — JS Jobs component for Joomla | 7.2 | - | 2025-02-15 |
| CVE-2025-25206 | eLabFTW SQL注入漏洞 — elabftw | 8.3 | High | 2025-02-14 |
| CVE-2024-13152 | BSS Mobuy Online Machinery Monitoring Panel 安全漏洞 — Mobuy Online Machinery Monitoring Panel | 10.0 | Critical | 2025-02-14 |
| CVE-2025-0821 | WordPress plugin Bit Assist SQL注入漏洞 — Chat Widget: Floating Customer Support Button for 30+ Channels, Supporting SMS, Calls, and Chat – Bit Assist | 6.5 | Medium | 2025-02-14 |
| CVE-2025-1227 | ywoa 安全漏洞 — ywoa | 6.3 | Medium | 2025-02-12 |
| CVE-2025-1224 | ywoa 注入漏洞 — ywoa | 6.3 | Medium | 2025-02-12 |
| CVE-2025-1216 | yimioa 安全漏洞 — ywoa | 6.3 | Medium | 2025-02-12 |
| CVE-2025-1210 | Code-Projects Wazifa System 注入漏洞 — Wazifa System | 6.3 | Medium | 2025-02-12 |
| CVE-2025-1206 | Codezips Gym Management System 注入漏洞 — Gym Management System | 6.3 | Medium | 2025-02-12 |
| CVE-2025-1202 | SourceCodester Best Church Management Software 注入漏洞 — Best Church Management Software | 6.3 | Medium | 2025-02-12 |
| CVE-2025-1201 | SourceCodester Best Church Management Software 注入漏洞 — Best Church Management Software | 6.3 | Medium | 2025-02-12 |
| CVE-2025-1200 | SourceCodester Best Church Management Software 注入漏洞 — Best Church Management Software | 6.3 | Medium | 2025-02-12 |
| CVE-2025-26348 | Q-Free MAXTIME Suite SQL注入漏洞 — MaxTime | 5.5 | Medium | 2025-02-12 |
| CVE-2025-26346 | Q-Free MAXTIME Suite SQL注入漏洞 — MaxTime | 5.5 | Medium | 2025-02-12 |
| CVE-2025-1199 | SourceCodester Best Church Management Software 注入漏洞 — Best Church Management Software | 6.3 | Medium | 2025-02-12 |
| CVE-2025-1197 | Code-Projects Real Estate Property Management System SQL注入漏洞 — Real Estate Property Management System | 6.3 | Medium | 2025-02-12 |
| CVE-2024-13480 | WordPress plugin LTL Freight Quotes – For Customers of FedEx Freight SQL注入漏洞 — LTL Freight Quotes – For Customers of FedEx Freight | 7.5 | High | 2025-02-12 |
| CVE-2024-13532 | WordPress plugin Small Package Quotes SQL注入漏洞 — Small Package Quotes – Purolator Edition | 7.5 | High | 2025-02-12 |
| CVE-2024-13477 | WordPress plugin LTL Freight Quotes SQL注入漏洞 — LTL Freight Quotes – Unishippers Edition | 7.5 | High | 2025-02-12 |
CWE-89(SQL命令中使用的特殊元素转义处理不恰当(SQL注入)) 是常见的弱点类别,本平台收录该类弱点关联的 9921 条 CVE 漏洞。