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

Goal: 1000 CNY · Raised: 1336 CNY

100%

CWE-250 (带着不必要的权限执行) — Vulnerability Class 280

280 vulnerabilities classified as CWE-250 (带着不必要的权限执行). AI Chinese analysis included.

CWE-250 represents a critical architectural weakness where software executes operations using elevated privileges beyond what is strictly necessary for the task. This misconfiguration typically allows attackers to exploit other vulnerabilities, such as buffer overflows or injection flaws, by granting them higher-level access than intended. If an attacker compromises a low-privilege component, the excessive permissions amplify the impact, potentially leading to full system compromise or unauthorized data modification. To mitigate this risk, developers must adhere to the principle of least privilege, ensuring that each process or user account operates with only the minimum permissions required for its specific function. Implementing strict access controls, regularly auditing permission assignments, and isolating services further reduce the attack surface, thereby limiting the potential damage from any single security breach.

MITRE CWE Description
The product performs an operation at a privilege level that is higher than the minimum level required, which creates new weaknesses or amplifies the consequences of other weaknesses.
Common Consequences (1)
Confidentiality, Integrity, Availability, Access Control Gain Privileges or Assume Identity, Execute Unauthorized Code or Commands, Read Application Data, DoS: Crash, Exit, or Restart
An attacker will be able to gain access to any resources that are allowed by the extra privileges. Common results include executing code, disabling services, and reading restricted data. New weaknesses can be exposed because running with extra privileges, such as root or Administrator, can disable t…
Mitigations (5)
Architecture and Design, Operation Run your code using the lowest privileges that are required to accomplish the necessary tasks [REF-76]. If possible, create isolated accounts with limited privileges that are only used for a single task. That way, a successful attack will not immediately give the attacker access to the rest of the software or its environment. For example, database applications rarely need to run as the database ad…
Architecture and Design Identify the functionality that requires additional privileges, such as access to privileged operating system resources. Wrap and centralize this functionality if possible, and isolate the privileged code as much as possible from other code [REF-76]. Raise privileges as late as possible, and drop them as soon as possible to avoid CWE-271. Avoid weaknesses such as CWE-288 and CWE-420 by protecting …
Architecture and Design Identify the functionality that requires additional privileges, such as access to privileged operating system resources. Wrap and centralize this functionality if possible, and isolate the privileged code as much as possible from other code [REF-76]. Raise privileges as late as possible, and drop them as soon as possible to avoid CWE-271. Avoid weaknesses such as CWE-288 and CWE-420 by protecting …
Implementation Perform extensive input validation for any privileged code that must be exposed to the user and reject anything that does not fit your strict requirements.
Implementation When dropping privileges, ensure that they have been dropped successfully to avoid CWE-273. As protection mechanisms in the environment get stronger, privilege-dropping calls may fail even if it seems like they would always succeed.
Examples (2)
This code temporarily raises the program's privileges to allow creation of a new user folder.
def makeNewUserDir(username): if invalidUsername(username): #avoid CWE-22 and CWE-78 print('Usernames cannot contain invalid characters') return False try: raisePrivileges() os.mkdir('/home/' + username) lowerPrivileges() except OSError: print('Unable to create new user directory for user:' + username) return False return True
Bad · Python
The following code calls chroot() to restrict the application to a subset of the filesystem below APP_HOME in order to prevent an attacker from using the program to gain unauthorized access to files located elsewhere. The code then opens a file specified by the user and processes the contents of the file.
chroot(APP_HOME); chdir("/"); FILE* data = fopen(argv[1], "r+"); ...
Bad · C
CVE ID Title CVSS Severity Published
CVE-2026-76018 Chrome低于151.0.7922.173权限提升漏洞 — Chrome - - 2026-08-20
CVE-2026-70496 Search-v2-operator: search-v2-operator: operator clusterrole is cluster-admin equivalent via impersonate, rbac write, csr approve, and manifestwork — Red Hat Advanced Cluster Management for Kubernetes 2 9.9 Critical 2026-08-19
CVE-2026-24183 Cumulus Linux提权漏洞 — Cumulus Linux GA 7.8 High 2026-08-18
CVE-2026-71846 Insights-client: insights-client: clusterrole grants cluster-wide secrets get/list/watch beyond least privilege — Red Hat Advanced Cluster Management for Kubernetes 2 6.5 Medium 2026-08-12
CVE-2026-72508 Multicloud-operators-subscription: multicloud-operators-subscription: hub and spoke serviceaccounts bound to wildcard rbac (*/*/*) — Red Hat Advanced Cluster Management for Kubernetes 2 9.9 Critical 2026-08-12
CVE-2026-17445 IBM i is Affected By Improper Validation Vulnerability in Line Printer Daemon [] — i 8.2 High 2026-08-12
CVE-2026-18669 IBM i is Affected By A Privilege Escalation Vulnerability [] — i 8.8 High 2026-08-12
CVE-2026-17110 IBM i is Affected By Multiple Vulnerabilities in SQL — i 8.8 High 2026-08-12
CVE-2026-59133 Microsoft High Performance Computing (HPC) Pack Elevation of Privilege Vulnerability — Windows App Client for Windows Desktop 8.8 High 2026-08-11
CVE-2026-18982 Odh-training-operator-rhel9: rhoai fork aggregates training job create onto native edit/admin clusterroles — Red Hat OpenShift AI 2.25 8.8 High 2026-08-10
CVE-2026-18949 Odh-dashboard: odh-dashboard: clusterrole grants cluster-wide crud on secrets and rbac management resources — Red Hat OpenShift AI 2.25 8.8 High 2026-08-10
CVE-2026-18608 Data-science-pipelines-operator: dspo: operator clusterrole grants pods/exec:*, kubeflow.org */*, and clusterrole/binding crud cluster-wide — Red Hat OpenShift AI 2.25 8.7 High 2026-08-10
CVE-2026-67609 Telenia TVox 26.5.3 Privilege Escalation via Insecure sudoers Configuration — TVox 7.8 High 2026-08-03
CVE-2026-50737 EnterpriseDB pglogical 权限许可和访问控制问题漏洞 — pglogical 9.0 Critical 2026-07-28
CVE-2026-14172 Rapid7 InsightVM, Nexpose, and Insight Agent Local Privilege Escalation via Unvalidated Executable Invocation — InsightVM 7.8 High 2026-07-24
CVE-2026-8933 snap-confine Local Privilege Escalation via Capabilities Misconfiguration or Flaw in Execution Environment Setup 7.8 High 2026-07-21
CVE-2026-15226 snapd snap-confine Sandbox Confinement Bypass via Omission of setuid Restriction in Seccomp Templates 8.4 High 2026-07-21
CVE-2026-13104 Lenovo app store 权限许可和访问控制问题漏洞 — App Store 7.3 High 2026-07-16
CVE-2026-15584 Redhatinsights/incluster-checks: incluster-checks: privileged host-chroot debug pods created in shared default namespace enable privilege escalation to node root — Pen Drive Powered by Red Hat Lightspeed 7.5 High 2026-07-13
CVE-2026-42486 Multiple RBAC issues in XAPI — XAPI - - 2026-07-09
CVE-2026-23562 Multiple RBAC issues in XAPI — XAPI - - 2026-07-09
CVE-2026-23561 Multiple RBAC issues in XAPI — XAPI - - 2026-07-09
CVE-2026-23560 Multiple RBAC issues in XAPI — XAPI - - 2026-07-09
CVE-2026-23559 Multiple RBAC issues in XAPI — XAPI - - 2026-07-09
CVE-2026-48584 Microsoft Azure Synapse Elevation of Privilege Vulnerability — Azure Synapse 9.9 Critical 2026-06-19
CVE-2026-12505 Cifs-utils: local privilege escalation via forged cifs.spnego key description in cifs.upcall — Red Hat Enterprise Linux 10 7.8 High 2026-06-18
CVE-2026-47190 IPAM controller service account granted unnecessary full access to Secrets — ip-address-manager 4.4 Medium 2026-06-12
CVE-2026-11626 Local Privilege Escalation in Symantec Endpoint Protection macOS CleanWipe Removal Tool — Symantec Endpoint Protection CleanWipe Removal Tool - - 2026-06-10
CVE-2026-50566 Fission: Environment Runtime.Container and Builder.Container SecurityContext bypass allows privileged pod creation — fission 9.9 Critical 2026-06-10
CVE-2026-50565 Fission builder pods auto-mount the fission-builder ServiceAccount token in the user-supplied builder container — fission 4.9 Medium 2026-06-10

Vulnerabilities classified as CWE-250 (带着不必要的权限执行) represent 280 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.