...
When setting access permissions, it is important to make sure that an attacker is not able to alter them (see FIO15-AC. Ensure that file operations are performed in a secure directory).
...
Noncompliant Code Example: fopen()
The fopen()
function does not allow the programmer to explicitly specify file access permissions. In this non-compliant noncompliant code example, if the call to fopen()
creates a new file, the access permissions are implementation-defined.
Code Block | ||
---|---|---|
| ||
char *file_name; FILE *fp; /* initialize file_name */ fp = fopen(file_name, "w"); if (!fp){ /* handle Error */ } |
Implementation Details
Wiki Markup |
---|
On POSIX-compliant systems, the permissions may be restricted by the value of the POSIX {{umask()}} function \[[Open Group 04|AA. C References#Open Group 04]\]. |
...
Wiki Markup |
---|
For OpenBSD and Linux operating systems, any created files will have mode {{S_IRUSR\|S_IWUSR\|S_IRGRP\|S_IWGRP\|S_IROTH\|S_IWOTH}} (0666), as modified by the process's umask value. (See [{{fopen(3)}}|http://www.openbsd.org/cgi-bin/man.cgi?query=open&apropos=0&sektion=0&manpath=OpenBSD+Current&arch=i386&format=html] in the OpenBSD Manual Pages \[[OpenBSD|AA. C References#OpenBSD]\].) |
Compliant Solution: fopen_s()
(ISO/IEC TR 24731-1)
Wiki Markup |
---|
The ISO/IEC TR 24731-1 function {{fopen_s()}} can be used to create a file with restricted permissions \[[ISO/IEC TR 24731-1:2007|AA. C References#ISO/IEC TR 24731-1-2007]\] |
...
Code Block | ||
---|---|---|
| ||
char *file_name; FILE *fp; /* initialize file_name */ errno_t res = fopen_s(&fp, file_name, "w"); if (res != 0) { /* handle Error */ } |
...
Noncompliant Code Example: open()
(POSIX)
Using the POSIX function open()
to create a file, but failing to provide access permissions for that file, may cause the file to be created with overly permissive access permissions. This omission has been known to lead to vulnerabilities (for instance, CVE-2006-1174).
Code Block | ||
---|---|---|
| ||
char *file_name; int fd; /* initialize file_name */ fd = open(file_name, O_CREAT | O_WRONLY); /* access permissions were missing */ if (fd == -1){ /* handle Error */ } |
Compliant Solution: open()
(POSIX)
Access permissions for the newly created file should be specified in the third argument to open()
. Again, the permissions are modified by the value of umask()
.
...
Do not rely on setting the umask to a "secure" value once at the beginning of the program and then calling all file or directory creation functions with overly permissive file modes. Explicitly set the mode of the file at the point of creation. There are two reasons to do this. First, it makes the code clear; your intent concerning permissions is obvious. Second, if an attacker managed to somehow reset the umask between your adjustment of the umask and any of your file creation calls, you could potentially create sensitive files with wide-open permissions.
Risk Assessment
Creating files with weak access permissions may allow unintended access to those files.
Recommendation | Severity | Likelihood | Remediation Cost | Priority | Level |
---|---|---|---|---|---|
FIO06-A C | medium | probable | high | P4 | L3 |
Related Vulnerabilities
Search for vulnerabilities resulting from the violation of this rule on the CERT website.
References
Wiki Markup |
---|
\[[CVE|AA. C References#CVE]\] \[[ISO/IEC 9899:1999|AA. C References#ISO/IEC 9899-1999]\] Section 7.19.5.3, "The {{fopen}} function" \[[ISO/IEC PDTR 24772|AA. C References#ISO/IEC PDTR 24772]\] "XZN Missing or Inconsistent Access Control" \[[OpenBSD|AA. C References#OpenBSD]\] \[[Open Group 04|AA. C References#Open Group 04]\] "The {{open}} function," "The {{umask}} function" \[[ISO/IEC TR 24731-1:2007|AA. C References#SO/IEC TR 24731-1-2007]\] Section 6.5.2.1, "The {{fopen_s}} function" \[[Viega 03|AA. C References#Viega 03]\] Section 2.7, "Restricting Access Permissions for New Files on UnixUNIX" \[[Dowd 06|AA. C References#Dowd 06]\] Chapter 9, "UNIX 1: Privileges and Files" |
...