LIVE NEWSROOM · --:-- · May 25, 2026
A LIBRARY FOR SECURITY RESEARCHERS

CWE WEAKNESSES  /  CWE-270

CWE-270

Privilege Context Switching Error

Base

What it is

The product does not properly manage privileges while it is switching between different contexts that have different privileges or spheres of control.

Impact

Access ControlGain Privileges or Assume Identity

Mitigations

  • [Architecture and Design, Operation] Very carefully manage the setting, management, and handling of privileges. Explicitly manage trust zones in the software.
  • [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] Consider following the principle of separation of privilege. Require multiple conditions to be met before permitting access to a system resource.

Real-world CVE examples

  • CVE-2002-1688 — Web browser cross domain problem when user hits "back" button.
  • CVE-2003-1026 — Web browser cross domain problem when user hits "back" button.
  • CVE-2002-1770 — Cross-domain issue - third party product passes code to web browser, which executes it in unsafe zone.
  • CVE-2005-2263 — Run callback in different security context after it has been changed from untrusted to trusted. * note that "context switch before actions are completed" is one

Related weaknesses

Test & detect

Browse all common weaknesses, check related exploited CVEs, or map to ATT&CK techniques.

Source: MITRE CWE. View on cwe.mitre.org →

Scroll to Top