CVE-2020-12469: Subrion CMS PHP Object Injection
6.5
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.36973%
CWE
Published
5/24/2022
Updated
4/25/2024
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
intelliants/subrion | composer | <= 4.2.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from improper deserialization of user-controlled input in the 'subpages' parameter. The exploit requires sending serialized data to blocks/edit
endpoint, which gets processed by unserialize()
in admin/blocks.php
. This matches the PHP
object injection pattern where unserialize()
is called on untrusted data (CWE-502). The proof-of-concept demonstrates direct manipulation of serialized data leading to file deletion, confirming the insecure use of unserialize()
.