Token forwarding breaks the chain because the downstream service receives a credential that was not explicitly minted for it. That creates confused-deputy risk, blurs which party is acting, and makes it difficult to enforce per-hop policy or prove who approved what. In practice, the request may still succeed, but the security model no longer matches the actual authority being exercised.
Why This Matters for Security Teams
Token forwarding looks convenient, but it quietly erases the boundary between the original caller and every downstream system that consumes the forwarded credential. Once a service can act with a token it did not explicitly receive for itself, policy becomes harder to reason about, audit trails become less reliable, and approval no longer maps cleanly to execution. This is why confused-deputy failures keep showing up in delegated systems, especially where multiple services, APIs, and human approvals intersect.
The practical risk is not just access leakage. Forwarded tokens can also hide which hop actually needed the privilege, making it difficult to enforce least privilege, step-up checks, or per-service scopes. Guidance from NIST SP 800-53 Rev 5 Security and Privacy Controls treats access enforcement, accountability, and credential management as separate control concerns, and token forwarding collapses those concerns into one blob of inherited authority. That is exactly the kind of design gap attackers exploit in chained workflows. In practice, many security teams encounter the delegation flaw only after a downstream service has already acted outside the intended approval path.
How It Works in Practice
Explicit authorization means each hop gets its own decision, its own scope, and ideally its own short-lived credential. The upstream caller may authenticate the request, but the downstream service should still receive evidence that it was approved for that specific action, not just whatever credential happened to be available. This is the difference between inheriting identity and inheriting authority.
In delegated architectures, safer patterns include token exchange, audience-restricted tokens, per-service scopes, and just-in-time issuance. A service should present proof of what it is, then receive a credential minted for the target resource or action. That preserves separation between authentication, delegation, and authorization. It also makes revocation and tracing more precise because each hop can be validated independently.
- Use explicit audience binding so a token cannot be replayed against unrelated services.
- Prefer short TTLs and per-hop scoping over reusable bearer credentials.
- Require downstream authorization checks even when the upstream caller is trusted.
- Log the original actor, the delegating service, and the final service that executed the action.
NHIMG research on the Guide to the Secret Sprawl Challenge shows how quickly credential sprawl weakens control, and the Salesloft OAuth token breach is a clear example of why bearer-style access can be so dangerous when tokens outlive the context they were meant for. These controls tend to break down in service meshes and event-driven pipelines because requests are replayed asynchronously and the original approval context is no longer available at the time of execution.
Common Variations and Edge Cases
Tighter delegation controls often increase implementation overhead, requiring organisations to balance stronger per-hop verification against lower developer convenience and more complex service coordination. That tradeoff becomes more visible in legacy systems, where token forwarding is already embedded in middleware, or in multi-tenant platforms where a single service may need to act for many principals.
There is no universal standard for this yet. Current guidance suggests treating forwarding as a compatibility mechanism, not a default trust model. In some environments, such as internal batch jobs or tightly controlled automation, a forwarded token may be acceptable if the scope is narrow, the TTL is short, and the target service rechecks authorization. In more dynamic systems, especially agentic or workflow-driven architectures, explicit authorization per hop is the safer pattern because the chain of action can branch unexpectedly.
The hardest cases are long-running transactions, chained microservices, and cross-domain delegation. In those environments, a forwarded token may still appear to work while silently defeating policy intent. Practitioners should assume that any place a credential can travel farther than the approval that created it is a place where the security model can drift from operational reality.
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, OWASP Agentic AI Top 10 and CSA MAESTRO address the attack and risk surface, while NIST AI RMF and NIST CSF 2.0 set the governance and control requirements practitioners need to meet.
| Framework | Control / Reference | Relevance |
|---|---|---|
| OWASP Non-Human Identity Top 10 | NHI-02 | Delegation chains with bearer tokens are a core NHI authorization risk. |
| OWASP Agentic AI Top 10 | A1 | Autonomous workflows amplify confused-deputy risk through chained tool use. |
| CSA MAESTRO | IAM-04 | MAESTRO addresses identity and authorization for agentic service-to-service delegation. |
| NIST AI RMF | AI RMF governance applies when delegated actions are taken by autonomous systems. | |
| NIST CSF 2.0 | PR.AC-4 | Least privilege and access enforcement are directly challenged by token forwarding. |
Replace forwarded credentials with explicitly scoped, short-lived NHI tokens per downstream hop.
Related resources from NHI Mgmt Group
- What breaks when organizations rely on vaulting instead of authorization?
- What breaks when teams rely on MCP authorization instead of identity governance?
- What breaks when security teams rely on model output instead of verifying the authorization event?
- What breaks when MCP tools rely on the UI instead of server-side authorization?
Deepen Your Knowledge
Reviewed and updated by the NHIMG editorial team on September 2, 2026.
NHI Mgmt Group — the #1 independent authority on Non-Human Identity, IAM, and Agentic AI security. nhimg.org