OSV 1.4.0 · github-reviewed · 修改于 2026-09-02 23:09
发布时间
2026-09-02 23:09
GitHub 审查时间
2026-09-02 23:09
NVD 发布时间
2026-09-01 06:17
源文件
advisories/github-reviewed/2026/09/GHSA-65cv-w493-7vhq/GHSA-65cv-w493-7vhq.json
A missing authorization check on the preview link endpoint lets a backend user create a public, unauthenticated preview URL for content they are not allowed to see.
PreviewLinkController (and the underlying PreviewLinkManager::generate() / revoke()) never enforced a permission on the target resource. Any authenticated administration user could call the generate action for any page, article or snippet, including content in a webspace or area they have no VIEW rights on. The endpoint returns a public render URL that resolves the content solely by an opaque token, so the attacker (or anyone they share the link with) can then read the restricted content without authentication.
This affects installations that use Sulu role and webspace permissions to restrict who may see certain content. Exploitation requires an authenticated backend user and the id of the target resource.
Fixed in 2.6.x and 3.0.x. PreviewLinkManager::generate() and revoke() now resolve the resource's security context and enforce a VIEW permission check before a preview link is created or removed. A user without VIEW access on the resource receives a 403 response and no link is created.
Note on scope: this patch closes the authorization bypass. Two related hardening items from the original report are tracked as a separate follow-up because they require a database migration:
substr(md5(uuid), 0, 12) (about 48 bits of entropy).If you cannot upgrade immediately:
SecurityCheckerInterface and the resource's security context) inside PreviewLinkManager::generate() and revoke().