Goal Reached Thanks to every supporter — we hit 100%!

Goal: 1000 CNY · Raised: 1310 CNY

100%

CWE-732 (关键资源的不正确权限授予) — Vulnerability Class 474

474 vulnerabilities classified as CWE-732 (关键资源的不正确权限授予). AI Chinese analysis included.

CWE-732 represents a critical access control weakness where software assigns overly permissive security attributes to vital resources, such as files, directories, or registry keys. This misconfiguration allows unintended actors to read or modify data that should remain restricted, often leading to sensitive information disclosure or unauthorized system changes. Attackers typically exploit this by identifying these loose permissions to access confidential data or alter critical configurations, potentially escalating privileges or compromising system integrity. To prevent this, developers must adhere to the principle of least privilege, ensuring resources are accessible only to necessary processes and users. Rigorous code reviews, automated static analysis tools, and strict adherence to secure coding standards help identify and correct improper permission assignments before deployment, thereby safeguarding critical assets against unauthorized access and manipulation.

MITRE CWE Description
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.
Common Consequences (3)
ConfidentialityRead 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 ControlGain 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, OtherModify 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.
Mitigations (5)
ImplementationWhen 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 DesignDivide 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
Architecture and Design, OperationRun 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 ex…
Effectiveness: Limited
Implementation, InstallationDuring 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
System ConfigurationFor all configuration files, executables, and libraries, make sure that they are only readable and writable by the software's administrator.
Effectiveness: High
Examples (2)
The following code sets the umask of the process to 0 before creating a file and writing "Hello world" into the file.
#define OUTFILE "hello.out" umask(0); FILE *out; /* Ignore link following (CWE-59) for brevity */ out = fopen(OUTFILE, "w"); if (out) { fprintf(out, "hello world!\n"); fclose(out); }
Bad · C
-rw-rw-rw- 1 username 13 Nov 24 17:58 hello.out
Result
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.
function createUserDir($username){ $path = '/home/'.$username; if(!mkdir($path)){ return false; } if(!chown($path,$username)){ rmdir($path); return false; } return true; }
Bad · PHP
CVE IDTitleCVSSSeverityPublished
CVE-2026-0271 Prisma Access Agent: Local Privilege Escalation by Authorized Users — Prisma Access Agent--2026-06-10
CVE-2026-26422 clash-verge-service-ipc <2.3.0 本地权限提升漏洞 — clash-verge-service-ipc 8.4 High2026-06-06
CVE-2026-50590 Mimecast Incydr <2.6.0 任意文件读取漏洞 — Incydr 4.5 Medium2026-06-05
CVE-2026-10840 Openshift-pipelines-operator-rh: openshift-pipelines-operator: tekton-scheduler-rolebinding grants system:authenticated write access to kueue and cert-manager resources — Builds for Red Hat OpenShift 7.1 High2026-06-04
CVE-2026-50209 MDM Server Registration Overriding — Connect M6E 5G Portable WiFi Router--2026-06-04
CVE-2021-4481 Dräger Protector Software Local Privilege Escalation via Insecure File Permissions — Protector Software 8.2 High2026-06-02
CVE-2021-4480 Dräger Protector Software Local Privilege Escalation via Insecure File Permissions — Protector Software 8.2 High2026-06-02
CVE-2026-10591 Kiro IDE Insufficient File Write Restrictions to Execution-Sensitive Paths — Kiro IDE 8.8 High2026-06-02
CVE-2026-27788 ServerView Agents Windows V11.60.04及以前版本权限配置错误漏洞 — ServerView Agents for Windows--2026-06-01
CVE-2026-9508 Incorrect Permission Assignment for Critical Resource vulnerability in Suprema's BioStar — BioStar 2 (server)--2026-05-29
CVE-2026-7480 ASUS System Control Interface 安全漏洞 — ASUS System Control Interface--2026-05-29
CVE-2026-8070 ASUS Armoury Crate 安全漏洞 — Armoury Crate--2026-05-29
CVE-2026-2254 Hitachi Vantara Pentaho Data Integration & Analytics - Incorrect Permission Assignment for Critical Resource — Pentaho Data Integration and Analytics 6.3 Medium2026-05-27
CVE-2026-25112 Genetec RabbitMQ 安全漏洞 — Genetec RabbitMQ 7.8 High2026-05-26
CVE-2026-45246 Summarize < 0.15.1 Insecure File Permissions Information Disclosure — summarize 5.5 Medium2026-05-18
CVE-2026-8612 WWW::Mechanize::Cached versions before 2.00 for Perl deserialize cached HTTP responses from a world-writable on-disk cache, enabling local response forgery and code execution — WWW::Mechanize::Cached--2026-05-15
CVE-2026-41959 iControl and tmsh REST vulnerability — BIG-IP 6.5 Medium2026-05-13
CVE-2026-42058 BIG-IP iControl REST vulnerability — BIG-IP 4.3 Medium2026-05-13
CVE-2026-42937 iControl REST and tmsh vulnerability — BIG-IP 5.5 Medium2026-05-13
CVE-2026-41217 BIG-IP tmsh vulnerability — BIG-IP 7.9 High2026-05-13
CVE-2026-40462 iControl REST and tmsh vulnerability — BIG-IP 6.5 Medium2026-05-13
CVE-2026-8110 Ivanti Endpoint Manager 安全漏洞 — Endpoint Manager 7.8 High2026-05-12
CVE-2026-7431 Ivanti Secure Access Client 安全漏洞 — Secure Access Client 4.4 Medium2026-05-12
CVE-2026-1185 AXIS OS 安全漏洞 — AXIS OS 5.4 Medium2026-05-12
CVE-2026-0541 AXIS OS 安全漏洞 — AXIS OS 6.7 Medium2026-05-12
CVE-2026-41489 Pi-hole: Local privilege escalation via config-controlled path in root-executed service hooks — pi-hole 8.8 High2026-05-11
CVE-2026-45222 Summarize Insecure Daemon Configuration File Permissions — summarize 6.1 Medium2026-05-11
CVE-2026-41288 WatchGuard Agent on Windows Privilege Escalation Vulnerability — WatchGuard Agent 7.8AIHighAI2026-05-06
CVE-2026-41686 Claude SDK for TypeScript has Insecure Default File Permissions in Local Filesystem Memory Tool — anthropic-sdk-typescript 5.5 -2026-05-04
CVE-2026-6499 ILM Informatique OpenConcerto 安全漏洞 — OpenConcerto 4.3 -2026-05-04

Vulnerabilities classified as CWE-732 (关键资源的不正确权限授予) represent 474 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.