U.S. flag   An official website of the United States government
Dot gov

Official websites use .gov
A .gov website belongs to an official government organization in the United States.

Https

Secure .gov websites use HTTPS
A lock (Dot gov) or https:// means you've safely connected to the .gov website. Share sensitive information only on official, secure websites.

Vulnerability Change Records for CVE-2024-28026

Change History

New CVE Received from Talos 11/21/2024 10:15:28 AM

Action Type Old Value New Value
Added Description

								
							
							
						
Three OS command injection vulnerabilities exist in the web interface I/O configuration functionality of MC Technologies MC LR Router 2.10.5. A specially crafted HTTP request can lead to arbitrary command execution. An attacker can make an authenticated HTTP request to trigger these vulnerabilities.This vulnerability refers to the authenticated OS Command Injection that occurs through the attacker-controlled `out1` parameter, at offset `0x8efc`.

    
    int out_ret = sscanf(current_param->key, "out%u", &io_idx);
    if (out_ret == 1 && io_idx == 1)
    {
        // [4] Similar to `3`, but `out1` instead of `btn1`
        if (asprintf(&command, "/usr/sbin/vout %s %u vo_manual", current_param->value, 1) > 0)
        {
            system(command);
            return -1;
        }
    }
Added CVSS V3.1

								
							
							
						
AV:N/AC:L/PR:H/UI:N/S:U/C:H/I:H/A:H
Added CWE

								
							
							
						
CWE-78
Added Reference

								
							
							
						
https://talosintelligence.com/vulnerability_reports/TALOS-2024-1953