CVE-2026-44172
Official description Straight from the sourceThe vendor's or NVD's own wording, published unedited. Authoritative, but often terse — it says what broke, rarely what to do.
NVD · uneditedMariaDB server is a community developed fork of MySQL server. In versions 3.3.18 and 3.4.8, an application that was taking non-validated user input, escaping it with mysql_real_escape_string() and sending it to the database using text protocol and big5 character set was vulnerable to SQL injections, even though mysql_real_escape_string() was supposed to prevent them. This issue has been patched in versions 3.3.19 and 3.4.9.
Technical summary Written by usOur analysis, written from the advisory, the CVSS vector and the affected-version data. It adds context the advisory leaves out, and never invents facts that are not in the source.
dbcve analysis · high confidenceMariaDB versions 3.3.18 and 3.4.8 contain a SQL injection vulnerability when using the big5 character set with mysql_real_escape_string(). The escaping function can be bypassed due to character set handling, allowing attackers to inject malicious SQL through user input that was supposedly sanitized.
Verify against the referenced sources before acting — the references below are authoritative for this CVE, this summary is not.
Affected products & versions What the vendor confirmedThe version ranges the vendor confirmed as vulnerable. If your version sits inside a range here, treat yourself as exposed until you have upgraded.
NVD · CPE data= 3.3.18= 3.4.8= 10.0CVSS breakdown How the score is builtThe industry scoring standard. It rates how the flaw is reached, what it takes to exploit, and what an attacker gains — the score is derived from those, not the other way round.
From the vector- Attack vector
- Network
- Complexity
- Low
- Privileges
- None
- User interaction
- None
- Scope
- Unchanged
- Confidentiality
- High
- Integrity
- High
- Availability
- None
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
Am I affected? How to checkSteps we derive from the advisory and the affected-version data, so you can decide whether this CVE reaches your setup. They are a guide, not a scan — your own configuration is the authority.
dbcve checksWork through these to decide whether this CVE applies to you.
-
Check MariaDB server versionRun 'SELECT VERSION();' on the database server or execute 'mysqld --version' from command lineAffected if Version is exactly 3.3.18 or 3.4.8
-
Identify big5 character set usageExecute 'SHOW VARIABLES LIKE 'character_set_%';' and inspect character_set_connection, character_set_client, and character_set_results valuesAffected if Any of these variables are set to 'big5'
-
Confirm text protocol is activeText protocol is the default for MariaDB connections. Check application connection strings or session variables for protocol settings. Prepared statements use binary protocol and are not affectedAffected if Connections use default text protocol (not prepared statements)
-
Locate mysql_real_escape_string usageAudit application source code for calls to mysql_real_escape_string or mysqli_real_escape_string, specifically where the connection character set is configured as big5Affected if Application code uses mysql_real_escape_string with big5-configured connections
Environment is affected if MariaDB version is 3.3.18 or 3.4.8 AND applications use big5 character set with text protocol while relying on mysql_real_escape_string for input sanitization
Generated from the published advisory. Verify against your own configuration.
Remediation Closing itWhat it takes to close this. Where a vendor fix exists we point at it; where none exists we say so plainly, and can build one. Effort estimates are scoped from the advisory, not from your codebase.
dbcve · scopedUpgrade MariaDB server to version 3.3.19 or 3.4.9 to apply the patch. Additionally, use parameterized queries (prepared statements) instead of escaped strings as a defense-in-depth measure.
MariaDB 3.3.19 or 3.4.9 (or latest stable 3.3.x/3.4.x release)
- 1. Identify the current MariaDB server version using: `mysql --version` or `SELECT VERSION();`
- 2. Stop the MariaDB service before upgrading: `systemctl stop mariadb` or `service mysql stop`
- 3. Upgrade MariaDB to version 3.3.19 or 3.4.9 (or the latest stable release in that branch) using your system's package manager (e.g., `yum update mariadb-server`, `apt install mariadb-server`, or `zypper update mariadb`)
- 4. Start the MariaDB service after upgrade: `systemctl start mariadb` or `service mysql start`
- 5. Verify the new version is installed: `mysql --version` or `SELECT VERSION();`
- 6. Review the MariaDB release notes for version 3.3.19/3.4.9 for any additional post-upgrade actions required
Generated from the published advisory — verify against the referenced sources before acting.
- Consultation4.0 h
- Implementation8.0 h
- Testing12.0 h
- Review / QA4.0 h
An estimate, not a bill — we confirm scope with you before any work starts. Need it this week? Rush from $7,616.
Scan for this in your stack
Free · runs locallyCheck whether your project pulls in CVE-2026-44172 — or any other known-vulnerable package — straight from your lock files. Free and open source; it runs locally and uploads nothing.
References Go to the primary sourcePrimary sources — vendor advisories, patches and trackers. Where our summary and a reference disagree, the reference wins.
Primary sourcesPractitioner notes
ContributedPeer-ranked notes from engineers who’ve handled CVE-2026-44172 in production — separate from our analysis above.
The advisory tells you what broke. It rarely tells you what actually worked. If you’ve dealt with this one, that detail is what the next engineer is searching for.
- The version that genuinely resolved it — not the one the vendor claimed
- A config change or rule that shut the vector down
- A gotcha in the upgrade path that cost you an afternoon
No notes yet
Be the first to add a field note for this CVE — a mitigation you’ve verified, a version caveat, or a link to a working fix. Sign in above to contribute.
A place for practitioners to share what actually worked: a mitigation you’ve tested, a configuration change, a version- or environment-specific caveat, or a link to a verified patch. The most useful notes rise to the top as peers upvote them, so the signal stays high.
- Verified mitigations, workarounds, and config changes
- Version or environment caveats, and links to real fixes
- No weaponised exploit code, or anything meant to cause harm
- No spam, self-promotion, credentials, or personal data