CWE-732: Incorrect Permission Assignment for Critical Resource
Official CWE-732 CWE context with Glexia analysis, remediation guidance, related CVEs, and ATT&CK context.
Glexia's Take
CWE-732: Incorrect Permission Assignment for Critical Resource
Incorrect Permission Assignment for Critical Resource represents a recurring weakness pattern that can create exploitable paths when design, validation, or implementation controls are missing.
Executive Impact
- Confidentiality: Read Application Data,Read Files or Directories: An attacker may be able to read sensitive information from the associated resource, such as credentials or configuration information stored in a file.
- Access Control: Gain Privileges or Assume Identity: An attacker may be able to modify critical properties of the associated resource to gain privileges, such as replacing a world-writable executable with a Trojan horse.
- Integrity,Other: Modify Application Data,Other: An attacker may be able to destroy or corrupt critical data in the associated resource, such as deletion of records from a database.
Developer Pattern
CWE-732 is the kind of defect developers can usually prevent with explicit validation, safer framework defaults, and tests that exercise hostile input or unsafe state transitions.
Confidence
high confidence from CWE-732, 4.20.
Official CWE Definition
CWE-732: Incorrect Permission Assignment for Critical Resource
The product specifies permissions for a security-critical resource in a way that allows that resource to be read or modified by unintended actors.
When a resource is given a permission setting that provides access to a wider range of actors than required, it could lead to the exposure of sensitive information, or the modification of that resource by unintended parties. This is especially dangerous when the resource is related to program configuration, execution, or sensitive user data. For example, consider a misconfigured storage account for the cloud that can be read or written by a public or anonymous user.
Developer And Remediation Guidance
How teams prevent and detect this weakness
Causes
- The following code sets the umask of the process to 0 before creating a file and writing "Hello world" into the file. After running this program on a UNIX system, running the "ls -l" command might return the following output:,The "rw-rw-rw-" string indicates that the owner, group, and world (all users) can read the file and write to it.
- This code creates a home directory for a new user, and makes that user the owner of the directory. If the new directory cannot be owned by the user, the directory is deleted. Because the optional "mode" argument is omitted from the call to mkdir(), the directory is created with the default permissions 0777. Simply setting the new user as the owner of the directory does not explicitly change the permissions of the directory, leaving it with the default. This default allows any user to read and write to the directory, allowing an attack on the user's files. The code also fails to change the owner group of the directory, which may result in access by unexpected groups.,This code may also be vulnerable to Path Traversal (CWE-22) attacks if an attacker supplies a non alphanumeric username.
- The following code snippet might be used as a monitor to periodically record whether a web site is alive. To ensure that the file can always be modified, the code uses chmod() to make the file world-writable. The first time the program runs, it might create a new file that inherits the permissions from its environment. A file listing might look like:,This listing might occur when the user has a default umask of 022, which is a common setting. Depending on the nature of the file, the user might not have intended to make it readable by everyone on the system.,The next time the program runs, however - and all subsequent executions - the chmod will set the file's permissions so that the owner, group, and world (all users) can read the file and write to it:,Perhaps the programmer tried to do this because a different process uses different permissions that might prevent the file from being updated.
- This program creates and reads from an admin file to determine privilege information. If the admin file doesn't exist, the program will create one. In order to create the file, the program must have write privileges to write to the file. After the file is created, the permissions need to be changed to read only.,os.Create will create a file with 0666 permissions before umask if the specified file does not exist. A typical umask of 0022 would result in the file having 0644 permissions. That is, the file would have world-writable and world-readable permissions.,In this scenario, it is advised to use the more customizable method of os.OpenFile with the os.O_WRONLY and os.O_CREATE flags specifying 0640 permissions to create the admin file.,This is because on a typical system where the umask is 0022, the perm 0640 applied in os.OpenFile will result in a file of 0620 where only the owner and group can write.
- The following command recursively sets world-readable permissions for a directory and all of its children: If this command is run from a program, the person calling the program might not expect that all the files under the directory will be world-readable. If the directory is expected to contain private data, this could become a security problem.
- The following Azure command updates the settings for a storage account: However, "Allow Blob Public Access" is set to true, meaning that anonymous/public users can access blobs.,The command could be modified to disable "Allow Blob Public Access" by setting it to false.
Remediation
- Implementation: When using a critical resource such as a configuration file, check to see if the resource has insecure permissions (such as being modifiable by any regular user) [REF-62], and generate an error or even exit the software if there is a possibility that the resource could have been modified by an unauthorized party.
- Architecture and Design: Divide the software into anonymous, normal, privileged, and administrative areas. Reduce the attack surface by carefully defining distinct user groups, privileges, and/or roles. Map these against data, functionality, and the related resources. Then set the permissions accordingly. This will allow you to maintain more fine-grained control over your resources. [REF-207]
- Architecture and Design,Operation: [object Object]
- Implementation,Installation: During program startup, explicitly set the default permissions or umask to the most restrictive setting possible. Also set the appropriate permissions during program installation. This will prevent you from inheriting insecure permissions from any user who installs or runs the program.
- System Configuration: For all configuration files, executables, and libraries, make sure that they are only readable and writable by the software's administrator.
- Documentation: Do not suggest insecure configuration changes in documentation, especially if those configurations can extend to resources and other programs that are outside the scope of the application.
- Installation: Do not assume that a system administrator will manually change the configuration to the settings that are recommended in the software's manual.
- Operation,System Configuration: Ensure that the software runs properly under the United States Government Configuration Baseline (USGCB) [REF-199] or an equivalent hardening configuration guide, which many organizations use to limit the attack surface and potential risk of deployed software.
Detection
- Automated Static Analysis: [object Object]
- Automated Dynamic Analysis: [object Object]
- Manual Analysis: This weakness can be detected using tools and techniques that require manual (human) analysis, such as penetration testing, threat modeling, and interactive tools that allow the tester to record and modify an active session.
- Manual Static Analysis: Manual static analysis may be effective in detecting the use of custom permissions models and functions. The code could then be examined to identifying usage of the related functions. Then the human analyst could evaluate permission assignments in the context of the intended security model of the software.
- Manual Dynamic Analysis: Manual dynamic analysis may be effective in detecting the use of custom permissions models and functions. The program could then be executed with a focus on exercising code paths that are related to the custom permissions. Then the human analyst could evaluate permission assignments in the context of the intended security model of the software.
- Fuzzing: Fuzzing is not effective in detecting this weakness.
- Black Box: [object Object]
- Automated Static Analysis - Binary or Bytecode: [object Object]
Mappings
Related CVEs, CWEs, and ATT&CK context
Related CWEs
- CWE-1004: Sensitive Cookie Without 'HttpOnly' Flag
- CWE-276: Incorrect Default Permissions
- CWE-276: Incorrect Default Permissions
- CWE-277: Insecure Inherited Permissions
- CWE-278: Insecure Preserved Inherited Permissions
- CWE-279: Incorrect Execution-Assigned Permissions
- CWE-281: Improper Preservation of Permissions
- CWE-281: Improper Preservation of Permissions
- CWE-61: UNIX Symbolic Link (Symlink) Following
- CWE-689: Permission Race Condition During Resource Copy
- CWE-285: Improper Authorization
- CWE-668: Exposure of Resource to Wrong Sphere
ATT&CK Relevance
ATT&CK relevance is shown only when reviewed or responsibly inferred.