PT-2026-75930 · Packagist · Winter/Wn-Cms-Module
Published
2026-08-12
·
Updated
2026-08-12
CVSS v3.1
6.8
Medium
| Vector | AV:N/AC:L/PR:H/UI:N/S:C/C:H/I:N/A:N |
Impact
Affected versions of Winter CMS did not enforce per-template-type permission checks in the CMS section's AJAX handlers. The CMS controller (
CmsControllersIndex) used OR-logic across its five permissions (cms.manage pages, cms.manage partials, cms.manage layouts, cms.manage content, cms.manage assets) to control access to the section as a whole, but individual handlers such as onSave(), onDelete(), and onDeleteTemplates() did not verify that the authenticated user holds the specific permission corresponding to the requested template type.This allowed a backend user with any single Theme Editor permission (e.g.
cms.manage pages) to craft AJAX requests targeting template types outside their authorized scope — for example, deleting layouts, modifying partials, or reading content files.In addition, the
AssetList widget was registered for all users who passed the controller gate regardless of whether they held the cms.manage assets permission, and its onUpload() handler was missing the validateRequestTheme() call that is present on all other mutating handlers in the same widget. This allowed unauthorized file uploads into the active theme's asset directory.To actively exploit this security issue, an attacker would need access to the Backend with a user account with any of the following permissions:
cms.manage pagescms.manage partialscms.manage layoutscms.manage contentcms.manage assets
The Winter CMS maintainers strongly recommend that all Winter CMS sites that rely on granular CMS permission assignments (specifically users with only access to
cms.manage content to only be able to edit content files through the Theme Editor) to update immediately.Patches
Per-template-type permission checks are now enforced on all Theme Editor AJAX handlers, the
AssetList widget is only registered for users with the cms.manage assets permission, and onUpload() now includes theme validation consistent with the other mutating handlers.This security issue has been fixed as of v1.2.13.
Workarounds
If users cannot upgrade, they may apply the following changes to their Winter CMS installation manually to resolve this issue:
- In
modules/cms/controllers/Index.php, wrap each widget registration in the constructor with the correspondinghasAccess()check, and add avalidateRequestType()call to theindex onOpenTemplate(),onSave(),onCreateTemplate(),onDeleteTemplates(),onDelete(),onCommit(), andonReset()handlers that verifies the user holds the permission for the requested template type. - In
modules/cms/widgets/AssetList.php, add a$this->validateRequestTheme()call at the top of theonUpload()method.
Fix
Found an issue in the description? Have something to add? Feel free to write us 👾
Weakness Enumeration
Related Identifiers
Affected Products
Winter/Wn-Cms-Module