462 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.
#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); }-rw-rw-rw- 1 username 13 Nov 24 17:58 hello.outfunction createUserDir($username){ $path = '/home/'.$username; if(!mkdir($path)){ return false; } if(!chown($path,$username)){ rmdir($path); return false; } return true; }| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2016-2121 | Redis Labs Redis 权限许可和访问控制问题漏洞 — redis | 5.5 | - | 2018-10-31 |
| CVE-2018-17892 | NUUO CMS 安全漏洞 — NUUO CMS | 8.8 | - | 2018-10-12 |
| CVE-2018-14650 | sos-collector 安全漏洞 — sos-collector | 5.0 | - | 2018-09-27 |
| CVE-2016-8637 | Dracut 信息泄露漏洞 — dracut | 7.8 | - | 2018-08-01 |
| CVE-2017-2590 | Red Hat FreeIPA 安全漏洞 — ipa | 8.1 | - | 2018-07-27 |
| CVE-2017-12167 | Red Hat JBoss Enterprise Application Platform 信息泄露漏洞 — EAP-7 | 3.3 | - | 2018-07-26 |
| CVE-2016-9604 | Linux kernel 安全漏洞 — security | 4.4 | - | 2018-07-11 |
| CVE-2012-0433 | insecure permissions on files containing confidential data — crowbar | 5.5 | - | 2018-06-08 |
| CVE-2018-1115 | PostgreSQL adminpack扩展配置错误漏洞 — postgresql | 8.2 | - | 2018-05-10 |
| CVE-2017-12713 | Advantech WebAccess 安全漏洞 — Advantech WebAccess | 7.8 | - | 2017-08-30 |
| CVE-2017-8449 | Elastic X-Pack Security 信息泄露漏洞 — Elastic X-Pack Security | 6.5 | - | 2017-06-16 |
| CVE-2017-8450 | Elastic X-Pack 信息泄露漏洞 — Elastic X-Pack Security | 7.5 | - | 2017-06-16 |
Vulnerabilities classified as CWE-732 (关键资源的不正确权限授予) represent 462 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.