CVE-2025-66110

5.3 MEDIUM

📋 TL;DR

This CVE describes a Missing Authorization vulnerability in the bPlugins Tiktok Feed WordPress plugin (b-tiktok-feed) that allows attackers to exploit incorrectly configured access control security levels. The vulnerability affects all versions up to and including 1.0.22, potentially allowing unauthorized access to functionality that should be restricted. WordPress sites using this plugin are affected.

💻 Affected Systems

Products:
  • bPlugins Tiktok Feed WordPress plugin (b-tiktok-feed)
Versions: n/a through <= 1.0.22
Operating Systems: Any OS running WordPress
Default Config Vulnerable: ⚠️ Yes
Notes: All WordPress installations using vulnerable versions of this plugin are affected regardless of configuration.

⚠️ Manual Verification Required

This CVE does not have specific version information in our database, so automatic vulnerability detection cannot determine if your system is affected.

Why? The CVE database entry doesn't specify which versions are vulnerable (no version ranges provided by the vendor/NVD).

🔒 Custom verification scripts are available for registered users. Sign up free to download automated test scripts.

Recommended Actions:
  1. Review the CVE details at NVD
  2. Check vendor security advisories for your specific version
  3. Test if the vulnerability is exploitable in your environment
  4. Consider updating to the latest version as a precaution

⚠️ Risk & Real-World Impact

🔴

Worst Case

Attackers could gain administrative privileges, modify plugin settings, inject malicious content, or access sensitive site data depending on what functionality lacks proper authorization checks.

🟠

Likely Case

Unauthorized users could modify TikTok feed settings, change display configurations, or access functionality intended only for authenticated administrators.

🟢

If Mitigated

With proper access controls, only authenticated administrators could access plugin functionality, limiting impact to authorized users only.

🌐 Internet-Facing: HIGH
🏢 Internal Only: MEDIUM

🎯 Exploit Status

Public PoC: ✅ No
Weaponized: UNKNOWN
Unauthenticated Exploit: ⚠️ Yes
Complexity: LOW

Missing authorization vulnerabilities typically require minimal technical skill to exploit once the vulnerable endpoint is identified.

🛠️ Fix & Mitigation

✅ Official Fix

Patch Version: Versions after 1.0.22

Vendor Advisory: https://patchstack.com/database/Wordpress/Plugin/b-tiktok-feed/vulnerability/wordpress-tiktok-feed-plugin-1-0-22-broken-access-control-vulnerability?_s_id=cve

Restart Required: No

Instructions:

1. Log into WordPress admin panel. 2. Navigate to Plugins > Installed Plugins. 3. Find 'Tiktok Feed' plugin. 4. Click 'Update Now' if update available. 5. If no update available, deactivate and delete plugin, then install latest version from WordPress repository.

🔧 Temporary Workarounds

Disable vulnerable plugin

all

Temporarily deactivate the Tiktok Feed plugin until patched version is available

wp plugin deactivate b-tiktok-feed

Restrict plugin access via .htaccess

linux

Add access restrictions to plugin directory

# Add to .htaccess in wp-content/plugins/b-tiktok-feed/
Order Deny,Allow
Deny from all

🧯 If You Can't Patch

  • Implement web application firewall (WAF) rules to block unauthorized access to plugin endpoints
  • Monitor access logs for unauthorized attempts to access plugin functionality

🔍 How to Verify

Check if Vulnerable:

Check WordPress admin panel > Plugins > Installed Plugins for 'Tiktok Feed' version number

Check Version:

wp plugin list --name='Tiktok Feed' --field=version

Verify Fix Applied:

Verify plugin version is greater than 1.0.22 in WordPress admin panel

📡 Detection & Monitoring

Log Indicators:

  • Unauthorized POST/GET requests to /wp-content/plugins/b-tiktok-feed/ endpoints
  • 403/401 errors followed by successful 200 responses to plugin endpoints

Network Indicators:

  • Unusual traffic patterns to plugin-specific endpoints from unauthenticated users

SIEM Query:

source="wordpress.log" AND (uri="/wp-content/plugins/b-tiktok-feed/*" AND status=200) AND NOT user_agent="WordPress/*"

🔗 References

📤 Share & Export