T. Cappalli
Microsoft
A. Tulshibagwale
Google
June 08, 2021

OpenID Continuous Access Evaluation Profile 1.0 - draft 01
openid-caep-specification-1_0

Abstract

This document defines the Continuous Access Evaluation Profile (CAEP) of the Shared Signals and Events Framework [SSE-FRAMEWORK]. It specifies a set of event types conforming to the SSE Framework. These event types are intended to be used between cooperating Transmitters and Receivers such that Transmitters may send continuous updates using which Receivers can attenuate access to shared human or robotic users, devices, sessions and applications.


Table of Contents

1. Introduction

CAEP is the application of the Shared Signals and Events Profile of IETF Security Events 1.0 [SSE-FRAMEWORK] (SSE Profile) to ensure access security in a network of cooperating providers. CAEP specifies a set of event-types that conform to the SSE Profile. This document specifies the event-types required to achieve this goal.

1.1. Notational Considerations

The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in BCP 14 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.

2. Optional Event Claims

The following claims are optional unless otherwise specified in the event definition.

event_timestamp
OPTIONAL, JSON number: the time at which the event described by this SET occurred. Its value is a JSON number representing the number of seconds from 1970-01-01T0:0:0Z as measured in UTC until the date/time.
initiating_entity
OPTIONAL, JSON string: describes the entity that invoked the event.
This MUST be one of the following strings:

reason_admin
OPTIONAL, JSON object: a localizable administrative message intended for logging and auditing. The object MUST contain one or more key/value pairs, with a BCP47 [RFC5646] language tag as the key and the locale-specific administrative message as the value.
{
    "reason_admin": {
        "en": "Landspeed Policy Violation: C076E82F",
        "de": "Landspeed-Richtlinienverstoss: C076E82F",
        "es-410": "Violacion de la politica de landspeed: C076E82F"
    }
}

Figure 1: Example: Administrative reason information with multiple languages

reason_user
OPTIONAL, JSON object: a localizable user-friendly message for display to an end-user. The object MUST contain one or more key/value pairs, with a BCP47 [RFC5646] language tag as the key and the locale-specific end-user message as the value.
{
    "reason_user": {
        "en": "Access attempt from multiple regions.",
        "de": "Zugriffsversuch aus mehreren Regionen.",
        "es-410": "Intento de acceso desde varias regiones."
    }
}

Figure 2: Example: End user reason information with multiple languages

3. Event Types

The base URI for CAEP event types is:

https://schemas.openid.net/secevent/caep/event-type/

3.1. Session Revoked

Event Type URI:

https://schemas.openid.net/secevent/caep/event-type/session-revoked

Session Revoked signals that the session identified by the subject has been revoked. The explicit session identifier may be directly referenced in the subject or other properties of the session may be included to allow the receiver to identify applicable sessions.

When a Complex Claim is used as the subject, the revocation event applies to any session derived from matching those combined claims.

The actual reason why the session was revoked might be specified with the nested reason_admin and/or reason_user claims described in Section 2.

3.1.1. Event-Specific Claims

There are no event-specific claims for this event type.

When event_timestamp is included, its value MUST represent the time at which the session revocation occurred.

3.1.2. Examples

NOTE: The event type URI is wrapped, the backslash is the continuation character.

{
    "iss": "https://idp.example.com/123456789/",
    "jti": "24c63fb56e5a2d77a6b512616ca9fa24",
    "iat": 1615305159,
    "aud": "https://sp.example.com/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        session-revoked": {
            "subject": {
                "format": "opaque",
                "id": "dMTlD|1600802906337.16|16008.16"
            },
            "event_timestamp": 1615304991643
        }
    }
}

Figure 3: Example: Session Revoked - Required claims + Simple Subject

{
    "iss": "https://idp.example.com/123456789/",
    "jti": "24c63fb56e5a2d77a6b512616ca9fa24",
    "iat": 1615305159,
    "aud": "https://sp.example.com/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        session-revoked": {
            "subject": {
                "session": {
                  "format": "opaque",
                  "id": "dMTlD|1600802906337.16|16008.16"
                },
                "user": {
                  "format": "iss_sub",
                  "iss": "https://idp.example.com/123456789/",
                  "sub": "99beb27c-c1c2-4955-882a-e0dc4996fcbc"
                },
                "tenant": {
                  "format": "opaque",
                  "id": "123456789"
                }
            },
            "initiating_entity": "policy",
            "reason_admin": {
                "en": "Landspeed Policy Violation: C076E82F"
            },
            "reason_user": {
                "en": "Access attempt from multiple regions.",
                "es-410": "Intento de acceso desde varias regiones."
            },
            "event_timestamp": 1615304991643
        }
    }
}

