CVE-2023-45824 – oro/platform
Package
Manager: composer
Name: oro/platform
Vulnerable Version: >=5.1.0 <5.1.4 || >=5.0.0 <=5.0.12 || >=4.2.0 <=4.2.10
Severity
Level: Medium
CVSS v3.1: CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
CVSS v4.0: CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/VI:N/VA:N/SC:N/SI:N/SA:N
EPSS: 0.0024 pctl0.47239
Details
Pinned entity creation form shows wrong data ### Impact Logged in user can access page state data of pinned pages of other users by pageId hash. ### Patch ```patch --- src/Oro/Bundle/NavigationBundle/Controller/Api/PagestateController.php +++ src/Oro/Bundle/NavigationBundle/Controller/Api/PagestateController.php @@ -158,6 +158,13 @@ AbstractPageState::generateHash($this->get('request_stack')->getCurrentRequest()->get('pageId')) ); + if ($entity) { + $entity = $this->getEntity($entity->getId()); + } + if (!$entity) { + return $this->handleNotFound(); + } + return $this->handleView($this->view($this->getState($entity), Response::HTTP_OK)); } ```
Metadata
Created: 2024-03-25T19:39:21Z
Modified: 2024-03-25T22:25:03Z
Source: https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2024/03/GHSA-vxq2-p937-3px3/GHSA-vxq2-p937-3px3.json
CWE IDs: ["CWE-200"]
Alternative ID: GHSA-vxq2-p937-3px3
Finding: F310
Auto approve: 1