Re: [OAUTH-WG] Transaction Authorization with OAuth (Torsten Lodderstedt)

Jaap Francke <jaap.francke@iwelcome.com> Thu, 25 April 2019 07:27 UTC

Return-Path: <jaap.francke@iwelcome.com>
X-Original-To: oauth@ietfa.amsl.com
Delivered-To: oauth@ietfa.amsl.com
Received: from localhost (localhost [127.0.0.1]) by ietfa.amsl.com (Postfix) with ESMTP id 7A1E1120155 for <oauth@ietfa.amsl.com>; Thu, 25 Apr 2019 00:27:14 -0700 (PDT)
X-Virus-Scanned: amavisd-new at amsl.com
X-Spam-Flag: NO
X-Spam-Score: -1.9
X-Spam-Level:
X-Spam-Status: No, score=-1.9 tagged_above=-999 required=5 tests=[BAYES_00=-1.9, HTML_MESSAGE=0.001, RCVD_IN_DNSWL_NONE=-0.0001, SPF_PASS=-0.001] autolearn=ham autolearn_force=no
Received: from mail.ietf.org ([4.31.198.44]) by localhost (ietfa.amsl.com [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id WjO1_clixoEq for <oauth@ietfa.amsl.com>; Thu, 25 Apr 2019 00:27:09 -0700 (PDT)
Received: from SMTPGATE01.enterexchange.com (smtpgate01.enterexchange.com [109.205.192.241]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ietfa.amsl.com (Postfix) with ESMTPS id 2009312002E for <oauth@ietf.org>; Thu, 25 Apr 2019 00:27:08 -0700 (PDT)
From: Jaap Francke <jaap.francke@iwelcome.com>
To: "oauth@ietf.org" <oauth@ietf.org>
Thread-Topic: Transaction Authorization with OAuth (Torsten Lodderstedt)
Thread-Index: AQHU+zhINZZlusRlskuXC59Zp2p6Ig==
Date: Thu, 25 Apr 2019 07:27:05 +0000
Message-ID: <74A378B3-B81A-4199-938B-E576FD1AA66C@iwelcome.com>
References: <mailman.71.1556132414.19667.oauth@ietf.org>
In-Reply-To: <mailman.71.1556132414.19667.oauth@ietf.org>
Accept-Language: nl-NL, en-US
Content-Language: en-US
X-MS-Has-Attach:
X-MS-TNEF-Correlator:
x-ms-exchange-messagesentrepresentingtype: 1
x-ms-exchange-transport-fromentityheader: Hosted
x-originating-ip: [172.17.5.138]
Content-Type: multipart/alternative; boundary="_000_74A378B3B81A4199938BE576FD1AA66Ciwelcomecom_"
MIME-Version: 1.0
Archived-At: <https://mailarchive.ietf.org/arch/msg/oauth/bxJR2epKOAI-ittRsMB7K6L7wr8>
Subject: Re: [OAUTH-WG] Transaction Authorization with OAuth (Torsten Lodderstedt)
X-BeenThere: oauth@ietf.org
X-Mailman-Version: 2.1.29
Precedence: list
List-Id: OAUTH WG <oauth.ietf.org>
List-Unsubscribe: <https://www.ietf.org/mailman/options/oauth>, <mailto:oauth-request@ietf.org?subject=unsubscribe>
List-Archive: <https://mailarchive.ietf.org/arch/browse/oauth/>
List-Post: <mailto:oauth@ietf.org>
List-Help: <mailto:oauth-request@ietf.org?subject=help>
List-Subscribe: <https://www.ietf.org/mailman/listinfo/oauth>, <mailto:oauth-request@ietf.org?subject=subscribe>
X-List-Received-Date: Thu, 25 Apr 2019 07:27:14 -0000

Hi Torsten and others,

I just read your blog - having “we need to re-think OAuth scopes” in the title immediately drew my attention.
I find this interesting since I’m struggling with the concept of scopes from time-to-time.
I’ll have to read the blog a few times more to get a good understanding, but I would like to share some of my thoughts on scopes.

I believe the OAuth scope concept has it’s limitations not only for transactions but also for the more traditional ‘resource’ concept.
RFC 6749 defines scopes as follows:
"The value of the scope parameter is expressed as a list of space-
   delimited, case-sensitive strings.  The strings are defined by the
   authorization server.  If the value contains multiple space-delimited
   strings, their order does not matter, and each string adds an
   additional access range to the requested scope.”

I see 2 aspects in this definition:
- how the strings should look like is beyond the scope of the RFC
- each string adds an additional authorisation

Scopes are associated with access_tokens, which typically are bearer tokens as defined by RFC 6750 as:
      A security token with the property that any party in possession of
      the token (a "bearer") can use the token in any way that any other
      party in possession of it can.  Using a bearer token does not
      require a bearer to prove possession of cryptographic key material
      (proof-of-possession).”

This implies that every scope value should fully describe the authorisation that is given. In my view that is rarely done, which is the main reason why I find myself struggling with scope-concept.

Here we have a collection of examples, which demonstrate to me that everyone is inventing their own wheels according to their specfic needs:
https://brandur.org/oauth-scope
https://api.slack.com/docs/oauth-scopes

In various other (draft) standards I see bits and pieces that seem to address this issue.

In UMA an authorisation is conceptually broken down into:
- subject -> requesting party
- verbs -> scopes of access
- object -> resource set.
I like this line of thinking and terminilogy.  However, if access_tokens are bearer tokens, I think ’subject’ is the bearer of the token.


The most common practice, I think, is to use OIDC’s IDTokens to contain a set of claims that scope the scope of the scope :-).

I mean that the claims in the ID-Tokens are used to scope the objects as well as the verbs/scopes of access.

The core intention behind ID-token is to provide information about the authenticated user and not necessarily about the resources that are accessed. In practice, claims about the authenticated users indicate which resources (photos) can be accessed at the resource server.


My understanding of this draft https://tools.ietf.org/html/draft-ietf-oauth-resource-indicators-02

is that the object/resource aspect of authorisation is taken somewhat out of the scope and put into a dedicated parameter. Although (using the example from RFC 6749) the resource parameter indicates the resource server (or application,

   API, etc.) rather than an individual resource that is stored at the resource server. So additional scoping of object/resource set is still needed in addition to the resource parameter.


Furthermore, https://tools.ietf.org/html/draft-ietf-oauth-security-topics-12 makes some interesting statements that are relevant in my view:
The section on Access Token privilege restriction says "access tokens SHOULD be restricted to certain resources

   and actions on resource servers or resources.” So the OAuth scope-string still needs to somehow indicate the resource-scope of the privilege that is communicated.


" The client needs to tell the authorization server, at which URL it

   will use the access token it is requesting.  It could use the
   mechanism proposed [I-D.ietf-oauth-resource-indicators<https://tools.ietf.org/html/draft-ietf-oauth-security-topics-12#ref-I-D.ietf-oauth-resource-indicators>] or encode the
   information in the scope value.”


I’m not sure which point I’m trying to make; i guess the need for standardisation how to use and define OAuth-scopes.

I like the Lodging Intent Pattern and need to do some more reading/thinking about the structured-scope and pushed request objects.

I feel these concepts are not only relevant for authorisation of transactions, but also for any access that needs authorisation.


I’m not sure if i express myself clearly, nevertheless any feedback is welcome, if not alone to get my understanding of the various concepts on a higher level.


Thanks in advance, kind regards


Jaap







Message: 1
Date: Wed, 24 Apr 2019 19:08:25 +0200
From: Torsten Lodderstedt <torsten@lodderstedt.net<mailto:torsten@lodderstedt.net>>
To: Sascha Preibisch <saschapreibisch@gmail.com<mailto:saschapreibisch@gmail.com>>
Cc: oauth <oauth@ietf.org<mailto:oauth@ietf.org>>
Subject: Re: [OAUTH-WG] Transaction Authorization with OAuth
Message-ID: <2997B550-C82B-4D3A-9639-15A004F2F6C5@lodderstedt.net<mailto:2997B550-C82B-4D3A-9639-15A004F2F6C5@lodderstedt.net>>
Content-Type: text/plain; charset=utf-8

Hi Sascha,

I see. I assume every element within the structured scope element to be an independent scope (value) object and intended to use the name of that object as kind of content type definition.

In my last example, the scope is defined as

  "structured_scope":{
     "sign":{
        "credentialID":"qes_eidas",
        "documentDigests":[
           {
              "hash":
                "sTOgwOm+474gFj0q0x1iSNspKqbcse4IeiqlDg/HWuI=",
              "label":"Mobile Subscription Contract"
           }
        ],
        "hashAlgorithmOID":"2.16.840.1.101.3.4.2.1"
     },
     "payment":{
        "type":"sepa-credit-transfer",
        "instructedAmount":{
           "currency":"EUR",
           "amount":"123.50"
        },
        "debtorAccount":{
           "iban":"DE40100100103307118608"
        },
        "creditorName":"Merchant123",
        "creditorAccount":{
           "iban":"DE02100100109307118603"
        },
        "remittanceInformationUnstructured":"new Smartphone"
     }

This means ?sign" and ?payment" would determine the scheme of the respective object.

What do you think?

best regards,
Torsten.

On 23. Apr 2019, at 17:14, Sascha Preibisch <saschapreibisch@gmail.com<mailto:saschapreibisch@gmail.com>> wrote:

Hi Torsten!

If 'structured_scope' would become a generic field for application
specific content, I believe an indicator for the type of content would
be needed on the long run. That is what I meant my 'profile'. I hope
this helps!

Thank you,
Sascha

Am Mo., 22. Apr. 2019 um 22:06 Uhr schrieb Torsten Lodderstedt
<torsten@lodderstedt.net<mailto:torsten@lodderstedt.net>>:

Hi Sascha,

Am 22.04.2019 um 20:34 schrieb Sascha Preibisch <saschapreibisch@gmail.com<mailto:saschapreibisch@gmail.com>>:

Thank you for the article, Torsten!

my pleasure :-)


I like that 'scope' is out of the game for these kinds of authorizations.

What I can see for the general use case is a required identifier
within the 'structures_scope' document that identifies the profile it
should be used for.

What does profile mean in this context?

best regards,
Torsten.

Thank you,
Sascha

Am Sa., 20. Apr. 2019 um 11:21 Uhr schrieb Torsten Lodderstedt
<torsten@lodderstedt.net<mailto:torsten@lodderstedt.net>>:

Hi all,

I just published an article about the subject at: https://medium.com/oauth-2/transaction-authorization-or-why-we-need-to-re-think-oauth-scopes-2326e2038948

I look forward to getting your feedback.

kind regards,
Torsten.
_______________________________________________
OAuth mailing list
OAuth@ietf.org<mailto:OAuth@ietf.org>
https://www.ietf.org/mailman/listinfo/oauth



------------------------------

Subject: Digest Footer

_______________________________________________
OAuth mailing list
OAuth@ietf.org<mailto:OAuth@ietf.org>
https://www.ietf.org/mailman/listinfo/oauth


------------------------------

End of OAuth Digest, Vol 126, Issue 58
**************************************