Blog post

The Hidden Flaws of Archives in Java

Sonar photo

Sonar

clean code

Date

  • Security
Archives such as Zip, Tar, Jar or 7z are useful formats to collect and compress multiple files or directories in a container-like structure. However, the extraction of archives can introd...

The Risk of Archive Extraction

Archives are often used to import data sets in web applications. Especially in Java, archives like JarWar or Apk are used to aggregate Java class files and resources into one single file. Vulnerabilities resulting from an insecure extraction of archives are already known for a long time. In 2018 Snyk disclosed multiple vulnerabilities affecting this issue in various software libraries under the name Zip Slip
However, the problem still exists if developers decide to implement their own extraction functionalities. During the last months RIPS Code Analysis found similar issues in popular Java software which led to Remote Code Execution (CVE-2019-3397, CVE-2019-12309).

The problem occurs if developers do not validate or sanitize the user input which is received out of an archive. An attacker can prepare a malicious ZIP file with the ../ notation to traverse out of the intended directory and drop a malicious executable file. The following listing shows a malicious ZIP file entry.

Malicious ZIP file

  Length      Date    Time    Name
 ---------  ---------- -----   ----
       133  2019-05-23 17:43   ../../../../../../../../../[WEBROOT_PATH]/zipslip.jsp

If we extract such a ZIP file using the following vulnerable code snippet, the JSP file zipslip.jsp is not being extracted into /my/target/directory/ but instead dropped into the [WEBROOT_PATH] directory of the web server. The function extract iterates over all file entries which are part of the passed ZIP file. In this example, the user input is received from the method ZipEntry.getName() and directly flows into the sensitive sink java.io.File in line 11. At this point a file object is created with the parent directory /my/target/directory/and the child directory ../../../../../../../../../[WEBROOT_PATH]/zipslip.jsp which resolves to [WEBROOT_PATH]/zipslip.jsp. The file is then written to the file system in line 15.

Vulnerable Code Snippet

 1    import java.util.zip.ZipFile;
 2    import java.util.zip.ZipEntry;
 3    ⋮
 4    public void extract(ZipFile zip) {
 5        ⋮
 6        String toDir = "/my/target/directory/";
 7        Enumeration entries = zip.entries();
 8        while (entries.hasMoreElements()) {
 9            ZipEntry zipEntry = entries.nextElement();
10            ⋮
11            File file = new File(toDir, zipEntry.getName())
12            InputStream istr = zipFile.getInputStream(zipEntry);
13            final OutputStream os = Files.newOutputStream(file.toPath());
14            bos  = new BufferedOutputStream(os);
15            IOUtils.copy(bis, bos);
16
17        }
18    }

Not only  java.util.zip.ZipEntry needs to be treated carefully, also the popular library org.apache.commons.compress.archivers contains multiple ArchiveEntry classes which pose a security risk if handled wrongly.

The following listing illustrates one way to circumvent this security issue. In line 11 a check is performed if the entry received from the ZIP file is within the intended target directory. If the canonical path of the file does not start with the path of the target directory a security exception is thrown. Note, that this fix is only complete if the attacker does not control the toDir.

Patched Code Snippet

 1    import java.util.zip.ZipFile;
 2    import java.util.zip.ZipEntry;
 3    ⋮
 4    public void extract(ZipFile zip) {
 5        ⋮
 6        String toDir = "/my/target/directory/";
 7        Enumeration entries = zip.entries();
 8        while (entries.hasMoreElements()) {
 9            ZipEntry zipEntry = entries.nextElement();
10            ⋮
11            File file = new File(toDir, zipEntry.getName())
12            if( !file.getCanonicalPath().startsWith(toDir) ){
13                throw new SecurityException("ZipEntry not within target directory!");
14            }
15            InputStream istr = zipFile.getInputStream(zipEntry);
16            final OutputStream os = Files.newOutputStream(file.toPath());
17            bos  = new BufferedOutputStream(os);
18            IOUtils.copy(bis, bos);
19        }
20    }

Summary

In this post, we explained the risk behind the extraction of untrusted archives. This issue mostly results in remote code execution since arbitrary files can be overwritten with the permissions of the web server or corresponding user. Those bugs are already known for a long time but they are still present as the CVE’s (CVE-2019-3397, CVE-2019-12309) showed. With this blog post we want to raise awareness about the security risk when handling untrusted archives.

Related Posts