Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-63221 Details

ANALYZED


This CVE record has been analyzed and enriched by NVDAPI.com as an independent party.

Description

CodeIgniter is a PHP full-stack web framework. From 4.3.0 through 4.7.3, Query Builder deleteBatch() substitutes bound values from where() conditions into generated SQL while ignoring their escape flags, allowing user-controlled condition values to be interpreted as SQL. This affects only the deleteBatch() code path. Regular delete() operations escape where() binds correctly. This issue is fixed in version 4.7.4.

Metrics

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

Weakness Enumeration

CWE-IDCWE NameSource
CWE-89Improper Neutralization of Special Elements used in an SQL Command ('SQL Injection')[email protected]

Affected Products

ProductVersions
CodeIgniter
>= 4.3.0, < 4.7.4 (semver)

CPE

  • cpe:2.3:a:codeigniter:codeigniter:*:*:*:*:*:*:*:*

Remediation

  • Upgrade: 4.7.4moderate efforthttps://github.com/codeigniter4/CodeIgniter4/releases/tag/v4.7.4
  • Workaround:low effort

    Do not pass user-controlled input to `where()` when using `deleteBatch()`. For user-controlled conditions, use a normal `delete()` with Query Builder binds instead of `deleteBatch()`. Where possible, express required matching values through the batch data and `onConstraint()` rather than as separate user-controlled `where()` clauses.

Change History

2 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-63221
NVD Published Date:
Jul 31, 2026
NVD Last Modified:
Sep 8, 2026
Source:
[email protected]
CVE-2026-63221 Details - Not Deferred