Agentic AI Module Added To NHI Training Course

OAuth Delegation

OAuth delegation is the act of granting an application access to systems or data on behalf of a user or organisation. It is common in modern integrations, but it can create broad downstream authority if scopes are too wide or the connected application is compromised.

Expanded Definition

OAuth delegation is a consent-based authorization pattern that lets an application act on a user or organisation’s behalf without handling the original password. In NHI security, the risk is not the login itself but the delegated grant, the scopes attached to it, and the downstream systems those scopes can reach. The term is often used loosely across IAM, API security, and SaaS administration, so guidance versus consensus is still evolving on how much delegated access should be treated as an NHI control surface.

Practitioners distinguish delegation from direct authentication because the application receives an access token, refresh token, or related grant that can outlive a session and persist across workflows. That makes review, revocation, and scope design central to governance. The NIST Cybersecurity Framework 2.0 reinforces the need to manage access permissions, monitor identities, and reduce systemic exposure, which is exactly where delegated OAuth relationships can drift if they are never revalidated.

The most common misapplication is treating delegated consent as a one-time setup step, which occurs when administrators approve broad scopes and never revisit the grant after the application’s purpose changes.

Examples and Use Cases

Implementing OAuth delegation rigorously often introduces usability and governance friction, requiring organisations to weigh faster integration onboarding against the cost of tighter scope design, consent review, and revocation workflows.

  • A SaaS integration requests calendar and mailbox access for a scheduling assistant, but the business only needs read-only calendar events. Narrowing scopes reduces the blast radius if the token is stolen.
  • An analytics platform connects to a CRM through delegated access to sync records across teams. If the connector is compromised, overbroad scopes can expose customer data far beyond the original workflow.
  • A security team reviews third-party OAuth apps after learning how attackers used stolen tokens in the Salesloft OAuth token breach, then removes unused grants and applies tighter app approvals.
  • An organisation compares OAuth consent policy to the access-governance expectations in NIST Cybersecurity Framework 2.0 to support periodic review, least privilege, and continuous monitoring.
  • A finance workflow uses delegated access for document signing, but a compromised integration can create downstream fraud risk similar to the patterns discussed in the Dropbox Sign breach.

Why It Matters in NHI Security

OAuth delegation matters because it frequently creates non-human authority that is invisible to teams until something breaks. In The State of Non-Human Identity Security, 85% of organisations reported they lack full visibility into third-party vendors connected via OAuth apps, which makes delegated access a practical blind spot rather than a theoretical one. Once a token is issued, the real risk is often not the front-door login but the quiet persistence of a permission grant that survives staff turnover, vendor changes, and application sprawl.

That is why delegated access must be governed like any other NHI: inventory the grants, classify scopes, rotate or revoke tokens where possible, and tie app approval to business purpose. Controls should also consider Zero Trust Architecture principles, because delegated trust should be continuously evaluated rather than assumed safe after initial consent. When delegated access is mismanaged, attackers can move laterally through trusted integrations without ever needing the user’s password.

Organisations typically encounter the consequence only after an abnormal API call, a vendor compromise, or a data exposure investigation, at which point OAuth delegation becomes operationally unavoidable to address.

Standards & Framework Alignment

This section maps relevant standards and security frameworks to the operational risks and controls described in this guidance.

OWASP Non-Human Identity Top 10 address the attack and risk surface, while NIST CSF 2.0 and NIST Zero Trust (SP 800-207) set the governance and control requirements practitioners need to meet.

Framework Control / Reference Relevance
OWASP Non-Human Identity Top 10 NHI-02 Delegated tokens and scopes are a core NHI secret and authorization risk.
NIST CSF 2.0 PR.AC-4 The framework emphasizes managed access permissions and least privilege for identities.
NIST Zero Trust (SP 800-207) Zero Trust requires continuous evaluation of trust, including delegated application access.

Inventory delegated grants, limit scopes, and revoke unused tokens on a fixed review cycle.

Related resources from NHI Mgmt Group