Atomic Edge analysis of CVE-2025-15347:
The Creator LMS WordPress plugin, versions up to and including 1.1.12, contains a missing authorization vulnerability in its REST API settings endpoint. This flaw allows authenticated users with the ‘edit_posts’ capability, such as Contributors, to update arbitrary WordPress options, potentially leading to privilege escalation and site compromise. The CVSS score of 8.8 reflects the high severity of this issue.
Atomic Edge research identifies the root cause in the `get_items_permissions_check` function within the `SettingsController` class. In the vulnerable version, this function returns `current_user_can(‘edit_posts’)` (line 492 in `creatorlms/includes/Rest/V1/SettingsController.php`). The function serves as the permission callback for the `update_items` REST endpoint registered at `/wp-json/creatorlms/v1/settings`. The `update_items` method (lines 192-227) directly passes user-supplied key-value pairs to the `update_option` function without validating that the option keys belong to the plugin’s allowed set.
Exploitation requires an authenticated attacker with at least Contributor-level permissions. The attacker sends a PUT or POST request to the REST API endpoint `/wp-json/creatorlms/v1/settings`. The request body contains a JSON object with arbitrary WordPress option keys and their desired values. For example, an attacker could set `admin_email` to their own email address or modify user role capabilities. The plugin’s `update_items` method processes each key-value pair and calls `update_option` for each one, applying the changes system-wide.
The patch in version 1.1.13 implements three key changes. First, it replaces the permission callback for the `update_items` endpoint from `get_items_permissions_check` to `update_items_permissions_check` (line 51). Both functions now require the `manage_options` capability instead of `edit_posts`. Second, the patch adds a new private method `is_valid_option_key` (lines 235-306) that validates option keys against a hardcoded whitelist of 48 plugin-specific options. Third, the `update_items` method now calls this validation function (lines 215-217) before processing each option, skipping any keys not in the whitelist.
Successful exploitation enables complete site takeover. Attackers can modify any WordPress option, including those controlling user roles, administrator emails, site URLs, and authentication settings. This allows privilege escalation to administrator, user registration manipulation, site defacement, or denial of service by corrupting critical configuration. The arbitrary options update capability effectively grants attackers full control over the WordPress installation.







