Atomic Edge analysis of CVE-2025-64637 (metadata-based): This vulnerability affects the Auros Core plugin for WordPress, versions up to and including 5.3.1. It allows unauthenticated attackers to execute arbitrary shortcodes, leading to potential data exposure and limited integrity impact. The CVSS score is 6.5, indicating medium severity with low confidentiality and integrity impact.
The root cause, inferred from the CWE-94 (Code Injection) classification and the description, is that the plugin passes user-supplied input directly to the WordPress `do_shortcode()` function without proper validation or sanitization. The description states the plugin “allows users to execute an action that does not properly validate a value before running do_shortcode.” This indicates a missing or insufficient check on a parameter that is subsequently used in a shortcode execution context. Since no source code is available, this conclusion is inferred from the CWE and description, not confirmed from code review.
Exploitation is straightforward. The attack vector is likely via a WordPress AJAX handler or REST API endpoint. An attacker sends a crafted request to `/wp-admin/admin-ajax.php` with the action parameter set to a plugin-specific handler (e.g., `auros_core_execute_shortcode`) and a payload parameter containing a malicious shortcode like `[do_evil_shortcode]`. Since authentication is not required (PR:N), any unauthenticated user can send this request. The payload can call WordPress native shortcodes (e.g., `[php]` if a code execution plugin is installed) or plugin-specific shortcodes that perform sensitive operations. The attack does not require a valid nonce because the vulnerable action likely does not perform nonce verification.
Remediation requires the plugin developer to validate and sanitize the input before passing it to `do_shortcode()`. The fix should ensure that only allowed shortcodes are executed, perhaps by maintaining a whitelist of permitted shortcodes. Alternatively, the action should require authentication and capability checks if shortcode execution is an administrative function. Since no patched version is available, users must remove or replace the plugin, or apply a virtual patch at the WAF level.
If exploited, an attacker can execute arbitrary shortcodes. They could use WordPress core shortcodes like “ to include external content, or leverage other plugins’ shortcodes that perform database queries or file operations. While direct Remote Code Execution is not guaranteed, shortcode execution can lead to data exfiltration, content injection, or privilege escalation depending on the available shortcodes. The CVSS impact is low for both confidentiality and integrity, but this may understate the risk if the site has plugins with powerful shortcodes.







