GHSA-mpmw-f6h6-3g26
### Impact `Backend\Controllers\MyAccount`, introduced in v1.2.13, declares an empty `$requiredPermissions` array so that any authenticated backend user can manage their own account. It implements the `FormController` behavior, which exposes three routable actions — `create`, `update` and `preview` — that each take a record id from the URL. `index()` passes the authenticated user's own id to the behavior, but the inherited actions were left routable and `formFindModelObject()` was not scoped, so a caller-supplied id resolved against an unscoped `Backend\Models\User` query: ``` GET /backend/backend/myaccount/preview/{other_user_id} ``` `preview` disclosed the target user's first name, last name, login, email address and avatar; `update` was equally routable and additionally disclosed role, group membership, superuser flag and throttle state. Password controls render a mask, so no credential material was exposed. Backend user ids are sequential and trivially enumerated, and as these are `GET` actions no CSRF token is involved. The behavior's AJAX handlers (`create_onSave`, `update_onSave`, `update_onDelete`) were also dispatchable on these routes, but cross-user writes were blocked by the `Backend\Models\User` authorization guards added in v1.2.13. The confirmed impact is unauthorized disclosure of backend user profile data. To actively exploit this security issue, an attacker would need access to the Backend with a user account with any level of access. ### Patches `MyAccount` no longer exposes the generic record actions it never used as routes, and its form lookup is now pinned to the authenticated user: - `protected $guarded = ['create', 'update', 'preview'];` removes the inherited actions from routing. The guard has to be at the routing layer, as handler dispatch (`{action}_{handler}`) runs before the page action. - `formExtendQuery()` constrains every lookup made by the behavior to the current user's key. This security issue has been fixed as of **v1.2.
Properties
- ghsa_id
- GHSA-mpmw-f6h6-3g26
- severity
- medium
- summary
- Winter: My Account preview exposes another backend user's profile by record ID
- cvss_score
- 4.3
- cve_id
- GHSA-mpmw-f6h6-3g26
- cvss_vector
- CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N
- is_ghsa_only
- true
- ghsa_published
- 2026-08-20T18:44:45Z
- source_url
- https://github.com/advisories/GHSA-mpmw-f6h6-3g26
- ghsa_updated
- 2026-08-20T18:44:49Z
Related Entities (4)
VULNERABLE_TO (1)
AFFECTS (1)
HAS_WEAKNESS (1)
REPORTED_BY (1)
Explore deeper with Ninja Signal's threat intelligence graph