A proxy execution path is an indirect route through which one service invokes or mediates actions against another service. For identity governance, this means effective access can exceed the permissions visible in direct API reviews, especially when the intermediary hides the true backend calls.
Expanded Definition
A proxy execution path is an indirect invocation pattern where one service, agent, or integration acts on behalf of another and masks the real backend action. In NHI governance, the key issue is not just who initiated the request, but which identity actually exercised privilege across the full call chain.
This matters because direct API review can understate effective access when a proxy, broker, gateway, workflow engine, or AI agent relays actions into protected systems. The distinction is especially important in layered architectures that use service-to-service authentication, delegated tokens, or chained automation. Definitions vary across vendors, but the governance question is consistent: does the intermediary preserve attribution, scope, and enforceable policy boundaries, or does it create a hidden privilege path? For identity teams, the relevant baseline is least privilege and traceable control as reflected in the NIST Cybersecurity Framework 2.0.
The most common misapplication is treating proxy-mediated actions as equivalent to the proxy service’s own documented permissions, which occurs when backend calls are not separately logged or reviewed.
Examples and Use Cases
Implementing proxy-path governance rigorously often introduces tracing and policy overhead, requiring organisations to weigh observability and containment against latency and integration complexity.
- A workflow engine uses a service account to trigger database changes, but the database only shows the engine identity unless request-level context is preserved.
- An API gateway forwards a token to downstream services, and the gateway’s privileges appear narrow while the effective backend actions are broader.
- An AI agent calls a tool through an orchestration layer, making the tool execution path look harmless unless the delegated scope is inspected end to end.
- A CI/CD runner signs deployment actions on behalf of multiple pipelines, creating a single proxy path that can conceal which pipeline actually initiated the change.
- A supply-chain compromise such as the SpotBugs Token GitHub Supply Chain Attack shows how intermediary trust can be abused when backend authority is broader than the visible entry point.
In these scenarios, proxy-path review should be paired with service identity analysis and execution tracing. That aligns with the identity assurance principles in NIST Cybersecurity Framework 2.0 and with NHI-specific governance work from NHI Mgmt Group.
Why It Matters in NHI Security
Proxy execution paths are a major source of hidden privilege because they can obscure which NHI actually performed the action, which token was used, and whether the action exceeded intended scope. That creates audit gaps, weakens incident response, and undermines zero trust decisions when the control plane sees only the intermediary.
This risk is not theoretical. NHI Mgmt Group reports that only 5.7% of organisations have full visibility into their service accounts, which means most teams are already operating with incomplete path awareness. When proxy execution is not measured, attackers can use legitimate intermediaries to blend into normal automation, and defenders may miss the true blast radius of a compromised credential. The governance response is to map every indirect execution route, log caller and callee context, and validate that delegated authority is narrowly bounded. The GitHub Personal Account Breach is a reminder that account compromise becomes operationally worse when trusted pathways can be reused without clear attribution.
Organisations typically encounter this failure only after an investigation reveals that a benign-looking intermediary actually executed the harmful backend change, at which point proxy execution path control become 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 and OWASP Agentic AI Top 10 address the attack and risk surface, while NIST CSF 2.0, NIST Zero Trust (SP 800-207) and NIST AI RMF set the governance and control requirements practitioners need to meet.
| Framework | Control / Reference | Relevance |
|---|---|---|
| OWASP Non-Human Identity Top 10 | NHI-01 | Proxy paths hide the true NHI performing an action, reducing visibility and attribution. |
| NIST CSF 2.0 | PR.AC-4 | Least-privilege access must hold across mediated service-to-service execution paths. |
| NIST Zero Trust (SP 800-207) | SC-4 | Zero trust requires policy enforcement on each request, including relayed and chained calls. |
| NIST AI RMF | AI systems can use proxy tools or orchestrators that obscure effective action and accountability. | |
| OWASP Agentic AI Top 10 | A2 | Agentic systems often act through proxies that can conceal the real source of tool execution. |
Constrain agent tool use and verify that proxy-mediated actions are fully attributable and policy checked.