Principle of Least Privilege

Securitybeginneraka PoLPaka least privilege

// Definition

The design rule that every user, role, token or service should have only the minimum access it needs to do its job — and nothing more. Applied well, a compromised account or a missing check causes limited damage. For QA, least privilege turns into concrete checks: confirm a read-only role cannot write, a normal user cannot reach admin functions, and a token carries only the permissions the account should have.

// Related terms