Skip to main content
cd ../lexicon
sys/docs/lexicon/pam.md
Lexicon
PAM

PAM

PAM (Privileged Access Management) governs, monitors and time-bounds elevated account access; correct scoping, session recording and credential rotation reduce standing privilege risk without blocking legitimate administrative work.
Difficulty: Intermediate
5 min read
Updated 2026-09-07

In plain English

Plain definition

PAM (Privileged Access Management) governs, monitors and time-bounds elevated account access; correct scoping, session recording and credential rotation reduce standing privilege risk without blocking legitimate administrative work.

Technical Definition

PAM is a security discipline and supporting platform layer that manages privileged credentials (local administrator, domain admin, root, service and API accounts) through vaulting, credential rotation, just-in-time elevation, session brokering, and session recording. A PAM system typically separates the identity requesting access from the underlying privileged credential: the requester authenticates to the PAM platform, the platform checks policy (role, approval, time window), and it then either injects a rotated credential into a brokered session or grants temporary membership in a privileged group. Core capabilities include a credential vault with automated rotation, approval workflows for standing or just-in-time access, session proxying with keystroke or video recording, and audit logging that is independent of the target system’s own logs.

Operational Relevance

PAM matters operationally because privileged accounts are the most common path used in credential-based breaches and insider misuse. Removing standing privileged access and replacing it with time-boxed, approved, recorded sessions reduces the blast radius of a compromised administrator workstation or a leaked credential. It also supports compliance obligations that require demonstrable control over who touched sensitive systems and when, since PAM audit trails exist independently of the systems being administered and cannot easily be altered by the privileged user being monitored.

Architecture Relationship

PAM sits between identity providers and target infrastructure. It typically integrates with an identity provider or directory service for authentication and group membership, with a secrets or credential vault for storing rotated passwords and keys, and with target systems (servers, network devices, databases, cloud consoles) as the brokered destination for privileged sessions. PAM is complementary to, not a replacement for, broader identity and access management: IAM governs standard user identity and authentication, while PAM adds an additional control layer specifically for elevated or sensitive access, often enforcing multi-factor authentication and approval steps before a privileged session is established.

Example

A systems administrator needs root access to a production database server to apply an emergency patch. Instead of holding a permanent root password, the administrator requests access through the PAM platform, specifying a reason and duration. An approver authorises the request, the PAM platform checks out a rotated credential from its vault, brokers a recorded SSH session to the server, and automatically revokes the access and rotates the credential again once the session ends or the time window expires.

Common Misunderstanding

A frequent misunderstanding is treating PAM as equivalent to a password manager or a general single sign-on (SSO) system. PAM specifically targets privileged, high-impact accounts and adds session brokering, approval workflows and credential rotation that ordinary password managers and SSO do not provide. Another common error is assuming that installing a PAM platform automatically removes risk; if legacy standing privileged accounts and local administrator rights are left outside PAM’s scope, the platform only covers part of the actual privileged access surface, leaving unmanaged paths that attackers can still use.

Validating a Bounded PAM Workflow

Before relying on a PAM control for a specific workflow, confirm the scope in a non-production or isolated test environment. The steps below are read-only or reversible checks intended to verify configuration and behaviour, not to change production access policy.

  • Confirm the target account or system is actually enrolled in the PAM platform’s inventory before assuming it is protected.
  • Request a time-boxed access grant in the test environment and verify that the session is brokered through PAM rather than using a direct standing credential.
  • Confirm the session is recorded or logged in the PAM platform’s independent audit trail, separate from the target system’s own logs.
  • Verify that access is automatically revoked and the credential rotated once the approved time window expires.
  • If any of these checks fail, treat the account as unmanaged and escalate to the platform owner before extending PAM coverage to production accounts; do not attempt to force-remove or delete existing access paths without a documented rollback and change approval, since this can lock out legitimate emergency access.
  • Identity and Access Management (IAM)
  • Zero Trust
  • Just-in-Time (JIT) Access
  • Secrets Management
  • Privileged Session Management

Further Reading

For platform-specific configuration guidance and current version details, consult the vendor’s official PAM documentation and confirm capability claims against the deployed product version before applying them operationally.