@James

> While this text from Seán may be true, it is bad advice. It implies we
> should make access tokens as dangerous as possible (conveying all a
> person’s authority) just to discourage sharing.
>

Is this implied because storing IDs with access logs means that ATs
necessarily carry user ID information (possibly indirectly through an
introspection endpoint)? I would note that the AT doesn't need to carry ID
information itself, just enough information has to be stored with request
logs to be able to later associate user IDs with requests. As a naive
example, ATs could be stored with requests and mappings from user IDs to
issued ATs could be stored on the AS. Ignoring the potential
inefficiency/insecurity of such an approach, it allows user IDs to later be
associated with requests without carrying such information in the AT itself.

Staff accessing a company’s whistle-blower service could be an example:
> need a {staff:true} claim to combat spam/gossip; but definitely don’t want
> to include a staff id.
>

I think this is a good example of a scenario of wanting authZ without
authN, thanks.

What is applicable widely enough to mention in a BCP?


And I would add, specific enough. It seems more like something that should
exist in the "Security Considerations" section of a regular standard.

@Neil

But this can only discourage, not prevent, delegation. OAuth is after all a
> delegation protocol.
>

Following on from your side quote, this is why I would say that it only
reduces authZ sharing to authN sharing, because delegation can still be
done even if it's "discouraged".

If the RS allows anonymous requests then there is obviously no
> accountability. Does that need to be explicitly mentioned?


I think this is the crux of the issue. The "attack" then boils down to "if
you don't have a means of identifying individuals that have made requests,
then different individuals that know this might pretend to be the same
individual". At which point the follow on would seem: if you care about
this then add a "means of identifying individuals that have made requests".

On Tue, 27 Oct 2020 at 06:26, Neil Madden <[email protected]> wrote:

> It sounds like we’re trying to redefine cooperation/delegation as an
> “attack”. People delegate and you can’t generally prevent it without
> incarceration. Anything Bob could do with Alice’s access token he could
> also do by asking Alice to do it on his behalf. In other words, any
> credential/token sharing can be replaced by proxying: If Alice wants to
> help underage Bob buy liquor she doesn’t have to share her access token,
> she can just buy it herself and give it to him.
>
> If the RS cares about accountability then the token (or some other means)
> should identify the user - perhaps pseudonymously like OIDC pairwise
> identifiers - and this should be logged for audit. But this can only
> discourage, not prevent, delegation. OAuth is after all a delegation
> protocol.
>
> (In the post-shame world we now live in, the idea that you can enforce
> norms through identification seems almost quaint, but I’m not sure I’m
> ready to be that cynical).
>
> If the RS allows anonymous requests then there is obviously no
> accountability. Does that need to be explicitly mentioned?
>
> — Neil
>
> On 27 Oct 2020, at 01:04, Manger, James <[email protected]>
> wrote:
>
> 
>
> It is worth mentioning “client collaborative attacks” or “authorization
> sharing attacks” because OAuth can make them easier (by packaging authority
> into an access token), compared to the alternative of user’s signing-in to
> an RS directly. But it is tricky to describe; none of the suggestions are
> quite right; and the “right” solution heavily depends on the context.
>
>
>
> >> If access tokens are used to identify individuals, and such
> identifying information (ideally user IDs) is stored with access logs for
> auditing purposes, then this reduces this attack to an authentication
> sharing attack.
>
>
>
> While this text from Seán may be true, it is bad advice. It implies we
> should make access tokens as dangerous as possible (conveying all a
> person’s authority) just to discourage sharing.
>
>
>
> > Since OAuth 2.0 does not mandate the use of cryptographic devices, this
> kind of attack cannot be countered in the general case.
>
>
>
> Even crypto devices aren’t a full solution. Alice can share her
> authorization with Bob & Chris by signing-in with their crypto devices.
>
>
>
> > an access token … only stating that the holder … is over 21 … should
> not be accepted by the RS
>
>
>
> While this may generally be true for an “over 21” claim, it will not
> always be true for other claims. In some situations the privacy risk of
> being personally identified is far more important than any risk of client
> collaboration. Staff accessing a company’s whistle-blower service could be
> an example: need a {staff:true} claim to combat spam/gossip; but definitely
> don’t want to include a staff id.
>
>
>
>
>
> A handful of partial strategies appropriate in various circumstances (but
> all with downsides) could include:
>
> 1. The AS ensures there is only 1 valid access token (or just a few) at
> any point in time for a specific claim of a given user.
>
> 2. Access token bound to a crypto key locked to one device.
>
> 3. Each access token is unique (eg includes a "jti" claim) so an RS can
> notice if the same token is presented in different contexts.
>
> 4. Access token with "sub" (or provides "sub" via token introspection) to
> aid accountability (even if only in a later audit/investigation).
>
> 5. Frequent token replacement.
>
> 6. Nothing (beyond minimal necessary claims) – to maximize privacy.
>
>
>
> What is applicable widely enough to mention in a BCP?
>
>
>
> --
>
> James Manger
> _______________________________________________
> OAuth mailing list
> [email protected]
> https://www.ietf.org/mailman/listinfo/oauth
>
>
> ForgeRock values your Privacy <https://www.forgerock.com/your-privacy>
_______________________________________________
OAuth mailing list
[email protected]
https://www.ietf.org/mailman/listinfo/oauth

Reply via email to