Figure 4: Example: Session Revoked - Complex Subject describing user + session ID + device (includes optional claims)

{
    "iss": "https://idp.example.com/123456789/",
    "jti": "24c63fb56e5a2d77a6b512616ca9fa24",
    "iat": 1615305159,
    "aud": "https://sp.example.com/caep",
    "sub": "jane.smith@example.com",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        session-revoked": {
            "initiating_entity": "policy",
            "reason_admin": {
                "en": "Landspeed Policy Violation: C076E82F"
            },
            "reason_user": {
                "en": "Access attempt from multiple regions.",
                "es-410": "Intento de acceso desde varias regiones."
            },
            "event_timestamp": 1615304991643
        }
    }
}

Figure 5: Example: Session Revoked - subject as `sub` claim (includes optional claims)

{
    "iss": "https://idp.example.com/123456789/",
    "jti": "24c63fb56e5a2d77a6b512616ca9fa24",
    "iat": 1615305159,
    "aud": "https://sp.example.com/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        session-revoked": {
            "subject": {
                "user": {
                    "format": "iss_sub",
                    "iss": "https://idp.example.com/123456789/",
                    "sub": "jane.smith@example.com"
                },
                "device": {
                    "format": "iss_sub",
                    "iss": "https://idp.example.com/123456789/",
                    "sub": "e9297990-14d2-42ec-a4a9-4036db86509a"
                },
                "tenant": {
                  "format": "opaque",
                  "id": "123456789"
                }
            },
            "initiating_entity": "policy",
            "reason_admin": {
                "en": "Policy Violation: C076E822"
            },
            "reason_user": {
                "en": "This device is no longer compliant.",
                "it": "Questo dispositivo non e piu conforme."
            },
            "event_timestamp": 1615304991643
        }
    }
}

Figure 6: Example: Session Revoked - Complex Subject describing user + device + tenant (includes optional claims)

3.2. Token Claims Change

Event Type URI:

https://schemas.openid.net/secevent/caep/event-type/token-claims-change

Token Claims Change signals that a claim in a token, identified by the subject claim, has changed.

The actual reason why the claims change occurred might be specified with the nested reason_admin and/or reason_user claims made in Section 2.

3.2.1. Event-Specific Claims

claims
REQUIRED, JSON object: one or more claims with their new value(s)

When event_timestamp is included, its value MUST represent the time at which the claim value(s) changed.

3.2.2. Examples

NOTE: The event type URI is wrapped, the backslash is the continuation character.

{
    "iss": "https://idp.example.com/987654321/",
    "jti": "9afce1e4e642b165fcaacdd0e7aa4903",
    "iat": 1615305159,
    "aud": "https://sp.example2.net/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        token-claims-change": {
            "subject": {
                "format": "jwt_id",
                "iss": "https://idp.example.com/987654321/",
                "jti": "f61t6e20zdo3px56gepu8rzlsp4c1dpc0fx7"
            },
            "event_timestamp": 1615304991643,
            "claims": {
                "role": "ro-admin"
            }
        }
    }
}

Figure 7: Example: OIDC ID Token Claims Change - Required claims only

{
    "iss": "https://idp.example.com/987654321/",
    "jti": "9afce1e4e642b165fcaacdd0e7aa4903",
    "iat": 1615305159,
    "aud": "https://sp.example2.net/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        token-claims-change": {
            "subject": {
                "format": "jwt_id",
                "iss": "https://idp.example.com/987654321/",
                "jti": "f61t6e20zdo3px56gepu8rzlsp4c1dpc0fx7"
            },
            "event_timestamp": 1615304991643,
            "initiating_entity": "policy",
            "reason_admin": {
                "en": "User left trusted network: CorpNet3"
            },
            "reason_user": {
                "en": "You're no longer connected to a trusted network.",
                "it": "Non sei piu connesso a una rete attendibile."
            },

            "claims": {
                "trusted_network": "false"
            }
        }
    }
}

Figure 8: Example: OIDC ID Token Claims Change - Optional claims

{
    "iss": "https://idp.example.com/987654321/",
    "jti": "dae94fed5f459881efa38b65c6772ddc",
    "iat": 1615305159,
    "aud": "https://sp.example2.net/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        token-claims-change": {
            "subject": {
                "format": "saml_assertion_id",
                "issuer": "https://idp.example.com/987654321/",
                "assertion_id": "_a75adf55-01d7-dbd8372ebdfc"
            },
            "event_timestamp": 1615304991643,
            "claims": {
                "http://schemas.xmlsoap.org/ws/2005/05/identity/\
                claims/role": "ro-admin"
            }
        }
    }
}

