GHSA-65cv-w493-7vhq
Sulu: Fix authorization bypass when creating preview links
Quick fix
GHSA-65cv-w493-7vhq — sulu/sulu: upgrade to the fixed version with the command below.
composer require sulu/sulu:^2.6.25Details
### Impact
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.
### Patches
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:
- The preview link token is derived from `substr(md5(uuid), 0, 12)` (about 48 bits of entropy). - Preview links never expire.
### Workarounds
If you cannot upgrade immediately:
- Restrict backend access so that only trusted users can reach the administration interface. - Apply the fix manually by adding a VIEW permission check (via `SecurityCheckerInterface` and the resource's security context) inside `PreviewLinkManager::generate()` and `revoke()`.
Are you affected?
Enter the version of the package you're using.
Affected packages
References
- https://github.com/sulu/sulu/security/advisories/GHSA-65cv-w493-7vhq[WEB]
- https://nvd.nist.gov/vuln/detail/CVE-2026-82394[ADVISORY]
- https://github.com/sulu/sulu/commit/44d8844c3514a70b769ab791b9530df806240fab[WEB]
- https://github.com/sulu/sulu[PACKAGE]
- https://github.com/sulu/sulu/releases/tag/2.6.25[WEB]
- https://github.com/sulu/sulu/releases/tag/3.0.8[WEB]