CVE Vulnerabilities

CVE-2022-28944

Download of Code Without Integrity Check

Published: May 23, 2022 | Modified: Jun 07, 2022
CVSS 3.x
8.8
HIGH
Source:
NVD
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H
CVSS 2.x
6.8 MEDIUM
AV:N/AC:M/Au:N/C:P/I:P/A:P
RedHat/V2
RedHat/V3
Ubuntu

Certain EMCO Software products are affected by: CWE-494: Download of Code Without Integrity Check. This affects MSI Package Builder for Windows 9.1.4 and Remote Installer for Windows 6.0.13 and Ping Monitor for Windows 8.0.18 and Remote Shutdown for Windows 7.2.2 and WakeOnLan 2.0.8 and Network Inventory for Windows 5.8.22 and Network Software Scanner for Windows 2.0.8 and UnLock IT for Windows 6.1.1. The impact is: execute arbitrary code (remote). The component is: Updater. The attack vector is: To exploit this vulnerability, a user must trigger an update of an affected installation of EMCO Software. ΒΆΒΆ Multiple products from EMCO Software are affected by a remote code execution vulnerability during the update process.

Weakness

The product downloads source code or an executable from a remote location and executes the code without sufficiently verifying the origin and integrity of the code.

Affected Software

Name Vendor Start Version End Version
Msi_package_builder Emcosoftware 9.1.4 (including) 9.1.4 (including)
Network_inventory Emcosoftware 5.8.22 (including) 5.8.22 (including)
Network_software_scanner Emcosoftware 2.0.8 (including) 2.0.8 (including)
Ping_monitor Emcosoftware 8.0.18 (including) 8.0.18 (including)
Remote_installer Emcosoftware 6.0.13 (including) 6.0.13 (including)
Remote_shutdown Emcosoftware 7.2.2 (including) 7.2.2 (including)
Unlock_it Emcosoftware 6.1.1 (including) 6.1.1 (including)

Potential Mitigations

  • Encrypt the code with a reliable encryption scheme before transmitting.

  • This will only be a partial solution, since it will not detect DNS spoofing and it will not prevent your code from being modified on the hosting site.

  • Use a vetted library or framework that does not allow this weakness to occur or provides constructs that make this weakness easier to avoid.

  • Speficially, it may be helpful to use tools or frameworks to perform integrity checking on the transmitted code.

  • Run the code in a “jail” or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by the software.

  • OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows the software to specify restrictions on file operations.

  • This may not be a feasible solution, and it only limits the impact to the operating system; the rest of the application may still be subject to compromise.

  • Be careful to avoid CWE-243 and other weaknesses related to jails.

References