Figure 9: Example: SAML Assertion Claims Change - Required claims only

3.3. Credential Change

Event Type URI:

https://schemas.openid.net/secevent/caep/event-type/credential-change

The Credential Change event signals that a credential was created, changed, revoked or deleted. Credential Change scenarios include:

The actual reason why the credential change occurred might be specified with the nested reason_admin and/or reason_user claims made in Section 2.

3.3.1. Event-Specific Claims

credential_type
REQUIRED, JSON string: This MUST be one of the following strings, or any other credential type supported mutually by the Transmitter and the Receiver.

change_type
REQUIRED, JSON string: This MUST be one of the following strings:

friendly_name
OPTIONAL, JSON string: credential friendly name
x509_issuer
OPTIONAL, JSON string: issuer of the X.509 certificate as defined in [RFC5280]
x509_serial
OPTIONAL, JSON string: serial number of the X.509 certificate as defined in [RFC5280]
fido2_aaguid
OPTIONAL, JSON string: FIDO2 Authenticator Attestation GUID as defined in [WebAuthn]

When event_timestamp is included, its value MUST represent the time at which the credential change occurred.

3.3.2. Examples

NOTE: The event type URI is wrapped, the backslash is the continuation character.

{
    "iss": "https://idp.example.com/3456789/",
    "jti": "07efd930f0977e4fcc1149a733ce7f78",
    "iat": 1615305159,
    "aud": "https://sp.example2.net/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        credential-change": {
            "subject": {
                "format": "iss_sub",
                "iss": "https://idp.example.com/3456789/",
                "sub": "jane.smith@example.com"
            },
            "credential_type": "fido2-roaming",
            "change_type": "create",
            "fido2_aaguid": "accced6a-63f5-490a-9eea-e59bc1896cfc",
            "friendly_name": "Jane's USB authenticator",
            "initiating_entity": "user",
            "reason_admin": {
                "en": "User self-enrollment"
            },
            "event_timestamp": 1615304991643
        }
    }
}

Figure 10: Example: Provisioning a new FIDO2 authenticator - Simple Subject + optional claims

3.4. Assurance Level Change

Event Type URI:

https://schemas.openid.net/secevent/caep/event-type/assurance-level-change

The Assurance Level Change event signals that there has been a change in authentication method since the initial user login. This change can be from a weak authentication method to a strong authentication method, or vice versa.

In the first scenario, Assurance Level Change will an increase, while in the second scenario it will be a decrease. For example, a user can start a session with Service Provider A using single factor authentication (such as a password). The user can then open another session with Service Provider B using two-factor authentication (such as OTP). In this scenario an increase Assurance Level Change event will signal to Service Provider A that user has authenticated with a stronger authentication method.

The actual reason why the assurance level changed might be specified with the nested reason_admin and/or reason_user claims made in Section 2.

3.4.1. Event-Specific Claims

current_level
REQUIRED, JSON string: the current NIST Authenticator Assurance Level (AAL) as defined in [SP800-63R3]
This string MUST be one of the following strings:

previous_level
REQUIRED, JSON string: the previous NIST Authenticator Assurance Level (AAL) as defined in [SP800-63R3]
This MUST be one of the following strings:

change_direction
REQUIRED, JSON string: the Authenticator Assurance Level increased or decreased
This MUST be one of the following strings:

When event_timestamp is included, its value MUST represent the time at which the assurance level changed.

3.4.2. Examples

NOTE: The event type URI is wrapped, the backslash is the continuation character.

{
    "iss": "https://idp.example.com/3456789/",
    "jti": "07efd930f0977e4fcc1149a733ce7f78",
    "iat": 1615305159,
    "aud": "https://sp.example2.net/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        assurance-level-change": {
            "subject": {
                "format": "iss_sub",
                "iss": "https://idp.example.com/3456789/",
                "sub": "jane.smith@example.com"
            },
            "current_level": "nist-aal2",
            "previous_level": "nist-aal1",
            "change_direction": "increase",
            "initiating_entity": "user",
            "event_timestamp": 1615304991643
        }
    }
}

Figure 11: Example: Assurance Level Increase - Simple Subject + optional claims

3.5. Device Compliance Change

Event Type URI:

https://schemas.openid.net/secevent/caep/event-type/device-compliance-change

Device Compliance Change signals that a device's compliance status has changed.

The actual reason why the status change occurred might be specified with the nested reason_admin and/or reason_user claims made in Section 2.

