CyberGlossary

Identity & Access

Authorization

Also known as: AuthZ, Access control

Definition

The process of deciding what an already-authenticated identity is allowed to do — which resources, actions and conditions are permitted.

Authorization (AuthZ) follows authentication: once a user, service or device has proved who it is, the system must decide whether that identity can perform a requested action on a specific resource. Decisions can be based on roles (RBAC), attributes and policies (ABAC), classifications (MAC) or owner discretion (DAC), and are typically enforced by a policy engine that evaluates inputs such as subject, resource, action and environment. Modern stacks externalize policy with standards like OAuth 2.0 scopes, OpenID Connect claims, XACML, or Rego/OPA. Broken or overly permissive authorization is a leading cause of breaches, exemplified by IDOR, privilege escalation and confused-deputy attacks.

Examples

  • Granting a support agent read-only access to customer tickets but not to billing data.
  • OAuth 2.0 access tokens issued with limited scopes such as "orders:read".

Related terms