CVE-2026-42174: Kirby: User avatar creation, replacement and deletion are not gated by user update permissions
TL;DR
This vulnerability affects all Kirby sites where users of a particular role have no permission to update user information (user.update or users.update permission is disabled). This can be due to configuration in the blueprint(s) of the acting users, via options in the blueprint(s) of the target users or via a combination of both settings.
Kirby sites are not affected if they intend all users of the site to be able to upload, replace or delete user avatars. The vulnerability can only be exploited by authenticated users.
----
Introduction
Missing authorization allows authenticated users to perform actions they are not intended to have access to.
The effects of missing authorization can include unauthorized access to sensitive information as well as unauthorized changes to content or system information.
Impact
Kirby's user permissions control which user role is allowed to perform specific actions to content models in the CMS. These permissions are defined for each role in the user blueprint (site/blueprints/users/...). It is also possible to customize the permissions for each target model using the options feature (for user models again in the user blueprints). The permissions and options together control the authorization of user actions.
Kirby provides the user.update and users.update permissions (among others) that control the authorization to update user information for the user's own data or the data of other users respectively. User files are separately gated by the files.create, files.replace and files.delete permissions (among others).
In affected releases, Kirby only checked the files.create and files.delete permissions during changes to user avatars. Even though avatars are an integral part of the user profile, they were not covered by the user.update and users.update permissions. This allowed users with just file permissions to create, replace or delete user avatars.
Patches
The problem has been patched in Kirby 4.9.0 and Kirby 5.4.0. Please update to one of these or a later version to fix the vulnerability.
In all of the mentioned releases, we have added additional permission checks for user.update/users.update when a user avatar is created, replaced or deleted. These permission checks apply in addition to the file permission checks (files.create, files.replace and files.delete). When a user avatar is replaced with a file of the same type, Kirby now consistently checks the files.replace permission instead of a combination of files.create and files.delete.
Other sources
Kirby is an open-source content management system. Prior to versions 4.9.0 and 5.4.0, user avatar creation, replacement and deletion are not gated by user update permissions. This issue has been patched in versions 4.9.0 and 5.4.0.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
composer/getkirby/cmsto a version that resolves this vulnerability.Fixed in 5.4.0 - Upgrade
Upgrade
composer/getkirby/cmsto a version that resolves this vulnerability.Fixed in 4.9.0 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 4.9.0 - Upgrade
Upgrade to a fixed release to a version that resolves this vulnerability.
Fixed in 5.4.0 - Configuration
Ensure the acting role(s) have `user.update` (for own user data) or `users.update` (for other users' data) enabled in the user blueprint(s) so avatar creation/replacement/deletion are properly authorized.
Kirby user permissions (user blueprints) user.update / users.update = enabled - Configuration
If customizing avatar permissions per target model using the `options` feature in the user blueprints, ensure `user.update`/`users.update` permission checks are applied when a user avatar is created, replaced, or deleted.
Kirby avatar authorization (customizable permissions via options) options = set to enforce user.update/users.update checks on user avatar create/replace/delete
Event History
Frequently Asked Questions
What is the severity of CVE-2026-42174?
CVE-2026-42174 has a high severity rating due to unauthorized user access risks.
How do I fix CVE-2026-42174?
To fix CVE-2026-42174, update to Kirby CMS version 5.4.0 or 4.9.0.
Which versions of Kirby CMS are affected by CVE-2026-42174?
Versions of Kirby CMS from 5.0.0 to 5.3.3 and up to 4.8.0 are affected by CVE-2026-42174.
What type of configuration leads to CVE-2026-42174?
CVE-2026-42174 is caused by disabling the `user.update` or `users.update` permission in user role configurations.
Can CVE-2026-42174 affect sites with correct user permissions?
CVE-2026-42174 can potentially affect any site where user permissions are misconfigured, even if the intention is to restrict access.