3.5.1. Event-Specific Claims

previous_status
REQUIRED, JSON string: the compliance status prior to the change that triggered the event
This MUST be one of the following strings:

current_status
REQUIRED, JSON string: the current status that triggered the event
This MUST be one of the following strings:

When event_timestamp is included, its value MUST represent the time at which the device compliance status changed.

3.5.2. Examples

NOTE: The event type URI is wrapped, the backslash is the continuation character.

{
    "iss": "https://idp.example.com/123456789/",
    "jti": "24c63fb56e5a2d77a6b512616ca9fa24",
    "iat": 1615305159,
    "aud": "https://sp.example.com/caep",
    "events": {
        "https://schemas.openid.net/secevent/caep/event-type/\
        device-compliance-change": {
            "subject": {
                "device": {
                    "format": "iss_sub",
                    "iss": "https://idp.example.com/123456789/",
                    "sub": "e9297990-14d2-42ec-a4a9-4036db86509a"
                },
                "tenant": {
                    "format": "opaque",
                    "id": "123456789"
                }
            },
            "current_status": "not-compliant",
            "previous_status": "compliant",
            "initiating_entity": "policy",
            "reason_admin": {
                "en": "Location Policy Violation: C076E8A3"
            },
            "reason_user": {
                "en": "Device is no longer in a trusted location."
            },
            "event_timestamp": 1615304991643
        }
    }
}

Figure 12: Example: Device No Longer Compliant - Complex Subject + optional claims

4. Normative References

[RFC2119] Bradner, S., "Key words for use in RFCs to Indicate Requirement Levels", BCP 14, RFC 2119, DOI 10.17487/RFC2119, March 1997.
[RFC5280] Cooper, D., Santesson, S., Farrell, S., Boeyen, S., Housley, R. and W. Polk, "Internet X.509 Public Key Infrastructure Certificate and Certificate Revocation List (CRL) Profile", RFC 5280, DOI 10.17487/RFC5280, May 2008.
[RFC5646] Phillips, A. and M. Davis, "Tags for Identifying Languages", BCP 47, RFC 5646, DOI 10.17487/RFC5646, September 2009.
[RFC8174] Leiba, B., "Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words", BCP 14, RFC 8174, DOI 10.17487/RFC8174, May 2017.
[SP800-63R3] Grassi, P., Garcia, M. and J. Fenton, "NIST Special Publication 800-63: Digital Identity Guidelines", June 2017.
[SSE-FRAMEWORK] Tulshibagwale, A., Cappalli, T., Scurtescu, M., Backman, A. and . John Bradley, "OpenID Shared Signals and Events Framework Specification 1.0", May 2021.
[WebAuthn] Balfanz, D., "Web Authentication: An API for accessing Public Key Credentials Level 2", April 2021.

Appendix A. Acknowledgements

The authors wish to thank all members of the OpenID Foundation Shared Signals and Events Working Group who contributed to the development of this specification.

Appendix B. Notices

Copyright (c) 2021 The OpenID Foundation.

The OpenID Foundation (OIDF) grants to any Contributor, developer, implementer, or other interested party a non-exclusive, royalty free, worldwide copyright license to reproduce, prepare derivative works from, distribute, perform and display, this Implementers Draft or Final Specification solely for the purposes of (i) developing specifications, and (ii) implementing Implementers Drafts and Final Specifications based on such documents, provided that attribution be made to the OIDF as the source of the material, but that such attribution does not indicate an endorsement by the OIDF.

The technology described in this specification was made available from contributions from various sources, including members of the OpenID Foundation and others. Although the OpenID Foundation has taken steps to help ensure that the technology is available for distribution, it takes no position regarding the validity or scope of any intellectual property or other rights that might be claimed to pertain to the implementation or use of the technology described in this specification or the extent to which any license under such rights might or might not be available; neither does it represent that it has made any independent effort to identify any such rights. The OpenID Foundation and the contributors to this specification make no (and hereby expressly disclaim any) warranties (express, implied, or otherwise), including implied warranties of merchantability, non-infringement, fitness for a particular purpose, or title, related to this specification, and the entire risk as to implementing this specification is assumed by the implementer. The OpenID Intellectual Property Rights policy requires contributors to offer a patent promise not to assert certain patent claims against other contributors and against implementers. The OpenID Foundation invites any interested party to bring to its attention any copyrights, patents, patent applications, or other proprietary rights that may cover technology that may be required to practice this specification.

Authors' Addresses

Tim Cappalli Microsoft EMail: tim.cappalli@microsoft.com
Atul Tulshibagwale Google EMail: atultulshi@google.com