CVE-2026-45342

LinkAce is a self-hosted archive to collect website links. Prior to 2.5.6, LinkAce contains an Insecure Direct Object Reference vulnerability in the authorization policy layer that allows any authenticated user to modify resources owned by other users. The affected resource types are links, lists, tags, and notes. Both the web UI and the REST API are vulnerable. The root cause is in the update() methods of all four model policies: LinkPolicy, LinkListPolicy, TagPolicy, and NotePolicy. Each delegates to an access-check method (e.g., userCanAccessLink()) that returns true for any resource with non-private visibility, regardless of who owns it. This means any registered user can edit any public or internal resource across the entire instance. The delete() methods in the same policy files correctly require ownership via $link->user->is($user), which confirms that update was intended to be owner-only. The same flaw exists in the API layer through AuthorizesUserApiActions::userCanUpdateModel(), which mirrors the broken visibility-only check instead of the ownership check used by userCanDeleteModel(). Bulk edit operations via BulkEditController are also affected. This vulnerability is fixed in 2.5.6.
CVSS

No CVSS.

Configurations

No configuration.

History

29 May 2026, 16:16

Type Values Removed Values Added
References () https://github.com/Kovah/LinkAce/security/advisories/GHSA-cj8f-h888-m57m - () https://github.com/Kovah/LinkAce/security/advisories/GHSA-cj8f-h888-m57m -

28 May 2026, 22:17

Type Values Removed Values Added
New CVE

Information

Published : 2026-05-28 22:17

Updated : 2026-05-29 16:16


NVD link : CVE-2026-45342

Mitre link : CVE-2026-45342

CVE.ORG link : CVE-2026-45342


JSON object : View

Products Affected

No product.

CWE
CWE-639

Authorization Bypass Through User-Controlled Key