Privilege Escalation Path
A privilege escalation path is the sequence of steps an attacker (or an authorized user acting improperly) follows to move from limited access to higher-level permissions on a system or network. Each step exploits a weakness that grants a bit more access, eventually reaching privileged control such as administrator or root. Understanding these paths helps defenders find and close the gaps before they can be chained together.
A privilege escalation path is a chained series of conditions, misconfigurations, or vulnerabilities that, when exploited in sequence, allows a principal to acquire permissions beyond those originally granted. In the MITRE ATT&CK framework, privilege escalation is classified as tactic TA0004, encompassing techniques adversaries use to gain higher-level permissions. Escalation may be vertical (gaining higher privilege levels, such as a standard account obtaining administrator or root) or, more broadly in security discussions, horizontal (accessing resources of another principal at a similar level); the specific mechanisms depend heavily on platform and configuration. On Linux, for example, one documented vector is abuse of the setuid or setgid permission bits on an executable, which cause the program to run with the file owner's or group's privileges rather than the invoking user's. Note that privilege escalation concerns runtime exploitation of granted or misconfigured entitlements and is distinct from, though often revealing gaps in, identity governance controls such as access certification and segregation of duties; the effectiveness of a given path varies by operating system, application, and deployment context.
Why it matters
Privilege escalation is frequently the pivot point of a successful intrusion. An attacker who gains an initial foothold typically starts with limited access, and the ability to chain weaknesses into higher-level permissions is often what separates a contained incident from a full compromise. Because escalation classified in MITRE ATT&CK as tactic TA0004 is achieved by combining misconfigurations, vulnerabilities, and overly broad entitlements, a single low-severity finding may become critical when it forms one link in a longer path toward administrator or root control.
For defenders, the value of thinking in terms of paths rather than isolated flaws is that it reflects how adversaries actually operate. Attackers exploit not only software vulnerabilities but also human behaviors and configuration errors, stitching them together until they reach privileged control. Mapping and interrupting these paths before they can be chained lets teams prioritize remediation on the steps that most reduce reachable privilege, rather than treating every weakness as equally urgent.
Privilege escalation also exposes the boundary between runtime enforcement and identity governance. A viable escalation path often reveals gaps that governance controls such as access certification and segregation of duties are meant to catch, but which manifest at runtime as exploitable entitlements. This makes escalation analysis useful both to security operations teams hunting active abuse and to governance teams seeking to close the standing entitlements that make escalation possible in the first place.
Who it's relevant to
Inside Privilege Escalation Path
Common questions
Answers to the questions practitioners most commonly ask about Privilege Escalation Path.