CVE Vulnerabilities

CVE-2020-5398

Download of Code Without Integrity Check

Published: Jan 17, 2020 | Modified: Nov 07, 2023
CVSS 3.x
7.5
HIGH
Source:
NVD
CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H
CVSS 2.x
7.6 HIGH
AV:N/AC:H/Au:N/C:C/I:C/A:C
RedHat/V2
RedHat/V3
8 IMPORTANT
CVSS:3.1/AV:N/AC:H/PR:L/UI:R/S:C/C:H/I:H/A:H
Ubuntu
MEDIUM

In Spring Framework, versions 5.2.x prior to 5.2.3, versions 5.1.x prior to 5.1.13, and versions 5.0.x prior to 5.0.16, an application is vulnerable to a reflected file download (RFD) attack when it sets a Content-Disposition header in the response where the filename attribute is derived from user supplied input.

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
Spring_framework Vmware 5.0.0 (including) 5.0.16 (excluding)
Spring_framework Vmware 5.1.0 (including) 5.1.13 (excluding)
Spring_framework Vmware 5.2.0 (including) 5.2.3 (excluding)
Red Hat Fuse 7.8.0 RedHat springframework *
Libspring-java Ubuntu bionic *
Libspring-java Ubuntu disco *
Libspring-java Ubuntu eoan *
Libspring-java Ubuntu groovy *
Libspring-java Ubuntu hirsute *
Libspring-java Ubuntu impish *
Libspring-java Ubuntu kinetic *
Libspring-java Ubuntu lunar *
Libspring-java Ubuntu mantic *
Libspring-java Ubuntu trusty *
Libspring-java Ubuntu xenial *

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