Identity Resolution Without a New Login

The fastest way to make an access-control rollout unpopular is to make people log in twice. So the proxy doesn't ask anyone to authenticate again. It reads the session the protected system a

  • Export Control Proxy TeamExport Control Proxy Team
  • date icon

    Tuesday, Aug 11, 2026

Identity Resolution Without a New Login

The fastest way to make an access-control rollout unpopular is to make people log in twice. So the proxy doesn’t ask anyone to authenticate again. It reads the session the protected system already trusts.

Each backend gets a small identity adapter with one job: resolve_identity(request) -> UserIdentity | None. For a locally-authenticated system like Bitbucket, that means reading the existing session cookie and calling the backend’s own user API with it. For a system federated through an existing identity provider (like Okta, Microsoft Entra ID, Ping Identity, JumpCloud, or Cisco Duo), such as GitHub, it means decoding the OIDC token that’s already present from the normal federated login, with no new handshake required.

Resolved identities are cached briefly, keyed by system and session-token hash, so a revoked session or a permissions change doesn’t stay valid on the hot path any longer than necessary. If identity can’t be resolved at all, no session and no token, the request is treated as anonymous: paths that have to stay reachable without a session (like the login page itself) pass through untouched, and everything else is denied, because a denylist can’t be evaluated without a known country.

Onboarding a new backend means writing one of these adapters, plus a matching resource adapter and a routing entry. Nothing else in the pipeline changes.

Blog

Read More Posts

Notes on identity, location, and policy enforcement from the team building it.

Rolling Out Safely: Why Every System Starts in Audit-Only Mode
date icon

Tuesday, Aug 11, 2026

Rolling Out Safely: Why Every System Starts in Audit-Only Mode

The scariest part of any access-control rollout is the moment enforcement goes live and something you didn't anticipate

Read More
Location-Aware Policy, Explained
date icon

Tuesday, Aug 11, 2026

Location-Aware Policy, Explained

Country-based access control is only as good as the location data behind it, and IP geolocation alone is a thin signal.

Read More
Identity Resolution Without a New Login
date icon

Tuesday, Aug 11, 2026

Identity Resolution Without a New Login

The fastest way to make an access-control rollout unpopular is to make people log in twice. So the proxy doesn't ask any

Read More
cta-image

Ready to See It in Action?

Tell us which systems you need to protect and we'll show you exactly how it would work for your team.

Contact Sales