Mend.io Vulnerability Database
The largest open source vulnerability database
What is a Vulnerability ID?
New vulnerability? Tell us about it!
CVE-2026-48062
Published:June 11, 2026
Updated:June 15, 2026
Impact The "ext_in" upload validation rule checked the MIME-derived guessed extension instead of the client-provided filename extension. As a result, an uploaded file named "shell.php" containing GIF-like content could pass validation such as: uploaded[avatar]|is_image[avatar]|mime_in[avatar,image/gif]|ext_in[avatar,gif] because the detected MIME type maps to "gif", even though the uploaded filename extension is "php". Applications are impacted if they: - accept user-controlled uploads, - rely on "ext_in" to validate the uploaded filename extension, - save uploaded files using the original client filename: "$file->move($path)", - store uploads in a web-accessible directory, - and allow PHP or other executable files to run from that directory. In those conditions, this may lead to arbitrary code execution. The default application does not expose such an upload endpoint. Patches Upgrade to v4.7.3 or later. Workarounds - Save uploads outside the public web root, preferably under "writable/uploads" - Use "$file->store()" or "$file->move($path, $file->getRandomName())" instead of preserving the original filename - Disable script execution in any public upload directory - Manually verify the client filename extension before moving the file - Reject files when "$file->getClientExtension()" is not in the allowed list or does not match "$file->guessExtension()" Resources - "CodeIgniter4 uploaded files documentation" (https://codeigniter.com/user_guide/libraries/uploaded_files.html#moving-files) - "CodeIgniter4 file upload validation documentation" (https://codeigniter.com/user_guide/libraries/validation.html#rules-for-file-uploads) - "CWE-434: Unrestricted Upload of File with Dangerous Type" (https://cwe.mitre.org/data/definitions/434.html) - "OWASP File Upload Cheat Sheet" (https://cheatsheetseries.owasp.org/cheatsheets/File_Upload_Cheat_Sheet.html)
Affected Packages
https://github.com/codeigniter4/CodeIgniter4.git (GITHUB):
Affected version(s) >=v4.0.0-alpha.1 <v4.7.3
Fix Suggestion:
Update to version v4.7.3
codeigniter4/framework (PHP):
Affected version(s) >=dev-master <v4.7.3
Fix Suggestion:
Update to version v4.7.3
Do you need more information?
Contact Us
CVSS v4
Base Score:
9.3
Attack Vector
NETWORK
Attack Complexity
LOW
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
NONE
Vulnerable System Confidentiality
HIGH
Vulnerable System Integrity
HIGH
Vulnerable System Availability
HIGH
Subsequent System Confidentiality
NONE
Subsequent System Integrity
NONE
Subsequent System Availability
NONE
CVSS v3
Base Score:
9.8
Attack Vector
NETWORK
Attack Complexity
LOW
Privileges Required
NONE
User Interaction
NONE
Scope
UNCHANGED
Confidentiality
HIGH
Integrity
HIGH
Availability
HIGH
Weakness Type (CWE)
Unrestricted Upload of File with Dangerous Type