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.
Last updated
Overview
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.
Real-world CVEs
670 recorded CVEs are caused by CWE-732 (Incorrect Permission Assignment for Critical Resource), including 3 in CISA's KEV (Known Exploited Vulnerabilities) catalog. KEVs are shown first. 116 new CWE-732 CVEs have been recorded so far in 2026 (184 in 2025).
- CVE-2019-15752CISA KEVHigh · CVSS 8.6 · EPSS 98th2019-08-28
- CVE-2022-22960CISA KEVHigh · CVSS 8.5 · EPSS 98th2022-04-13
- CVE-2018-13374CISA KEVMedium · CVSS 5.3 · EPSS 98th2019-01-22
- CVE-2026-9508
Incorrect Permission Assignment for Critical Resource vulnerability in Suprema's BioStar
Critical · CVSS 10.0 · EPSS 26th2026-05-29 - CVE-2025-14988
Incorrect Permission Assignment for Critical Resource vulnerability in iba Systems ibaPDA
Critical · CVSS 10.0 · EPSS 33th2026-01-27 - CVE-2025-69426
Ruckus vRIoT IoT Controller < 3.0.0.0 Hardcoded SSH Credentials RCE
Critical · CVSS 10.0 · EPSS 31th2026-01-09 - CVE-2025-12004
The compare API module breaks Extension:Lockdown
Critical · CVSS 10.0 · EPSS 21th2025-10-21 - CVE-2014-125121
Array Networks vAPV and vxAG Default Credential Privilege Escalation
Critical · CVSS 10.0 · EPSS 54th2025-07-31 - CVE-2025-46093Critical · CVSS 9.9 · EPSS 41th2025-08-04
- CVE-2025-49131
FastGPT Sandbox Vulnerable to Sandbox Bypass
Critical · CVSS 9.9 · EPSS 30th2025-06-09 - CVE-2025-0066
Information Disclosure vulnerability in SAP NetWeaver AS for ABAP and ABAP Platform (Internet Communication Framework)
Critical · CVSS 9.9 · EPSS 42th2025-01-14 - CVE-2024-5618
Broken Access Control in PruvaSoft Informatics' Apinizer Management Console
Critical · CVSS 9.9 · EPSS 35th2024-07-18
Showing 12 of 670 recorded CWE-732 CVEs. Track new ones as they are published and get AI-written analysis and fixes.
Monitor CWE-732 vulnerabilitiesCommon consequences
What can happen when CWE-732 is exploited.
Read Application Data, Read Files or Directories
Affects: Confidentiality
An attacker may be able to read sensitive information from the associated resource, such as credentials or configuration information stored in a file.
Gain Privileges or Assume Identity
Affects: Access Control
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.
Modify Application Data, Other
Affects: Integrity, Other
An attacker may be able to destroy or corrupt critical data in the associated resource, such as deletion of records from a database.
How it happens
When it is introduced
Typically introduced during these phases of the software lifecycle.
Applies to
Technologies
How to prevent it
Practical mitigations for CWE-732, grouped by where in the lifecycle they apply.
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.
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]
Effectiveness: Moderate — This can be an effective strategy. However, in practice, it may be difficult or time consuming to define these areas when there are many different resources or user types, or if the applications features change rapidly.
Run the code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by the software.
OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows the software to specify restrictions on file operations.
This may not be a feasible solution, and it only limits the impact to the operating system; the rest of the application may still be subject to compromise.
Be careful to avoid CWE-243 and other weaknesses related to jails.
Effectiveness: Limited — The effectiveness of this mitigation depends on the prevention capabilities of the specific sandbox or jail being used and might only help to reduce the scope of an attack, such as restricting the attacker to certain system calls or limiting the portion of the file system that can be accessed.
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.
Effectiveness: High
For all configuration files, executables, and libraries, make sure that they are only readable and writable by the software's administrator.
Effectiveness: High
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.
Do not assume that a system administrator will manually change the configuration to the settings that are recommended in the software's manual.
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.
When storing data in the cloud (e.g., S3 buckets, Azure blobs, Google Cloud Storage, etc.), use the provider's controls to disable public access.
How to detect it
Automated Static Analysis
Automated static analysis may be effective in detecting permission problems for system resources such as files, directories, shared memory, device interfaces, etc. Automated techniques may be able to detect the use of library functions that modify permissions, then analyze function calls for arguments that contain potentially insecure values.
However, since the software's intended security policy might allow loose permissions for certain operations (such as publishing a file on a web server), automated static analysis may produce some false positives - i.e., warnings that do not have any security consequences or require any code changes.
When custom permissions models are used - such as defining who can read messages in a particular forum in a bulletin board system - these can be difficult to detect using automated static analysis. It may be possible to define custom signatures that identify any custom functions that implement the permission checks and assignments.
Automated Dynamic Analysis
Automated dynamic analysis may be effective in detecting permission problems for system resources such as files, directories, shared memory, device interfaces, etc.
However, since the software's intended security policy might allow loose permissions for certain operations (such as publishing a file on a web server), automated dynamic analysis may produce some false positives - i.e., warnings that do not have any security consequences or require any code changes.
When custom permissions models are used - such as defining who can read messages in a particular forum in a bulletin board system - these can be difficult to detect using automated dynamic analysis. It may be possible to define custom signatures that identify any custom functions that implement the permission checks and assignments.
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
Use monitoring tools that examine the software's process as it interacts with the operating system and the network. This technique is useful in cases when source code is unavailable, if the software was not developed by you, or if you want to verify that the build phase did not introduce any new weaknesses. Examples include debuggers that directly attach to the running process; system-call tracing utilities such as truss (Solaris) and strace (Linux); system activity monitors such as FileMon, RegMon, Process Monitor, and other Sysinternals utilities (Windows); and sniffers and protocol analyzers that monitor network traffic.
Attach the monitor to the process and watch for library functions or system calls on OS resources such as files, directories, and shared memory. Examine the arguments to these calls to infer which permissions are being used.
Automated Static Analysis - Binary or Bytecode
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Manual Static Analysis - Binary or Bytecode
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Dynamic Analysis with Automated Results Interpretation
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Dynamic Analysis with Manual Results Interpretation
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: High
Manual Static Analysis - Source Code
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: High
Automated Static Analysis - Source Code
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Automated Static Analysis
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: SOAR Partial
Architecture or Design Review
According to SOAR [REF-1479], the following detection techniques may be useful:
Effectiveness: High
Code examples
Illustrative examples from MITRE showing how the weakness appears in code.
The following code sets the umask of the process to 0 before creating a file and writing "Hello world" into the file.
Vulnerable example
/* Ignore link following (CWE-59) for brevity */
#define OUTFILE "hello.out"Resulting query
-rw-rw-rw- 1 username 13 Nov 24 17:58 hello.outThis 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.
Vulnerable example
function createUserDir($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.
Vulnerable example
$fileName = "secretFile.out";Resulting query
-rw-r--r-- 1 username 13 Nov 24 17:58 secretFile.outResulting query
-rw-rw-rw- 1 username 13 Nov 24 17:58 secretFile.outThis program creates and reads from an admin file to determine privilege information.
The following command recursively sets world-readable permissions for a directory and all of its children:
Vulnerable example
chmod -R ugo+r DIRNAMEIf 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:
Vulnerable example
az storage account update --name <storage-account> --resource-group <resource-group> --allow-blob-public-access trueSafe example
az storage account update --name <storage-account> --resource-group <resource-group> --allow-blob-public-access falseThe following Google Cloud Storage command gets the settings for a storage account named 'BUCKET_NAME':
Example
gsutil iam get gs://BUCKET_NAMEVulnerable example
"bindings":[{Illustrative examples
Real CVEs that MITRE cites as examples of this weakness.
- CVE-2022-29527 — Go application for cloud management creates a world-writable sudoers file that allows local attackers to inject sudo rules and escalate privileges to root by winning a race condition.
- CVE-2009-3482 — Anti-virus product sets insecure "Everyone: Full Control" permissions for files under the "Program Files" folder, allowing attackers to replace executables with Trojan horses.
- CVE-2009-3897 — Product creates directories with 0777 permissions at installation, allowing users to gain privileges and access a socket used for authentication.
- CVE-2009-3489 — Photo editor installs a service with an insecure security descriptor, allowing users to stop or start the service, or execute commands as SYSTEM.
- CVE-2020-15708 — socket created with insecure permissions
- CVE-2009-3289 — Library function copies a file to a new target and uses the source file's permissions for the target, which is incorrect when the source file is a symbolic link, which typically has 0777 permissions.
- CVE-2009-0115 — Device driver uses world-writable permissions for a socket file, allowing attackers to inject arbitrary commands.
- CVE-2009-1073 — LDAP server stores a cleartext password in a world-readable file.
- CVE-2009-0141 — Terminal emulator creates TTY devices with world-writable permissions, allowing an attacker to write to the terminals of other users.
- CVE-2008-0662 — VPN product stores user credentials in a registry key with "Everyone: Full Control" permissions, allowing attackers to steal the credentials.
- CVE-2008-0322 — Driver installs its device interface with "Everyone: Write" permissions.
- CVE-2009-3939 — Driver installs a file with world-writable permissions.
- CVE-2009-3611 — Product changes permissions to 0777 before deleting a backup; the permissions stay insecure for subsequent backups.
- CVE-2007-6033 — Product creates a share with "Everyone: Full Control" permissions, allowing arbitrary program execution.
- CVE-2007-5544 — Product uses "Everyone: Full Control" permissions for memory-mapped files (shared memory) in inter-process communication, allowing attackers to tamper with a session.
- CVE-2005-4868 — Database product uses read/write permissions for everyone for its shared memory, allowing theft of credentials.
- CVE-2004-1714 — Security product uses "Everyone: Full Control" permissions for its configuration files.
- CVE-2001-0006 — "Everyone: Full Control" permissions assigned to a mutex allows users to disable network connectivity.
- CVE-2002-0969 — Chain: database product contains buffer overflow that is only reachable through a .ini configuration file - which has "Everyone: Full Control" permissions.
Terminology & mappings
Mapped taxonomies
- The CERT Oracle Secure Coding Standard for Java (2011): Create files with appropriate access permission (FIO03-J)
- The CERT Oracle Secure Coding Standard for Java (2011): Do not allow tainted variables in privileged blocks (SEC01-J)
- The CERT Oracle Secure Coding Standard for Java (2011): Do not grant dangerous combinations of permissions (ENV03-J)
- CERT C Secure Coding: Create files with appropriate access permissions (FIO06-C)
Attack patterns
CAPEC attack patterns that exploit this weakness.
- CAPEC-1: Accessing Functionality Not Properly Constrained by ACLs
- CAPEC-122: Privilege Abuse
- CAPEC-127: Directory Indexing
- CAPEC-17: Using Malicious Files
- CAPEC-180: Exploiting Incorrectly Configured Access Control Security Levels
- CAPEC-206: Signing Malicious Code
- CAPEC-234: Hijacking a privileged process
- CAPEC-60: Reusing Session IDs (aka Session Replay)
- CAPEC-61: Session Fixation
- CAPEC-62: Cross Site Request Forgery
- CAPEC-642: Replace Binaries
Frequently asked questions
Common questions about CWE-732.
- What is CWE-732?
- The product specifies permissions for a security-critical resource in a way that allows that resource to be read or modified by unintended actors.
- What CVEs are caused by CWE-732?
- 670 recorded CVEs are attributed to CWE-732, including CVE-2019-15752, CVE-2022-22960, CVE-2018-13374. 3 are listed in CISA's Known Exploited Vulnerabilities (KEV) catalog.
- How do you prevent CWE-732?
- 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.
- How is CWE-732 detected?
- Automated Static Analysis: Automated static analysis may be effective in detecting permission problems for system resources such as files, directories, shared memory, device interfaces, etc. Automated techniques may be able to detect the use of library functions that modify permissions, then analyze function calls for arguments that contain potentially insecure values.
- What are the consequences of CWE-732?
- Exploiting CWE-732 can lead to: Read Application Data, Read Files or Directories, Gain Privileges or Assume Identity, Modify Application Data, Other.
- Is CWE-732 actively exploited?
- Yes. 3 CWE-732 vulnerabilities are in CISA's KEV catalog of actively exploited flaws, out of 670 recorded CVEs.
References
- MITRE CWE definition (CWE-732) (opens in a new tab)
- CWE-732 vulnerabilities on NVD (opens in a new tab)
- Learn: What is a CWE?
Weakness data is sourced from the MITRE CWE catalog (v4.20). CVE associations are aggregated and kept current by RadicalNotion.AI.
Stay ahead of CWE-732
Get alerted the moment a new CWE-732 vulnerability affects your stack, with AI-written analysis, severity context, and remediation guidance.