AUGUST 15, 2026
Live Feed
Back to database
Case File

CVE-2026-47231

HIGH · CVSS 8.1 EPSS 0.21% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-12 · Last synced 2026-08-15

CyberRota Analysis

AI-Generated

Admidio versions prior to 5.0.10 are vulnerable due to improper access controls in the `move_save` handler, allowing users with upload rights to move files from any folder, including private ones, to a folder they control. This results in a significant breach of confidentiality and integrity, as sensitive files can be accessed and removed without authorization. Organizations using Admidio should prioritize upgrading to version 5.0.10 to mitigate this high-severity vulnerability.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

GitHub PoC Links

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-47231
Severity
HIGH
CVSS
8.1
EPSS
0.21%

Original NVD Description

Admidio is an open-source user management solution. Prior to version 5.0.10, `modules/documents-files.php` gates state-changing modes by checking that the actor has `hasUploadRight()` on the URL parameter `folder_uuid`. The `move_save` handler then operates on a *separate* URL parameter `file_uuid` and calls `File::moveToFolder($destFolderUUID)`. `File::moveToFolder()` checks the upload right on the destination folder but never on the source folder containing the file. As a result, any user who can upload to any single folder can move any file from any other folder — including private folders to which they have no view rights — into a folder they control, and then download it. Confidentiality is broken (private file contents leak) and integrity is broken (the file is removed from the original location). Version 5.0.10 contains a fix.