PT-2026-80315 · Pypi · Django Cms
Published
2026-08-20
·
Updated
2026-08-20
CVSS v3.1
6.5
Medium
| Vector | AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:N/A:N |
Summary
The structure-board endpoint (
render object structure) renders a page's plugin structure without verifying that the requesting user is allowed to view the page. The edit and preview endpoints enforce this via render page(), but the structure endpoint does not, allowing a low-privileged staff user to read the plugin structure of a view-restricted page.Details
render object structure (in cms/views.py) loads the PageContent object and renders cms/toolbar/structure.html directly. Unlike render object endpoint (used by edit/preview), which renders through render pagecontent → render page and calls user can view page(request.user, page) (returning 404 when the user may not view the page), the structure endpoint performs no page-level authorization.The rendered structure board includes each plugin's
get short description() (e.g. link names/URLs, text snippets), so the content of a restricted page is disclosed, not just its shape.Impact
A staff user (any account with
is staff=True) who lacks view permission on a view-restricted page can retrieve that page's plugin structure and short descriptions by requesting the structure endpoint with the page's content-type id and object id.This only applies when
CMS PERMISSION=True and the page has view restrictions (or CMS PUBLIC FOR='staff'). Sites without per-page view restrictions are not affected.Patches
Fixed in 5.0.8: the structure endpoint now enforces
user can view page() for PageContent objects, matching edit/preview.Workarounds
None other than restricting staff access. Upgrade is recommended.
Credits
Reported by the security team at the University of Sydney ([@reporter]).
Fix
Missing Authorization
Improper Authorization
Found an issue in the description? Have something to add? Feel free to write us 👾
Related Identifiers
Affected Products
Django Cms