OSV 1.4.0 · github-reviewed · 修改于 2026-08-21 02:38
发布时间
2026-08-21 02:38
GitHub 审查时间
2026-08-21 02:38
NVD 发布时间
—
源文件
advisories/github-reviewed/2026/08/GHSA-8xjm-wqrp-2f25/GHSA-8xjm-wqrp-2f25.json
HasUploadFields::uploadMultipleFilesToDisk (in src/app/Models/Traits/HasUploadFields.php) reads file paths from the clear_<attribute>[] request input and deletes them from the configured storage disk without verifying that the paths belong to the current model record.
An authenticated user with Update access on any CRUD that wires uploadMultipleFilesToDisk as a model mutator (the pattern documented in the v5.x upload_multiple field guide) can supply arbitrary disk-relative paths in clear_<attr>[] to delete files that were never associated with the record they are editing.
The safe pattern already exists in the codebase: src/app/Library/Uploaders/MultipleFiles.php intersects the requested deletions against the files currently stored in the database column before calling Storage::disk()->delete(). The trait method lacks that intersection.
src/app/Models/Traits/HasUploadFields.php — uploadMultipleFilesToDisk (primary sink)src/app/Models/Traits/CrudTrait.php — mixes HasUploadFields into all Backpack-managed modelsThe vulnerability is present in all 5.x, 6.x < 6.8.12, and 7.x < 7.0.35 releases.
An attacker with low-privilege Backpack admin access (e.g. a content editor) can delete any file under the configured disk root: other records' attachments, shared assets, or files placed on the same disk for operational purposes. No confidentiality impact (files cannot be read, only deleted).
CWE-285 (Authorization Bypass) / CWE-639 (IDOR on file deletion)
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:H = 8.1 High
Intersect $files_to_clear against the filenames currently persisted on the model before calling delete(), mirroring the logic already present in MultipleFiles::uploadFiles. Fixed in 6.8.12 and 7.0.35.
Deployments still using the mutator pattern from the v5.x docs should migrate to the Uploader API ( via ), which applies the safe intersection automatically.
uploadMultipleFilesToDiskMultipleFiles::classconfig/backpack/crud.phpReported by Vishal Shukla (@shukla304).