结构: Simple
Abstraction: Variant
状态: Incomplete
被利用可能性: Low
The software creates a temporary file in a directory whose permissions allow unintended actors to determine the file's existence or otherwise access that file.
On some operating systems, the fact that the temporary file exists may be apparent to any user with sufficient privileges to access that directory. Since the file is visible, the application that is using the temporary file could be known. If one has access to list the processes on the system, the attacker has gained information about what the user is doing at that time. By correlating this with the applications the user is running, an attacker could potentially discover what a user's actions are. From this, higher levels of security could be breached.
Language: {'cwe_Class': 'Language-Independent', 'cwe_Prevalence': 'Undetermined'}
范围 | 影响 | 注释 |
---|---|---|
Confidentiality | Read Application Data | Since the file is visible and the application which is using the temp file could be known, the attacker has gained information about what the user is doing at that time. |
策略:
Many contemporary languages have functions which properly handle this condition. Older C temp file functions are especially susceptible.
策略:
Try to store sensitive tempfiles in a directory which is not world readable -- i.e., per-user directories.
策略:
Avoid using vulnerable temp file functions.
In the following code examples a temporary file is created and written to and after using the temporary file the file is closed and deleted from the file system.
bad C
However, within this C/C++ code the method tmpfile() is used to create and open the temp file. The tmpfile() method works the same way as the fopen() method would with read/write permission, allowing attackers to read potentially sensitive information contained in the temp file or modify the contents of the file.
bad Java
Similarly, the createTempFile() method used in the Java code creates a temp file that may be readable and writable to all users.
Additionally both methods used above place the file into a default directory. On UNIX systems the default directory is usually "/tmp" or "/var/tmp" and on Windows systems the default directory is usually "C:\Windows\Temp", which may be easily accessible to attackers, possibly enabling them to read and modify the contents of the temp file.
映射的分类名 | ImNode ID | Fit | Mapped Node Name |
---|---|---|---|
CLASP | Guessed or visible temporary file | ||
CERT C Secure Coding | FIO15-C | Ensure that file operations are performed in a secure directory |