• Browse topics
Login
Sign up
Login

SNYK LEARN LOGIN

OTHER REGIONS

For Snyk Enterprise customers with regional contracts. More info

Sign up

Insecure temporary file

Protect your applications against the dangers of insecure temporary files

JavaScript

Insecure temporary files: the basics

What are insecure temporary files?

An insecure temporary file is a type of vulnerability that occurs when an application creates temporary files that can be accessed or modified by other users or processes on the same system. This can occur if the temporary file is created with overly relaxed file permissions or if the file is stored in a predictable location that can be easily accessed by an attacker.

Attackers can take advantage of this vulnerability by modifying the contents of the temporary file to bypass security controls or carry out other attacks on the system. For example, an attacker could modify a temporary file used by a web application to execute arbitrary code or steal sensitive information.

About this lesson

In this lesson, you will learn how insecure temporary file vulnerabilities work and how to protect your applications against them. We will begin by exploiting a vulnerability in a simple application. Then we will analyze the vulnerable code and explore some options for remediation and prevention.

FUN FACT

High risk!

Insecure temporary files were one of the most popular vulnerabilities found in the Snyk Top 10 of 2022. One such example can be found in the Spring framework.

Insecure temporary files in action

Insecure temporary file exploit

  • STEP 1
  • STEP 2
  • STEP 3
  • STEP 4
  • STEP 5

Setting the stage

Alex is a skilled penetration tester who specializes in web applications. He's performing a secure code review when he discovers some interesting code

insecure-temporary-file-start.svg

Insecure temporary files under the hood

So, what exactly is going on here?

In the example above, the application creates a temporary file named sensitive_data.csv in the /tmp directory and writes sensitive user data to it. However, the file is created with default permissions that allow anyone with access to the system to read or modify its contents.

Even though the file would only be accessible for a very short period of time, Alex was able to create a simple script to constantly monitor the location of that file and grab the contents as soon as it was created.

For reference, here's the vulnerable code snippet again, with comments:

The file is created, encrypted, sent to an S3 bucket, and then deleted, but at the time that the file contents are being encrypted and uploaded, the plaintext file is sitting in /tmp, allowing any users of the system to read the file.

Impacts of insecure temporary file vulnerabilities

The impact of this type of vulnerability varies considerably depending on the sensitivity of the file that can be accessed, and whether it can just be read or also written to. Some potential impacts include

Unauthorized access to sensitive data

Insecure temporary file vulnerabilities can allow attackers to read, modify, or delete sensitive data that is stored in temporary files. This can include personally identifiable information, financial data, or other confidential information that could be used for identity theft or other malicious purposes.

Malware installation

Attackers can use insecure temporary file vulnerabilities to install malware or other malicious code onto the system. For example, they can modify a temporary file used by a web application to execute arbitrary code or download a payload from a remote server.

System compromise

In some cases, attackers can use insecure temporary file vulnerabilities to gain access to the underlying operating system or other sensitive resources on the system. This can allow them to take control of the system, steal additional data, or carry out other attacks.

Scan your code & stay secure with Snyk - for FREE!

Did you know you can use Snyk for free to verify that your code
doesn't include this or other vulnerabilities?

Scan your code

Insecure temporary files mitigation

Below are a few tips to help prevent insecure temporary file vulnerabilities in your applications.

Avoid using local files to store data

There is rarely a case where writing or reading from a local file is necessary, especially when coding in NodeJS, which is typically used to develop web applications. Temporary data storage can usually be achieved by simply holding data in a variable, and data persistence can be achieved by storing data in a database.

Restrict file permissions

If you really need to write to a file, you should set the file permissions to be as restrictive as possible to avoid other users snooping or editing the contents.

The following example writes a file with 600 (chmod 600) permissions, meaning that only the owner of the file can read and write to it.

Congratulations

You have taken your first step into learning what insecure temporary file vulnerabilities are, how they work, what their impacts are, and how to protect your own applications. We hope that you will apply this knowledge to make your applications safer.

We'd really appreciate it if you could take a minute to rate how valuable this lesson was for you and provide feedback to help us improve! Also, make sure to check out our lessons on other common vulnerabilities.

Quiz

Test your knowledge!

Quiz

If you want a file to have permissions so that only the owner of the file can read and write to it, what chmod permission should it be set to?

Keep learning

To learn more about insecure temporary file vulnerabilities, check out some other great content:

  • The CWE listing can be found here
  • Learn more about this vulnerability from OWASP