Simple File List <= 6.3.7 - Missing Authorization to Authenticated (Contributor+) Arbitrary File Operations (Deletion / Move / Folder Creation / Download) via 'frontmanage' Shortcode Attribute
Description
The Simple File List plugin for WordPress is vulnerable to unauthorized file operations due to a missing authorization check on the 'frontmanage' shortcode attribute in all versions up to, and including, 6.3.7. This makes it possible for authenticated attackers, with contributor-level access and above, to perform arbitrary file operations including deletion, move, folder creation, and download. An attacker can create a draft post containing the 'eeSFL' shortcode, render it via the post preview endpoint to harvest the nonce needed to authorize the operations, and then submit file operation requests that bypass the intended authorization checks in includes/ee-list-ops-bar-process.php.
AI Insight
LLM-synthesized narrative grounded in this CVE's description and references.
Affected products
1- Range: <=6.3.7
Patches
Vulnerability mechanics
Root cause
"Missing authorization check on the 'frontmanage' shortcode attribute allows contributors to bypass intended access controls and perform arbitrary file operations."
Attack vector
An authenticated attacker with contributor-level access creates a draft post containing the 'eeSFL' shortcode with the 'frontmanage' attribute set to a value that enables front-end management. The post is rendered via the WordPress preview endpoint, which triggers the shortcode processing in includes/ee-list-ops-bar-process.php and generates a valid nonce. The attacker then captures this nonce and submits file operation requests (delete, move, create folder, download) that the plugin's front-end handler processes without verifying the user's actual capability level. The missing check on the 'frontmanage' attribute [ref_id=1] allows any user who can obtain the nonce to perform operations that should be restricted to administrators.
Affected code
The vulnerable code is in includes/ee-list-ops-bar-process.php, which processes file operation requests. The shortcode attribute handling in includes/ee-front-end.php [ref_id=1] at line 140 processes the 'frontmanage' attribute without proper access-level validation. The line `if($frontmanage) { $eeSFL->eeListSettings['AllowFrontManage'] = strtoupper($frontmanage); }` directly sets the setting without checking whether the user has sufficient privileges to enable front-end management.
What the fix does
The advisory does not include a published patch, but the fix would require adding a capability check (e.g., current_user_can('manage_options')) before allowing the 'frontmanage' shortcode attribute to override the 'AllowFrontManage' setting. The code at [ref_id=1] shows that 'frontmanage' is set directly into 'AllowFrontManage' without any access-level validation, unlike the 'showlist' and 'allowuploads' attributes which have explicit checks against stored settings and require manage_options for expansion. A proper fix would apply the same access-level comparison pattern to 'frontmanage', ensuring that only users with sufficient privileges can enable front-end management via shortcode attributes.
Preconditions
- authAttacker must have an authenticated WordPress account with at least contributor-level access
- inputAttacker must create a draft post containing the 'eeSFL' shortcode with the 'frontmanage' attribute
- networkAttacker must be able to access the WordPress post preview endpoint to render the shortcode and capture the generated nonce
Generated on Jun 20, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.
References
6- plugins.trac.wordpress.org/browser/simple-file-list/tags/6.3.6/includes/ee-front-end.phpmitre
- plugins.trac.wordpress.org/browser/simple-file-list/tags/6.3.6/includes/ee-list-display.phpmitre
- plugins.trac.wordpress.org/browser/simple-file-list/tags/6.3.6/includes/ee-list-ops-bar-display.phpmitre
- plugins.trac.wordpress.org/browser/simple-file-list/tags/6.3.6/includes/ee-list-ops-bar-process.phpmitre
- plugins.trac.wordpress.org/changesetmitre
- www.wordfence.com/threat-intel/vulnerabilities/id/f1ed51a3-c049-4816-ada1-49f7edcb9a6fmitre
News mentions
0No linked articles in our index yet.