Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-89 (SQL命令中使用的特殊元素转义处理不恰当(SQL注入)) — Vulnerability Class 10242

10242 vulnerabilities classified as CWE-89 (SQL命令中使用的特殊元素转义处理不恰当(SQL注入)). AI Chinese analysis included.

CWE-89 represents a critical input validation weakness where software constructs SQL commands using untrusted data without properly sanitizing special characters. Attackers typically exploit this vulnerability by injecting malicious SQL syntax into user-facing inputs, such as login fields or search queries, to manipulate the database’s behavior. This exploitation can lead to unauthorized data access, data modification, or complete system compromise by bypassing authentication or executing arbitrary commands. Developers mitigate this risk by implementing strict input validation and, most effectively, using parameterized queries or prepared statements. These techniques ensure that user input is treated strictly as data rather than executable code, thereby preventing the injection of malicious SQL elements. By separating code logic from data inputs, applications maintain integrity and protect sensitive information from unauthorized manipulation.

MITRE CWE Description
The product constructs all or part of an SQL command using externally-influenced input from an upstream component, but it does not neutralize or incorrectly neutralizes special elements that could modify the intended SQL command when it is sent to a downstream component. Without sufficient removal or quoting of SQL syntax in user-controllable inputs, the generated SQL query can cause those inputs to be interpreted as SQL instead of ordinary user data.
Common Consequences (5)
Confidentiality, Integrity, Availability Execute Unauthorized Code or Commands
Adversaries could execute system commands, typically by changing the SQL statement to redirect output to a file that can then be executed.
Confidentiality Read Application Data
Since SQL databases generally hold sensitive data, loss of confidentiality is a frequent problem with SQL injection vulnerabilities.
Authentication Gain Privileges or Assume Identity, Bypass Protection Mechanism
If poor SQL commands are used to check user names and passwords or perform other kinds of authentication, it may be possible to connect to the product as another user with no previous knowledge of the password.
Access Control Bypass Protection Mechanism
If authorization information is held in a SQL database, it may be possible to change this information through the successful exploitation of a SQL injection vulnerability.
Integrity Modify Application Data
Just as it may be possible to read sensitive information, it is also possible to modify or even delete this information with a SQL injection attack.
Mitigations (5)
Architecture and Design Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid [REF-1482]. For example, consider using persistence layers such as Hibernate or Enterprise Java Beans, which can provide significant protection against SQL injection if used properly.
Architecture and Design If available, use structured mechanisms that automatically enforce the separation between data and code. These mechanisms may be able to provide the relevant quoting, encoding, and validation automatically, instead of relying on the developer to provide this capability at every point where output is generated. Process SQL queries using prepared statements, parameterized queries, or stored procedur…
Architecture and Design, Operation Run your code using the lowest privileges that are required to accomplish the necessary tasks [REF-76]. If possible, create isolated accounts with limited privileges that are only used for a single task. That way, a successful attack will not immediately give the attacker access to the rest of the software or its environment. For example, database applications rarely need to run as the database ad…
Architecture and Design For any security checks that are performed on the client side, ensure that these checks are duplicated on the server side, in order to avoid CWE-602. Attackers can bypass the client-side checks by modifying values after the checks have been performed, or by changing the client to remove the client-side checks entirely. Then, these modified values would be submitted to the server.
Implementation While it is risky to use dynamically-generated query strings, code, or commands that mix control and data together, sometimes it may be unavoidable. Properly quote arguments and escape any special characters within those arguments. The most conservative approach is to escape or filter all characters that do not pass an extremely strict allowlist (such as everything that is not alphanumeric or whit…
Examples (2)
In 2008, a large number of web servers were compromised using the same SQL injection attack string. This single string worked against many different programs. The SQL injection was then used to modify the web sites to serve malicious code.
The following code dynamically constructs and executes a SQL query that searches for items matching a specified name. The query restricts the items displayed to those where owner matches the user name of the currently-authenticated user.
... 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); ...
Bad · C#
SELECT * FROM items WHERE owner = <userName> AND itemname = <itemName>;
Informative
CVE ID Title CVSS Severity Published
CVE-2026-9074 IBM API Connect SQL Injection — API Connect 9.1 Critical 2026-07-08
CVE-2026-15067 Multiple Security Vulnerabilities in Terraform Provider for Snowflake Could Allow Privilege Escalation and Unauthorized Snowflake Account Takeover — Terraform Provider for Snowflake 8.8 High 2026-07-08
CVE-2026-15062 SQL Injection in Snowflake Snowpark Python SDK — Snowpark Python SDK 9.6 Critical 2026-07-08
CVE-2026-59257 n8n - SQL Injection in MySQL v1 executeQuery Operation via Expression Interpolation — n8n - - 2026-07-08
CVE-2026-8307 SQLi in Webbeyaz's Mediküm Web — Mediküm Web 9.8 Critical 2026-07-08
CVE-2026-6854 My Calendar <= 3.7.8 - Unauthenticated SQL Injection via 'mc_auth' and 'mc_host' Parameters — My Calendar – Accessible Event Manager 7.5 High 2026-07-08
CVE-2026-12936 Recurio <= 1.1.3 - Authenticated (Shop Manager+) SQL Injection via 'data' Parameter — Recurio – Ultimate Subscription for WooCommerce 4.9 Medium 2026-07-08
CVE-2026-6230 Tainacan <= 1.0.3 - Unauthenticated SQL Injection via 'geoquery' REST API Parameter — Tainacan 7.5 High 2026-07-08
CVE-2026-9700 Eventer <= 4.4.2 - Unauthenticated SQL Injection via 'code' Parameter — Eventer 7.5 High 2026-07-08
CVE-2026-55635 DataEase: Authenticated SQL Injection in Chart Quota Filters — dataease - - 2026-07-07
CVE-2026-33734 FOSSBilling has improper SQL neutralization in `Massmailer` recipient filters — FOSSBilling - - 2026-07-06
CVE-2026-14471 Authenticated SQL injection in the metrics-service retention policy subsystem of mcp-gateway-registry — MCP Gateway & Registry 8.1 High 2026-07-06
CVE-2026-14809 PROG MIS|Prog Management System - SQL Injection — Prog Management System 7.5 High 2026-07-06
CVE-2026-14799 CodeAstro Ecommerce Website my_account.php sql injection — Ecommerce Website 6.3 Medium 2026-07-06
CVE-2026-14798 CodeAstro Apartment Visitor Management System visitor-entry.php sql injection — Apartment Visitor Management System 6.3 Medium 2026-07-06
CVE-2026-14797 CodeAstro Apartment Visitor Management System edit-apartment.php sql injection — Apartment Visitor Management System 6.3 Medium 2026-07-06
CVE-2026-14796 CodeAstro Apartment Visitor Management System report.php sql injection — Apartment Visitor Management System 6.3 Medium 2026-07-06
CVE-2026-14795 CodeAstro Apartment Visitor Management System action-visitor.php sql injection — Apartment Visitor Management System 6.3 Medium 2026-07-06
CVE-2026-14774 itsourcecode Hospital Management System paymentdischarge.php sql injection — Hospital Management System 6.3 Medium 2026-07-05
CVE-2026-14773 itsourcecode Hospital Management System payment.php sql injection — Hospital Management System 6.3 Medium 2026-07-05
CVE-2026-14772 SourceCodester Class and Exam Timetabling System edit_course1.php sql injection — Class and Exam Timetabling System 7.3 High 2026-07-05
CVE-2026-14771 SourceCodester Class and Exam Timetabling System edit_exam1.php sql injection — Class and Exam Timetabling System 7.3 High 2026-07-05
CVE-2026-14770 SourceCodester Class and Exam Timetabling System edit_room.php sql injection — Class and Exam Timetabling System 7.3 High 2026-07-05
CVE-2026-14769 code-projects Real State Services pay.php sql injection — Real State Services 7.3 High 2026-07-05
CVE-2026-14768 code-projects Real State Services builderHome.php sql injection — Real State Services 7.3 High 2026-07-05
CVE-2026-14767 CodeAstro Ecommerce Website POST Parameter confirm.php sql injection — Ecommerce Website 6.3 Medium 2026-07-05
CVE-2026-14766 CodeAstro Apartment Visitor Management System POST Parameter search-result.php sql injection — Apartment Visitor Management System 6.3 Medium 2026-07-05
CVE-2026-14764 code-projects Hotel and Tourism Reservation Event Management add_event.php sql injection — Hotel and Tourism Reservation 7.3 High 2026-07-05
CVE-2026-14763 code-projects Hotel and Tourism Reservation Tour Reservations tour_reserves.php sql injection — Hotel and Tourism Reservation 7.3 High 2026-07-05
CVE-2026-14762 code-projects Hotel and Tourism Reservation Room Management rooms.php sql injection — Hotel and Tourism Reservation 7.3 High 2026-07-05

Vulnerabilities classified as CWE-89 (SQL命令中使用的特殊元素转义处理不恰当(SQL注入)) represent 10242 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.