🛡️ CVE-2026-50281 — cms
Description
Craft CMS's mass assignment via id in newAttributes during bulk duplicate overwrites existing elements
Summary
There is a mass-assignment flaw in the bulk-duplicate element action. Alice, holding only the permission to duplicate an entry she owns, submits an arbitrary id through the newAttributes request parameter. The duplication routine overrides its own id = null reset with that value and writes Alice’s attributes into Bob’s existing entry row.
Details
ElementsController::beforeAction() (src/controllers/ElementsController.php:119-124) pulls the request body into $this->_attributes and rejects requests that ship an id or canonicalId key at the top level:
```php
$this->_attributes = $this->request->getBodyParams();
// No funny business
if (isset($this->_attributes['id']) || isset($this->_attributes['canonicalId'])) {
throw new BadRequestHttpException('Changing an element’s ID is not allowed.');
}
```
The check inspects only the top-level payload. actionBulkDuplicate() (src/controllers/ElementsController.php:1708-1749) reads a separate newAttributes array and passes it straight through to the service layer:
```php
$elementInfo = $this->request->getRequiredBodyParam('elements');
$newAttributes = $this->request->getRequiredBodyParam('newAttributes');
...
$safeNewAttributes = Collection::make($newAttributes)
->only($element->safeAttributes())
->all();
...
$newElement = $elementsService->duplicateElement(
$element,
$safeNewAttributes + $element::baseBulkDuplicateAttributes(),
false,
checkAuthorization: true,
);
```
Elements::duplicateElement() (src/services/Elements.php:1814-1840) clones the source element, sets id to null, and then hands the attacker's array to Craft::configure():
```php
$mainClone = clone $element;
$mainClone->id = null;
$mainClone->uid = StringHelper::UUID();
...
Craft::configure($mainClone, ArrayHelper::merge(
$newAttributes,
$siteAttributes[$mainClone->siteId] ?? [],
));
```
Craft::configure() overwrites the reset id with any numeric value inside $newAttributes. Yii's saveElement() then performs an UPDATE against the row with that primary key instead of an INSERT. Alice's title, slug, authorId, postDate, and UID land on Bob’s entry.
safeAttributes() on Entry includes id because the base element model exposes it, so the Collection::only() filter does not strip it.
Impact
A low-privileged author overwrites any other element (entries, categories, users that share the Entry element table inheritance) by predicting or enumerating element IDs. Content integrity on the entire install breaks. The attack requires only the ability to duplicate one entry Alice already owns.
How this vulnerability can be exploited
This issue can be reached over the network, attack complexity is low, an attacker needs low-level privileges on the target. No user interaction is required. Rated impact: confidentiality none, integrity high, availability none.
Weakness class
CVE-2026-50281 is classified as CWE-915: Improperly Controlled Modification of Object Attributes. A request can set object fields that were never meant to be writable from outside.
Affected software
CVE-2026-50281 is recorded against 2 packages.
- craftcms/cms (from 5.7.0 up to 5.9.21)
- unknown
Timeline and source
Published on 2 July 2026. No public exploit is currently recorded for this entry. Record sourced from NVD.
References
github.com (Web)
nvd.nist.gov (Advisory)
github.com (Web)
github.com (Package)
Details
CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:H/VA:N/SC:N/SI:N/SA:N
Affected Packages
| Software | From version | Fixed in |
|---|---|---|
| craftcms/cms | 5.7.0 | 5.9.21 |
| unknown | — | — |
References
Similar Threats
- Unknown CLSA-2026-1774313530
- Unknown CLSA-2026-1776127931
- Unknown CLSA-2026-1776904647
- Unknown CLSA-2026-1783386121
- Unknown CLSA-2026-1783904621
More CVE 2026 advisories
Browse all of CVE 2026 in the advisory index.
Site Security Check
Is cms part of your stack?
CVE-2026-50281 is rated CVSS 8.0 High. BotEraser scans your installation against known CVE records and tells you whether this vulnerability applies to the versions you actually run.
Scan My Site Free →No credit card required · Results in minutes
ⓘ Data Notice: The information presented above has been compiled from publicly available internet sources. Boteraser aggregates this data solely for informational purposes and does not independently classify, evaluate, or endorse any findings about the vulnerabilities listed. The accuracy and completeness of this information is the sole responsibility of the original publishers. Boteraser and its operators accept no liability for any decisions made based on this data.