<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.30 (Ruby 3.4.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-cross-device-security-15" category="bcp" consensus="true" submissionType="IETF" xml:lang="en" version="3">
  <!-- xml2rfc v2v3 conversion 3.31.0 -->
  <front>
    <title abbrev="CDFS">Cross-Device Flows: Security Best Current Practice</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-cross-device-security-15"/>
    <author initials="P." surname="Kasselman" fullname="Pieter Kasselman">
      <organization>Defakto</organization>
      <address>
        <email>prkasselman@gmail.com</email>
      </address>
    </author>
    <author initials="D." surname="Fett" fullname="Daniel Fett">
      <organization>Authlete</organization>
      <address>
        <email>mail@danielfett.de</email>
      </address>
    </author>
    <author initials="F." surname="Skokan" fullname="Filip Skokan">
      <organization>Okta</organization>
      <address>
        <email>panva.ip@gmail.com</email>
      </address>
    </author>
    <date year="2026" month="January" day="23"/>
    <area>sec</area>
    <workgroup>oauth</workgroup>
    <keyword>security</keyword>
    <keyword>oauth2</keyword>
    <keyword>best current practice</keyword>
    <abstract>
      <?line 324?>

<t>This document describes threats against cross-device flows
along with practical mitigations, protocol selection guidance,
and a summary of formal analysis results identified as relevant to
the security of cross-device flows. It serves as a security guide
to system designers, architects, product managers, security
specialists, fraud analysts and engineers implementing cross-device flows.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Discussion of this document takes place on the
    Web Authorization Protocol Working Group mailing list (oauth@ietf.org),
    which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/oauth/"/>.</t>
      <t>Source for this draft and an issue tracker can be found at
    <eref target="https://github.com/oauth-wg/oauth-cross-device-security"/>.</t>
    </note>
  </front>
  <middle>
    <?line 333?>

<section anchor="Introduction">
      <name>Introduction</name>
      <t>Protocol flows that span multiple end-user devices are in widespread use today. These flows are often referred to as cross-device flows. A common example is a user that uses their mobile phone to scan a QR code from their smart TV, giving an app on the TV access to their video streaming service. Besides QR codes, other mechanisms are often used such as PIN codes that the user has to enter on one of the devices, or push notifications to a mobile app that the user has to approve.</t>
      <t>In all cases, it is up to the user to decide whether to grant authorization or not. However, the QR code or PIN are transferred via an unauthenticated channel, leaving it up to the user to decide in which context an authorization is requested. This may be exploited by attackers to gain unauthorized access to a user's resources.</t>
      <t>To accommodate the various nuances of cross-device flows, this document distinguishes between use cases where the cross-device flow is used to authorize access to a resource (cross-device authorization flows) and use cases where the cross-device flow is used to transfer an existing session (cross-device session transfer flows).</t>
      <section anchor="cross-device-authorization">
        <name>Cross-Device Authorization</name>
        <t>Cross-device authorization flows enable a user to initiate an authorization
flow on one device (the Consumption Device) and then use a second, personally
trusted, device (Authorization Device) to authorize the Consumption
Device to access a resource (e.g., access to a service). The Device
Authorization Grant <xref target="RFC8628"/> and Client-Initiated Backchannel
Authentication <xref target="CIBA"/> are two examples of popular cross-device authorization flows.</t>
        <t>In these flows, the Consumption Device and the Authorization Device are not directly connected and there are no technical mechanisms for the Authorization Device and Consumption Device to establish mutual authentication. It is left to the user to decide whether the source of the authorization request (the Consumption Device) should be trusted before they scan a QR code, enter a user code, or accept an authorization request pushed to their Authorization Device. The transfer of the authorization request and context between the Consumption Device and Authorization Device is done over an unauthenticated channel. The only mitigation against this unauthenticated channel is the user's judgement.</t>
        <t>Cross-Device Consent Phishing (CDCP) attacks exploit the unauthenticated channel
between the Consumption Device and Authorization Device using social engineering
techniques commonly used in phishing attacks to gain unauthorized access to the
user's data.</t>
        <t>Several publications have emerged in the public domain (<xref target="ARTDCPHISH"/>, <xref target="DCFLOWPHISH"/>, <xref target="NEWDCPHISH"/>, <xref target="DEFCON29"/>,
<xref target="DCATTACK"/>, <xref target="SQPHISH"/>), describing how the unauthenticated channel can be
exploited using social engineering techniques borrowed from phishing. Unlike traditional
phishing attacks, these attacks don't harvest credentials. Instead, they skip the
step of collecting credentials by persuading users to grant authorization using
their Authorization Devices.</t>
        <t>Once the user grants authorization, the attacker has access to the user's
resources and in some cases is able to collect access and refresh tokens. Once in
possession of the access and refresh tokens, the attacker may use these tokens to
execute lateral attacks and gain additional access, or monetize the tokens by
selling them. These attacks are effective even when multi-factor authentication
is deployed, since the attacker's aim is not to capture and replay the credentials,
but rather to persuade the user to grant authorization.</t>
      </section>
      <section anchor="cross-device-session-transfer">
        <name>Cross-Device Session Transfer</name>
        <t>Session transfer flows enable a user to transfer access to a service or network from a device on which the user is already authenticated to a second device such as a mobile phone. In these flows, the user is authenticated and then authorizes the session transfer on one device, referred to as the Authorization Device (e.g., a personal computer, web portal or application), and transfers the session to the device where they will continue to consume the session, referred to as the Consumption Device (e.g., a mobile phone or portable device).</t>
        <t>The session may be transferred by showing the user a session transfer code on the Authorization Device, which is then entered on the Consumption Device. This flow may be streamlined by rendering the session transfer code as a QR code on the Authorization Device and scanned by the Consumption Device.</t>
        <t>The session transfer preserves state information, including authentication state, at the second device to avoid additional configuration and optimize the user experience. These flows are often used to add new devices to a network, onboard customers to a mobile application, or provision new credentials (e.g., <xref target="OpenID.SIOPV2"/>).</t>
        <t>In these cross-device session transfer flows, the channel between the Authorization Device and the Consumption Device is unauthenticated.</t>
        <t>Cross-Device Session Phishing (CDSP) attacks exploit the unauthenticated channel
between the Authorization Device and Consumption Device by using social engineering
techniques to convince the user to send the session transfer code to the attacker.
These attacks borrow techniques from traditional phishing attacks, but instead of collecting passwords, attackers collect session transfer codes and other artifacts that allow them to set up a session and then use it to access a user's data.</t>
      </section>
      <section anchor="defending-against-cross-device-attacks">
        <name>Defending Against Cross-Device Attacks</name>
        <t>This document provides guidance to implementers (e.g. system designers, architects, product managers, security specialists, fraud analysts, and engineers) of cross-device flows to defend against Cross-Device Consent Phishing and Cross-Device Session Phishing attacks.</t>
        <ol spacing="normal" type="1"><li>
            <t>Practical mitigations for susceptible protocols (<xref target="practical-mitigations"/>).</t>
          </li>
          <li>
            <t>Protocol selection guidance to avoid using susceptible protocols (<xref target="protocol-selection"/>).</t>
          </li>
          <li>
            <t>Results from formal analysis of susceptible protocols (<xref target="foundational-pillars"/>).</t>
          </li>
        </ol>
      </section>
      <section anchor="conventions-and-terminology">
        <name>Conventions and Terminology</name>
        <t>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 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <t>This specification uses the terms "access token", "refresh token",
"authorization server", "resource server", "authorization endpoint",
"authorization request", and
"client" defined by The OAuth 2.0 Authorization Framework <xref target="RFC6749"/>.</t>
        <t>This document uses the terms "social engineering" and "phishing" as
described in the NIST Computer Security Resource Center Glossary <xref target="NISTGlossary"/>.</t>
      </section>
    </section>
    <section anchor="best-practices">
      <name>Best Practices</name>
      <t>This section describes the set of security mechanisms and measures to secure cross-device protocols against CDCP and CDSP attacks that the OAuth working group considers best practices at the time of writing this specification.</t>
      <ol spacing="normal" type="1"><li>
          <t>Implementers MUST perform a risk assessment before implementing cross-device flows, weighing the risks from Cross-Device Consent Phishing and Cross-Device Session Phishing attacks against benefits for users.</t>
        </li>
        <li>
          <t>Implementers SHOULD avoid cross-device flows if risks cannot be sufficiently mitigated.</t>
        </li>
        <li>
          <t>Implementers SHOULD follow the guidance provided in <xref target="protocol-selection"/> for protocol selection.</t>
        </li>
        <li>
          <t>Implementers MUST select appropriate mitigations from <xref target="practical-mitigations"/> to address risks identified in the risk assessment.</t>
        </li>
        <li>
          <t>Implementers SHOULD include proximity as one of the selected mitigations as defined in <xref target="establish-proximity"/>, if possible.</t>
        </li>
      </ol>
      <t>These best practices apply to the Device Authorization Grant (<xref target="RFC8628"/>) as well as other cross-device protocols such as the Client Initiated Backchannel Authentication <xref target="CIBA"/>, Self-Issued OpenID Provider v2 <xref target="OpenID.SIOPV2"/>, OpenID for Verifiable Presentations <xref target="OpenID.VP"/>, the Pre-Authorized Code Flow in (<xref target="OpenID.VCI"/>) and other cross-device protocols that rely on the user to authenticate the channel between devices.</t>
      <t><xref target="cross-device-flow-patterns"/> provides details about susceptible protocols and <xref target="cross-device-flow-exploits"/> provides attack descriptions. <xref target="practical-mitigations"/> provides details about the security mechanisms and mitigations, <xref target="protocol-selection"/> provides protocol selection guidance and <xref target="foundational-pillars"/> provides details from formal analysis of protocols that apply to cross device flows.</t>
    </section>
    <section anchor="cross-device-flow-patterns">
      <name>Cross-Device Flow Patterns</name>
      <t>Cross-device flows enable a user to initiate an interaction on one device (e.g., a smart TV) and complete or continue it on a second device (e.g., a mobile phone). This specification addresses two distinct cross-device use cases:</t>
      <ul spacing="normal">
        <li>
          <t><strong>Cross-Device Authorization:</strong> In the cross-device authorization use case, the second device is used to authenticate the user or grant authorization before passing control back to the first device as described in <xref target="cda"/>.</t>
        </li>
        <li>
          <t><strong>Cross-Device Session Transfer</strong> In the cross-device session transfer use case, the user is already authenticated on the first device, before the session is transferred to the second device without requiring the user to re-authenticate as described in <xref target="cdst"/>.</t>
        </li>
      </ul>
      <t>These flows typically involve using a mobile phone to scan a QR code
or enter a user code displayed on the first device (e.g., Smart
TV, Kiosk, Personal Computer or other electronic devices).</t>
      <section anchor="cda">
        <name>Cross-Device Authorization</name>
        <t>In a cross-device authorization flow, a user attempts to access a service on one device, referred to as the Consumption Device, (e.g., a smart TV) and then uses a second device, referred to as the Authorization Device (e.g., a smartphone), to authorize access to a resource (e.g., access to a streaming service) on
the Consumption Device.</t>
        <t>Cross-device authorization flows have several benefits, including:</t>
        <ul spacing="normal">
          <li>
            <t>Authorization on devices with limited input capabilities: End-users can
authorize devices with limited input capabilities to access content (e.g.,
smart TVs, digital whiteboards, printers or similarly constrained devices).</t>
          </li>
          <li>
            <t>Secure authentication on shared or public devices: End-users can perform
authentication and authorization using a personally trusted device, without
risk of disclosing their credentials to a public or shared device.</t>
          </li>
          <li>
            <t>Ubiquitous multi-factor authentication: Enables a user to use multi-factor
authentication, independent of the device on which the service is being
accessed (e.g., a kiosk, smart TV or shared Personal Computer).</t>
          </li>
          <li>
            <t>Convenience of a single, portable, credential store: Users can keep all
their credentials in a mobile wallet or mobile phone that they already
carry with them.</t>
          </li>
        </ul>
        <t>There are three cross-device flow patterns for transferring the authorization request between the Consumption Device and the Authorization Device.</t>
        <ul spacing="normal">
          <li>
            <t><strong>User-Transferred Session Data Pattern:</strong> In the first pattern, the user initiates the authorization process with the authorization server by copying information from the Consumption Device to the Authorization Device, before authorizing an action. By transferring the data from the Consumption Device to the Authorization Device, the user transfers the authorization session. For example, the user may read a code displayed on the Consumption Device and enter it on the Authorization Device, or they may scan a QR code displayed on the Consumption Device with the Authorization Device. The Device Authorization Grant (<xref target="RFC8628"/>) is an example of a cross-device flow that follows this pattern.</t>
          </li>
          <li>
            <t><strong>Backchannel-Transferred Session Pattern:</strong> In the second pattern, the OAuth client on the Consumption Device is responsible for transferring the session and initiating authorization on the Authorization Device via a backchannel with the Authorization Server. For example, the user may attempt an online purchase on a Consumption Device (e.g., a personal computer) and receive an authorization request on their Authorization Device (e.g., mobile phone). The Client Initiated Backchannel Authentication <xref target="CIBA"/> is an example of a cross-device flow that follow this pattern.</t>
          </li>
          <li>
            <t><strong>User-Transferred Authorization Data Pattern:</strong> In the third pattern, the OAuth client on the Consumption Device triggers the authorization request via a backchannel with the Authorization Server. Authorization data (e.g., a 6-digit authorization code) is displayed on the Authorization Device, which the user transfers to Consumption Device (e.g., by manually entering it). For example, the user may attempt to access data in an enterprise application and receive a 6-digit authorization code on their Authorization Device (e.g., mobile phone) that they enter on Consumption Device. Note: The use of a 6-digit code is illustrative and reflects common practice at the time of writing. Code length may vary based on usability and risk considerations, and specifying the appropriate length is out of scope for this document.</t>
          </li>
        </ul>
        <section anchor="utsdp">
          <name>User-Transferred Session Data Pattern</name>
          <t>The Device Authorization Grant (<xref target="RFC8628"/>) is an example of a cross-device flow that relies on the user copying information from the Consumption Device to the Authorization Device by either entering data manually or scanning a QR code. Figure 1 shows a typical example of this flow:</t>
          <artwork type="ascii-art"><![CDATA[
             +--------------+                       +---------------+
             |  Consumption |--(B) Request -------->|               |
             |    Device    |      QR/User Code     |               |
             |              |                       |               |
             |              |<-(C) Return ----------|               |
    +------->|              |      QR/User Code     |               |
    |        |              |                       |               |
    |        |              |--(D) Poll for ------->|               |
   (A) User  |              |      Authorization    |               |
    |  Start |              |                       |               |
    |  Flow  |              |<-(J) Grant -----------| Authorization |
    |        |              |      Authorization    |     Server    |
    |        +--------------+                       |               |
    |                                               |               |
+------+                                            |               |
| User |                                            |               |
+------+                                            |               |
 |   |                                              |               |
 |  (E) Scan QR code or enter User Code             |               |
 |   |                                              |               |
 |   |       +--------------+                       |               |
 |   +------>| Authorization|                       |               |
 |           |    Device    |--(F) Send QR code --->|               |
 |           |              |      or user code     |               |
 |           |              |                       |               |
 |           |              |<-(G) Request user ----|               |
 |           |              |     Authentication and|               |
 |           |              |     Authorization     |               |
 +-(H) User->|              |                       |               |
Authenticates|              |                       |               |
and grants   |              |                       |               |
Authorization|              |                       |               |
             |              |--(I) Authentication ->|               |
             |              |      and Authorization|               |
             |              |      Completes        |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure 1: User-Transferred Session Data Pattern</t>
          <ul spacing="normal">
            <li>
              <t>(A) The user takes an action on the Consumption Device by starting a purchase, adding a device to a network
or connecting a service to the Consumption Device.</t>
            </li>
            <li>
              <t>(B) The Consumption Device requests a QR code or user code from an Authorization Server.</t>
            </li>
            <li>
              <t>(C) The Authorization Server returns a QR code or user code to the Consumption Device, which displays it to the user with instructions to scan the QR code or enter the user code using the Authorization Device.</t>
            </li>
            <li>
              <t>(D) The Consumption Device starts polling the Authorization Server to find out if the user granted authorization.</t>
            </li>
            <li>
              <t>(E) The user scans the QR code or enters the user code on the Authorization Device.</t>
            </li>
            <li>
              <t>(F) The QR code or user code is sent to the Authorization Server</t>
            </li>
            <li>
              <t>(G) The Authorization Server validates the QR code or user code and prompts the user to authenticate and accept or decline the authorization request.</t>
            </li>
            <li>
              <t>(H) The user authenticates and grants authorization using the Authorization Device.</t>
            </li>
            <li>
              <t>(I) The user is authenticated and authorization is granted to access the user's resources (there may be several additional messages, depending on the authentication protocol, user interface and other implementation details).</t>
            </li>
            <li>
              <t>(J) The Authorization Server grants authorization (e.g. by issuing tokens) to the Consumption Device to access the user's resources.</t>
            </li>
          </ul>
        </section>
        <section anchor="btsp">
          <name>Backchannel-Transferred Session Pattern</name>
          <t>The Client Initiated Backchannel Authentication <xref target="CIBA"/> transfers the session on the backchannel with the Authorization Server to request authorization on the Authorization Device. Figure 2 shows an example of this flow.</t>
          <artwork type="ascii-art"><![CDATA[
             +--------------+                       +---------------+
    +------->|  Consumption |--(B) Backchannel ---->|               |
    |        |     Device   |      Authorization    |               |
    |        |              |      Request          |               |
    |        |              |                       | Authorization |
    |        |              |<-(F) Grant------------|     Server    |
    |        +--------------+      Authorization    |               |
   (A) User                                         |               |
    |  Start                                        |               |
    |  Flow                                         |               |
    |                                               |               |
+------+                                            |               |
| User |                                            |               |
+------+                                            |               |
    |                                               |               |
   (D) User Authenticate                            |               |
    |  and Authorize Action                         |               |
    |                                               |               |
    |        +--------------+                       |               |
    |        | Authorization|                       |               |
    |        |    Device    |<-(C) Request User ----|               |
    +------->|              |      Authentication   |               |
             |              |      and Authorization|               |
             |              |                       |               |
             |              |--(E) Authentication ->|               |
             |              |      and Authorization|               |
             |              |      Completes        |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure 2: Backchannel-Transferred Session Pattern</t>
          <ul spacing="normal">
            <li>
              <t>(A) The user takes an action on the Consumption Device by starting a purchase, adding a device to a network or connecting a service to the Consumption Device.</t>
            </li>
            <li>
              <t>(B) The client on the Consumption Device requests user authorization on the backchannel from the Authorization Server and instructs the user to authorize the request on the Authorization Device and waits for a response from the Authorization Server.</t>
            </li>
            <li>
              <t>(C) The Authorization Server requests user authentication and authorization on the user's Authorization Device.</t>
            </li>
            <li>
              <t>(D) If the user is unauthenticated, they use their Authorization Device to authenticate and grant authorization to the Authorization Server.</t>
            </li>
            <li>
              <t>(E) The user is authenticated and authorization is granted to access the user's resources (there may be several additional messages, depending on the authentication protocol, user interface and other implementation details).</t>
            </li>
            <li>
              <t>(F) The Authorization Server grants authorization (e.g., by issuing tokens) to the Consumption Device to access the user's resources.</t>
            </li>
          </ul>
          <t>The Authorization Server may use a variety of mechanisms to request user authorization, including a push notification to a dedicated app on a mobile phone, or sending a text message with a link to an endpoint where the user can authenticate and authorize an action.</t>
        </section>
        <section anchor="utadp">
          <name>User-Transferred Authorization Data Pattern</name>
          <t>Examples of the user-transferred authorization data pattern include flows in which the Consumption Device requests the Authorization Server to send authorization data (e.g., a 6-digit authorization code in a text message, e-mail or mobile application) to the Authorization Device. Once the Authorization Device receives the authorization data, the user enters it on the Consumption Device. The Consumption Device sends the authorization data back to the Authorization Server for validation before gaining access to the user's resources. Figure 3 shows an example of this flow.</t>
          <artwork type="ascii-art"><![CDATA[
             +--------------+                       +---------------+
    +------->|  Consumption |--(B) Backchannel ---->|               |
    |        |     Device   |      Authorization    |               |
    |        |              |      Request          |               |
    |        |              |                       |               |
    |        |              |--(F) Send------------>|               |
    |        |              |      Authorization    |               |
    |        |              |      Data             |               |
    |        |              |                       | Authorization |
    |        |              |<-(G) Grant------------|     Server    |
    |        +--------------+      Authorization    |               |
   (A) User       ^                                 |               |
    |  Start      |                                 |               |
    |  Flow      (E) User Enters                    |               |
    |             |  Authorization                  |               |
+------+          |  Data                           |               |
| User |----------+                                 |               |
+------+                                            |               |
    ^                                               |               |
   (D) User Copies                                  |               |
    |  Authorization Data                           |               |
    |                                               |               |
    |        +--------------+                       |               |
    |        | Authorization|                       |               |
    |        |    Device    |<-(C) Send ------------|               |
    +--------|              |      Authorization    |               |
             |              |      Data             |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure 3: User-Transferred Authorization Data Pattern</t>
          <ul spacing="normal">
            <li>
              <t>(A) The user takes an action on the Consumption Device by starting a purchase, adding a device to a network or connecting a service to the Consumption Device.</t>
            </li>
            <li>
              <t>(B) The client on the Consumption Device requests user authorization on the backchannel from the Authorization Server.</t>
            </li>
            <li>
              <t>(C) The Authorization Server sends authorization data (e.g., a 6-digit authorization code) to the Authorization Device. Examples of mechanisms that may be used to distribute the authorization data include text messages, email or a mobile application.</t>
            </li>
            <li>
              <t>(D) The user reads and copies the authorization data (e.g., the 6-digit authorization code) received on the Authorization Device.</t>
            </li>
            <li>
              <t>(E) The user enters the authorization data on the Consumption Device.</t>
            </li>
            <li>
              <t>(F) The Consumption Device sends the authorization data to the Authorization Server.</t>
            </li>
            <li>
              <t>(G) The Authorization Server issues tokens or grants authorization to the Consumption Device to access the user's resources if the authorization data is the same as that send in step (C).</t>
            </li>
          </ul>
          <t>The Authorization Server may choose to authenticate the user before sending the authorization data.</t>
        </section>
      </section>
      <section anchor="cdst">
        <name>Cross-Device Session Transfer</name>
        <t>Session transfer flows enable a user to transfer access to a service or network from a device on which the user is already authenticated to a second device such as a mobile phone. In these flows, the user is authenticated and then authorizes the session transfer on one device, referred to as the Authorization Device (e.g., a personal computer, web portal or application), and transfers the session to the device where they will continue to consume the session, referred to as the Consumption Device (e.g., a mobile phone or portable device).</t>
        <t>The session transfer preserves state information, including authentication state, at the second device to avoid additional configuration and optimize the user experience. These flows are often used to add new devices to a network, onboard customers to a mobile application, or provision new credentials (e.g., <xref target="OpenID.SIOPV2"/>).</t>
        <section anchor="cross-device-session-transfer-pattern">
          <name>Cross-Device Session Transfer Pattern</name>
          <t>In this flow, the user is authenticated and starts the flow by authorizing the transfer of the session on the Authorization Device. The Authorization Device requests a session transfer code that may be rendered as a QR code on the Authorization Device. When the user scans the QR code or enters it on the Consumption Device where they would like the session to continue, the Consumption Device presents it to the Authorization Server. The Authorization Server then transfers the session to the Consumption Device. This may include transferring authentication and authorization state to optimize the user experience. This type of flow is used, for example, for adding new devices to networks, bootstrapping new applications, or provisioning new credentials. The Pre-Authorized Code Flow in (<xref target="OpenID.VCI"/>) is an instance of using this pattern to provision a new credential. Figure 4 below shows a typical flow.</t>
          <artwork type="ascii-art"><![CDATA[
            +---------------+                       +---------------+
  +-------->| Authorization |                       | Authorization |
  |         |    Device     |--(B) Session -------->|     Server    |
  |         |               |      Transfer Request |               |
  |         |               |                       |               |
  |         |               |<-(C) Session ---------|               |
  |         |               |      Transfer Code    |               |
  |         |               |                       |               |
  |         +---------------+                       |               |
 (A) User      |                                    |               |
  |  Start    (D) User Views                        |               |
  |  Flow      |  Session Transfer Code             |               |
  |            v  or QR Code                        |               |
+---------------------------+                       |               |
|           User            |                       |               |
+---------------------------+                       |               |
                   |                                |               |
                  (E) Enter Session Transfer Code   |               |
                   |  or Scan QR code               |               |
                   |                                |               |
                   v                                |               |
            +---------------+                       |               |
            |  Consumption  |                       |               |
            |     Device    |--(F) Present -------->|               |
            |               |      Session Transfer |               |
            |               |      Code             |               |
            |               |                       |               |
            |               |<-(G) Return Session --|               |
            |               |      Context          |               |
            +---------------+                       +---------------+
]]></artwork>
          <t>Figure 4: Cross-Device Session Transfer Pattern</t>
          <ul spacing="normal">
            <li>
              <t>(A) The user is authenticated on the Authorization Device and authorizes the transfer of the session to the Consumption Device.</t>
            </li>
            <li>
              <t>(B) The user starts the flow and is authenticated on their Authorization Device before they authorize the transfer of the session to the Consumption Device.</t>
            </li>
            <li>
              <t>(C) The Authorization Server responds with a session transfer code, which may be rendered as a QR code on the Authorization Device.</t>
            </li>
            <li>
              <t>(D) The user views the session transfer code, which may be rendered as a QR code.</t>
            </li>
            <li>
              <t>(E) The user enters the session transfer code the Consumption Device (e.g., their mobile phone). If the session transfer code is rendered as a QR code, the user scans the QR code with the target Consumption Device.</t>
            </li>
            <li>
              <t>(F) The client on the Consumption Device presents the session transfer code to the Authorization Server.</t>
            </li>
            <li>
              <t>(G) The Authorization Server verifies the session transfer code and returns the session context information needed to resume the session on the Consumption Device. The user resumes the session they initiated and authorized on the Authorization Device and proceeds to access the information on the Consumption Device.</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="example-flows">
        <name>Examples of Cross-Device Flows</name>
        <t>The following examples illustrate the above flows in a diverse range of practical settings. Corresponding examples of how these flows may be exploited by attackers are documented in <xref target="example-exploits"/>.</t>
        <section anchor="example-a1">
          <name>Example A1: Authorize Access to a Video Streaming Service (User-Transferred Session Data Pattern)</name>
          <t>An end-user sets up a new smart TV and wants to connect it to their favorite streaming service. The streaming service displays a QR code on the TV that the user scans with their mobile phone. The user is redirected to the streaming service provider's web page and asked to enter their credentials to authorize the smart TV to access the streaming service. The user enters their credentials and grants authorization, after which the streaming service is available on the smart TV. <xref target="example-b1"/> illustrates an exploit that applies to this scenario.</t>
        </section>
        <section anchor="example-a2">
          <name>Example A2: Authorize Access to Productivity Services (User-Transferred Session Data Pattern)</name>
          <t>An employee wants to access their files on an interactive whiteboard in a conference room. The interactive whiteboard displays a URL and a code. The user enters the URL on their personal computer and is prompted for the code. Once they enter the code, the user is asked to authenticate and authorize the interactive whiteboard to access their files. The user enters their credentials and authorizes the transaction and the interactive whiteboard retrieves their files and allows the user to interact with the content. <xref target="example-b2"/> describes an exploit relevant to this example.</t>
        </section>
        <section anchor="example-a3">
          <name>Example A3: Authorize Use of a Bike Sharing Scheme (User-Transferred Session Data Pattern)</name>
          <t>An end-user wants to rent a bicycle from a bike sharing scheme. The bicycles are locked in bicycle racks on sidewalks throughout a city. To unlock and use a bicycle, the user scans a QR code on the bicycle using their mobile phone. Scanning the QR code redirects the user to the bicycle sharing scheme's authorization page where the user authenticates and authorizes payment for renting the bicycle. Once authorized, the bicycle sharing service unlocks the bicycle, allowing the user to use it to cycle around the city. <xref target="example-b3"/> outlines an exploit relevant to this situation.</t>
        </section>
        <section anchor="example-a4">
          <name>Example A4: Authorize a Financial Transaction (Backchannel-Transferred Session Pattern)</name>
          <t>An end-user makes an online purchase. Before completing the purchase, they get a notification on their mobile phone, asking them to authorize the transaction. The user opens their app and authenticates to the service before authorizing the transaction. <xref target="example-b4"/> describes two exploits relevant to this example.</t>
        </section>
        <section anchor="example-a5">
          <name>Example A5: Add a Device to a Network (Cross-Device Session Transfer Pattern)</name>
          <t>An employee is issued with a personal computer that is already joined to a network. The employee wants to add their mobile phone to the network to allow it to access corporate data and services (e.g., files and e-mail). The employee is logged-in on the personal computer where they initiate the process of adding their mobile phone to the network. The personal computer displays a QR code which authorizes the user to join their mobile phone to the network. The employee scans the QR code with their mobile phone and the mobile phone is joined to the network. The employee can start accessing corporate data and services on their mobile device. <xref target="example-b5"/> gives an example of how this flow may be exploited.</t>
        </section>
        <section anchor="example-a6">
          <name>Example A6: Remote Onboarding (User-Transferred Session Data Pattern)</name>
          <t>A new employee is directed to an onboarding portal to provide additional information to confirm their identity on their first day with their new employer. Before activating the employee's account, the onboarding portal requests that the employee present a government issued ID, proof of a background check and proof of their qualifications. The onboarding portal displays a QR code, which the user scans with their mobile phone. Scanning the QR code invokes the employee's digital wallet on their mobile phone, and the employee is asked to present digital versions of an identity document (e.g., a driving license), proof of a background check by an identity verifier, and proof of their qualifications. The employee authorizes the release of the credentials and after completing the onboarding process, their account is activated. <xref target="example-b6"/> provides an example of an exploit for this use case.</t>
        </section>
        <section anchor="example-a7">
          <name>Example A7: Application Bootstrap (Cross-Device Session Transfer Pattern)</name>
          <t>An employee is signed in to an application on their personal computer and wants to bootstrap the mobile application on their mobile phone. The employee initiates the cross-device flow and is shown a QR code in their application. The employee launches the mobile application on their phone and scans the QR code which results in the user being signed in to the application on the mobile phone. <xref target="Example-B7"/> describes an exploit that applies to this scenario.</t>
        </section>
        <section anchor="example-a8">
          <name>Example A8: Access a Productivity Application ()</name>
          <t>A user is accessing a Computer Aided Design (CAD) application. When accessing the application, authorization data in the form of a 6-digit authorization code is sent to the user's mobile phone. The user views the 6-digit authorization code on their phone and enters it in the CAD application, after which the CAD application displays the user's most recent designs. <xref target="example-b8"/> outlines an attack relevant to this scenario.</t>
        </section>
        <section anchor="example-a9">
          <name>Example A9: Administer a System (Backchannel-Transferred Session Pattern)</name>
          <t>A network administrator wants to access an administration portal used to configure network assets and deploy new applications. When attempting to access the service, the network administrator receives a notification in an app on their mobile device, requesting them to confirm access to the portal. The network administrator approves the request on their mobile phone and is granted access to the portal. <xref target="example-b9"/> describes how an attacker might exploit this flow.</t>
        </section>
      </section>
    </section>
    <section anchor="cross-device-flow-exploits">
      <name>Cross-Device Flow Exploits</name>
      <t>Attackers exploit the absence of an authenticated channel between the two devices used in a cross-device flow by using social engineering techniques typically used in phishing attacks.</t>
      <t>In cross-device authorization flows the attacker uses these social engineering techniques by changing the context in which the authorization request is presented to convince the user to grant authorization when they shouldn't. These attacks are also known as CDCP attacks.</t>
      <t>In cross-device session transfer flows the attacker uses these social engineering techniques to convince the user to initiate a session transfer and send them a session transfer code. Once the attacker is in possession of this session transfer code, they present it to the Authorization Server to transfer the session and access the user's resources. These attacks are referred to as CDSP attacks.</t>
      <section anchor="cross-device-authorization-flow-exploits">
        <name>Cross-Device Authorization Flow Exploits</name>
        <t>Attackers exploit cross-device authorization flows by initiating an authorization flow on the Consumption Device and then use social engineering techniques to change the context in which the request is presented to the user in order to convince them to grant authorization on the Authorization Device. The attacker is able to change the context of the authorization request because the channel between the Consumption Device and the Authorization Device is unauthenticated. These attacks are also known as CDCP attacks.</t>
        <section anchor="user-transferred-session-data-pattern-exploits">
          <name>User-Transferred Session Data Pattern Exploits</name>
          <t>A common action in cross-device flows is to present the user with a QR code or a user code on the Consumption Device (e.g., smart TV) which is then scanned or entered on the Authorization Device (the mobile phone). When the user scans the code or copies the user code, they do so without any proof that the QR code or user code is being displayed in the place or context intended by the service provider. It is up to the user to decide whether they should trust the QR code or user code. In effect the user is asked to compensate for the absence of an authenticated channel between the Consumption Device (e.g., smart TV) and the Authorization Device (e.g., the mobile phone).</t>
          <t>Attackers exploit this absence of an authenticated channel between the two devices by obtaining QR codes or user codes (e.g., by initiating the authorization flows). They then use social engineering techniques to change the context in which authorization is requested to convince end-users to scan the QR code or enter it on their Authorization Device (e.g., mobile phone). Once the end-user performs the authorization on the mobile device, the attacker who initiated the authentication or authorization request obtains access to the user's resources. The Figure 5 shows an example of such an attack.</t>
          <artwork type="ascii-art"><![CDATA[
             +--------------+                       +---------------+
             |  Attacker's  |--(B) Request -------->|               |
             |  Consumption |      QR/User Code     |               |
             |    Device    |                       |               |
             |              |<-(C) Return ----------|               |
    +------->|              |      QR/User Code     |               |
    |        |              |                       |               |
    |        |              |--(D) Poll for ------->|               |
    |        |              |      Authorization    |               |
    |        |              |                       |               |
    |        |              |<-(L) Grant -----------| Authorization |
    |        |              |      Authorization    |     Server    |
    |        +--------------+                       |               |
    |              |                                |               |
   (A) Attacker   (E) Attacker Copies               |               |
    |  Starts      |  QR or User Code               |               |
    |  Flow        |                                |               |
+--------------+   |                                |               |
|   Attacker   |<--+                                |               |
+--------------+                                    |               |
       |                                            |               |
       (F) Attacker Changes                         |               |
       |   QR Code/User Code                        |               |
       v   Context                                  |               |
+--------------+                                    |               |
|     User     |                                    |               |
+--------------+                                    |               |
 |   |                                              |               |
 |  (G) User is convinced by the                    |               |
 |   |  attacker and scans QR code                  |               |
 |   |  or enters User Code                         |               |
 |   |       +--------------+                       |               |
 |   +------>| Authorization|                       |               |
 |           |    Device    |--(H) Send QR code --->|               |
 |           |              |      or user code     |               |
 |           |              |                       |               |
 |           |              |<-(I) Request user ----|               |
 |           |              |     Authentication and|               |
 |           |              |     Authorization     |               |
 +-(J) User->|              |                       |               |
Authenticates|              |                       |               |
and grants   |              |                       |               |
Authorization|              |                       |               |
             |              |--(K) Authentication ->|               |
             |              |      and Authorization|               |
             |              |      Completes        |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure 5: User-Transferred Session Data Pattern Exploit</t>
          <ul spacing="normal">
            <li>
              <t>(A) The attacker initiates the protocol on the Consumption Device (or mimicks the Consumption Device) by starting a purchase, adding a device to a network or connecting a service to the Consumption Device.</t>
            </li>
            <li>
              <t>(B) The Consumption Device requests a QR code or user code from an Authorization Server.</t>
            </li>
            <li>
              <t>(C) The Authorization Server returns a QR code or user code to the Consumption Device, which displays it to the user with instructions to scan the QR code or enter the user code using the Authorization Device.</t>
            </li>
            <li>
              <t>(D) The Consumption Device starts polling the Authorization Server to find out if the user granted authorization.</t>
            </li>
            <li>
              <t>(E) The attacker copies the QR code or user code.</t>
            </li>
            <li>
              <t>(F) The attacker changes the context in which the QR code or user code is displayed in such a way that the user is likely to scan the QR code or use the user code when completing the authorization. For example, the attacker could craft an e-mail that includes the user code or QR code and send it to the user. The e-mail might encourage the user to scan the QR code or enter the user code by suggesting that doing so would grant them a reward through a loyalty program or prevent the loss of their data.</t>
            </li>
            <li>
              <t>(G) The QR code or user code is displayed to the user in a context chosen by the attacker. The user is convinced by the attacker's effort and scans the QR code or enters the user code on the Authorization Device.</t>
            </li>
            <li>
              <t>(H) The QR code or user code is sent to the Authorization Server</t>
            </li>
            <li>
              <t>(I) The Authorization Server validates the QR code or user code and prompts the user to authenticate and accept or decline the authorization request.</t>
            </li>
            <li>
              <t>(J) The user authenticates and grants authorization using the Authorization Device.</t>
            </li>
            <li>
              <t>(K) The user is authenticated with the Authorization Server and authorization is granted to access the user's resources (there may be several additional messages, depending on the authentication protocol, user interface and other implementation details).</t>
            </li>
            <li>
              <t>(L) The Authorization Server issues tokens or grants authorization to the Consumption Device, which is under the attacker's control, to access the user's resources. The attacker gains access to the resources and any authorization artifacts like access and refresh tokens.</t>
            </li>
          </ul>
        </section>
        <section anchor="backchannel-transferred-session-pattern-exploits">
          <name>Backchannel-Transferred Session Pattern Exploits</name>
          <t>In the backchannel-transferred session pattern, the client requests the authorization server to authenticate the user and obtain authorization for an action. This may happen as a result of user interaction with the Consumption Device, but may also be triggered without the users direct interaction with the Consumption Device, resulting in an authorization request presented to the user without context of why or who triggered the request.</t>
          <t>Attackers exploit this lack of context by using social engineering techniques to prime the user for an authorization request and thereby convince them to grant authorization. The social engineering techniques range in sophistication from messages misrepresenting the reason for receiving an authorization request, to triggering a large volume of requests at an inconvenient time for the user, in the hope that the user will grant authorization to make the requests stop. Figure 6 shows an example of such an attack.</t>
          <t>The ability to trigger authorization requests without user involvement can be exploited an attacker to overwhelm users with a high volume of requests in a short period, increasing the likelihood of inadvertent approval.</t>
          <artwork type="ascii-art"><![CDATA[
             +--------------+                       +---------------+
     +------>|  Attacker's  |--(C) Backchannel ---->|               |
     |       |  Consumption |      Authorization    |               |
     |       |  Device      |      Request          |               |
     |       |              |                       | Authorization |
     |       |              |<-(G) Grant------------|     Server    |
     |       +--------------+      Authorization    |               |
    (B) Attacker                                    |               |
     |  Start                                       |               |
     |  Flow                                        |               |
     |                                              |               |
+----------+                                        |               |
| Attacker |                                        |               |
+----------+                                        |               |
     |                                              |               |
    (A) Attacker Sends                              |               |
     |  Social Engineering                          |               |
     v  Message to User (optional)                  |               |
+----------+                                        |               |
|   User   |                                        |               |
+----------+                                        |               |
     |                                              |               |
    (E) User Authenticate                           |               |
     |  and Authorize Action                        |               |
     |                                              |               |
     |       +--------------+                       |               |
     |       | Authorization|                       |               |
     |       |    Device    |<-(D) Request User ----|               |
     +------>|              |      Authentication   |               |
             |              |      and Authorization|               |
             |              |                       |               |
             |              |--(F) Authentication ->|               |
             |              |      and Authorization|               |
             |              |      Completes        |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure 6: Backchannel-Transferred Session Pattern Exploit</t>
          <ul spacing="normal">
            <li>
              <t>(A) The attacker sends a social engineering message to prepare the user for the upcoming authorization (optional).</t>
            </li>
            <li>
              <t>(B) The attacker initiates the protocol on the Consumption Device (or mimics the Consumption Device) by starting a purchase, adding a device to a network or accessing a service on the Consumption Device.</t>
            </li>
            <li>
              <t>(C) The client on the Consumption Device requests user authorization on the backchannel from the Authorization Server and waits for a response from the Authorization Server.</t>
            </li>
            <li>
              <t>(D) The Authorization Server requests user authentication and authorization on the user's Authorization Device.</t>
            </li>
            <li>
              <t>(E) If the user is unauthenticated, they use their Authorization Device to authenticate and grant authorization to the Authorization Server.</t>
            </li>
            <li>
              <t>(F) The user is authenticated and authorization is granted to access the user's resources (there may be several additional messages, depending on the authentication protocol, user interface and other implementation details).</t>
            </li>
            <li>
              <t>(G) The Authorization Server issues tokens or grants authorization to the Consumption Device, which is under the attacker's control. The attacker gains access to the user's resources and possibly any authorization artifacts like access and refresh tokens.</t>
            </li>
          </ul>
        </section>
        <section anchor="user-transferred-authorization-data-pattern-exploits">
          <name>User-Transferred Authorization Data Pattern Exploits</name>
          <t>In cross-device flows that follow the user-transferred authorization data pattern, the client on the Consumption Device initiates the authorization request, but the user still has to transfer the authorization data to the Consumption Device. The authorization data may take different forms, including a numerical value such as a 6-digit authorization code. The authorization request may happen as a result of user interaction with the Consumption Device, but may also be triggered without the user's direct interaction with the Consumption Device.</t>
          <t>Attackers exploit the user-transferred authorization data pattern by combining the social engineering techniques used to set context for users and convincing users to provide them with authorization data sent to their Authorization Devices (e.g., mobile phones). These attacks are very similar to phishing attacks, except that the attacker also has the ability to trigger the authorization request to be sent to the user directly by the Authorization Server.</t>
          <artwork type="ascii-art"><![CDATA[
             +--------------+                       +---------------+
    +------->|  Consumption |--(C) Backchannel ---->| Authorization |
    |        |    Device    |      Authorization    |    Server     |
    |        |              |      Request          |               |
    |        |              |                       |               |
    |        |              |--(H) Send------------>|               |
    |        |              |      Authorization    |               |
    |        |              |      Data             |               |
    |        |              |                       |               |
    |        |              |<-(I) Grant------------|               |
    |        +--------------+      Authorization    |               |
    |                    ^                          |               |
    |                    |                          |               |
   (B) Attacker         (G) Attacker Enters         |               |
    |  Start             |  Authorization           |               |
    |  Flow              |  Data                    |               |
    |                    |                          |               |
+------------------------------------------+        |               |
|                 Attacker                 |        |               |
+------------------------------------------+        |               |
  |                   ^                             |               |
 (A) Attacker        (F) User                       |               |
  |  Sends            |  Sends                      |               |
  |  Social           |  Authorization              |               |
  |  Engineering      |  Data                       |               |
  v  Message          |                             |               |
+------------------------------------------+        |               |
|                   User                   |        |               |
+------------------------------------------+        |               |
                  ^                                 |               |
                  |                                 |               |
                 (E) User Copies                    |               |
                  |  Authorization Data             |               |
                  |                                 |               |
             +--------------+                       |               |
             | Authorization|                       |               |
             |    Device    |<-(D) Send ------------|               |
             |              |      Authorization    |               |
             |              |      Data             |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure 7: User-Transferred Authorization Data Pattern Exploit</t>
          <ul spacing="normal">
            <li>
              <t>(A) The attacker sends a social engineering message to prime the user for the authorization request they are about to receive, including instructions on what to do with the authorization data once they receive it.</t>
            </li>
            <li>
              <t>(B) The attacker initiates the protocol on the Consumption Device (or by mimicking the Consumption Device) by starting a purchase, adding a device to a network or accessing a service on the Consumption Device.</t>
            </li>
            <li>
              <t>(C) The client on the Consumption Device requests user authorization on the backchannel from the Authorization Server.</t>
            </li>
            <li>
              <t>(D) The Authorization Server sends authorization data (e.g., a 6-digit authorization code) to the Authorization Device. Examples of mechanisms that may be used to distribute the authorization data include text messages, email or a mobile application. The authorization data may be presented as text or a QR code.</t>
            </li>
            <li>
              <t>(E) The user is convinced by the social engineering message received from the attacker in step (A) and copies the authorization data received on the Authorization Device.</t>
            </li>
            <li>
              <t>(F) The user forwards the authorization data to the attacker.</t>
            </li>
            <li>
              <t>(G) The attacker enters the authorization data (e.g., a 6-digit authorization code) on the Consumption Device.</t>
            </li>
            <li>
              <t>(H) The attacker's Consumption Device sends the authorization data to the Authorization Server.</t>
            </li>
            <li>
              <t>(I) The Authorization Server grants authorization and issues access and refresh tokens to the Consumption Device, which is under the attacker's control. On completion of the exploit, the attacker gains access to the user's resources.</t>
            </li>
          </ul>
          <t>The unauthenticated channel may also be exploited in variations of the above scenario if there is no session maintained in the channel for steps C and G. In that case a user (as opposed to the attacker) initiates the flow and is then convinced using social engineering techniques into sending the authorization data (e.g., a 6-digit authorization code) to the attacker, instead of using it themselves. The authorization data may be represented as a QR code or text string (e.g., 6-digit authorization code). The attacker then starts the flow and uses the authorization data to obtain the privileges that would have been assigned to the user.</t>
        </section>
      </section>
      <section anchor="cross-device-session-transfer-exploits">
        <name>Cross-Device Session Transfer Exploits</name>
        <t>Attackers exploit cross-device session transfer flows by using social engineering techniques typically used in phishing attacks to convince the user to authorize the transfer of a session and then send the session transfer code or QR code to the attacker. The absence of an authenticated channel between these two devices enables the attacker to use the session transfer code on their own device to obtain access to the session and access the users data. These attacks are referred to as CDSP attacks.</t>
        <artwork type="ascii-art"><![CDATA[
            +---------------+                       +---------------+
    +------>| Authorization |                       | Authorization |
    |       |    Device     |--(C) Session -------->|     Server    |
    |       |               |      Transfer Request |               |
    |       |               |                       |               |
    |       |               |<-(D) Session ---------|               |
    |       |               |      Transfer Code    |               |
    |       |               |                       |               |
    |       +---------------+                       |               |
   (B) User      |                                  |               |
    |  Start    (E) User Views                      |               |
    |  Flow      |  Session Transfer Code           |               |
    |            v  or QR Code                      |               |
+--------------------------------+                  |               |
|             User               |                  |               |
+--------------------------------+                  |               |
  ^                |                                |               |
  |                |                                |               |
 (A) Attacker     (F) User sends Session            |               |
  |  Sends         |  Transfer or QR Code           |               |
  |  Social        |  to Attacker                   |               |
  |  Engineering   |                                |               |
  |  Message       v                                |               |
+-------------------------------+                   |               |
|            Attacker           |                   |               |
+-------------------------------+                   |               |
                     |                              |               |
                    (G) Attacker Enter              |               |
                     |  Session Transfer Code       |               |
                     |  or Scan QR Code             |               |
                     v                              |               |
            +---------------+                       |               |
            |  Consumption  |                       |               |
            |     Device    |--(H) Present -------->|               |
            |               |      Session Transfer |               |
            |               |      Code             |               |
            |               |                       |               |
            |               |<-(I) Return Session --|               |
            |               |      Context          |               |
            +---------------+                       +---------------+
]]></artwork>
        <t>Figure 8: Cross-Device Session Transfer Pattern Exploit</t>
        <ul spacing="normal">
          <li>
            <t>(A) The attacker sends a social engineering message that convinces the user that they should authorize a session transfer including instructions on what to do with the QR code or session transfer code once they obtained it.</t>
          </li>
          <li>
            <t>(B) The user starts the flow and is authenticated on their Authorization Device before they authorize the transfer of the session to the Consumption Device.</t>
          </li>
          <li>
            <t>(C) The client on the Authorization Device requests a session transfer code from the Authorization Server.</t>
          </li>
          <li>
            <t>(D) The Authorization Server responds with a session transfer code, which may be rendered as a QR code on the Authorization Device.</t>
          </li>
          <li>
            <t>(E) The user views the session transfer code, which may be rendered as a QR code.</t>
          </li>
          <li>
            <t>(F) The user sends the QR code or session transfer code to the attacker, following the instructions they received in step (A).</t>
          </li>
          <li>
            <t>(G) Once the attacker receives the QR code, they scan it or enter it on their own Consumption Device.</t>
          </li>
          <li>
            <t>(H) The client on the Consumption Device presents the session transfer code to the Authorization Server.</t>
          </li>
          <li>
            <t>(I) The Authorization Server verifies the session transfer code and returns the session context information needed to resume the session on the Consumption Device. The attacker resumes the session on their own Consumption Device and is able to access the information that the user authorized on their Authorization Device in step (B).</t>
          </li>
        </ul>
      </section>
      <section anchor="example-exploits">
        <name>Examples of Cross-Device Flow Exploits</name>
        <t>The following examples illustrate these attacks in practical settings applied to the use cases described in <xref target="example-flows"/>. These examples show how the unauthenticated channel is exploited by attackers who can copy the QR codes and user codes, change the context in which they are presented using social engineering techniques and mislead end-users to grant consent to avail of services, access data and make payments.</t>
        <section anchor="example-b1">
          <name>Example B1: Illicit Access to a Video Streaming Service (User-Transferred Session Data Pattern)</name>
          <t>This exploit applies to the use case described in <xref target="example-a1"/>.</t>
          <t>An attacker obtains a smart TV and attempts to access an online streaming service. The smart TV obtains a QR code from the streaming service authorization server and displays it on screen. The attacker copies the QR code and embeds it in an e-mail that is sent to a large number of recipients. The e-mail contains a message stating that the streaming service wants to thank them for their loyal support and by scanning the QR code, they will be able to add a bonus device to their account for no charge. One of the recipients open the e-mail and scan the QR code to claim the loyalty reward. The user performs multi-factor authentication, and when asked if they want a new device to be added to their account, they authorize the action. The attacker's device is now authorized to access the content and obtains an access and refresh token. The access token allows the attacker to access content and the refresh token allows the attacker to obtain fresh tokens whenever the access token expires.</t>
          <t>The attacker scales up the attack by emulating a new smart TV, obtaining multiple QR codes and widening the audience it sends the QR code to. Whenever a recipient scans the QR code and authorizes the addition of a new device, the attacker obtains an access and refresh token, which they sell for a profit.</t>
        </section>
        <section anchor="example-b2">
          <name>Example B2: Illicit Access to Productivity Services (User-Transferred Session Data Pattern)</name>
          <t>This exploit applies to the use case described in <xref target="example-a2"/>.</t>
          <t>An attacker emulates an enterprise application (e.g., an interactive whiteboard) and initiates a cross-device flow by requesting a user code and URL from the authorization server. The attacker obtains a list of potential victims and sends an e-mail informing users that their files will be deleted within 24 hours if they don't follow the link, enter the user code and authenticate. The e-mail reminds them that this is the third time that they have been notified and their last opportunity to prevent deletion of their work files. One or more employees respond by following the URL, entering the code and performing multi-factor authentication. Throughout the authentication experience, the user is interacting with a trusted user experience, re-enforcing the legitimacy of the request. Once these employees authorized access, the attacker obtains access and refresh tokens from the authorization server and uses it to access the users' files, perform lateral attacks to obtain access to other information and continuously refresh the session by requesting new access tokens. These tokens may be exfiltrated and sold to third parties.</t>
        </section>
        <section anchor="example-b3">
          <name>Example B3: Illicit Access to Physical Assets (User-Transferred Session Data Pattern)</name>
          <t>This exploit applies to the use case described in <xref target="example-a3"/>.</t>
          <t>An attacker copies a QR code from a bicycle locked in a bicycle rack in a city, prints it on a label and places the label on a bicycle at the other end of the bicycle rack. A customer approaches the bicycle that contains the replicated QR code and scans the code and authenticates before authorizing payment for renting the bicycle. The bicycle rack unlocks the bicycle containing the original QR code and the attacker removes the bicycle before cycling down the street while the customer is left frustrated that the bicycle they were trying to use is not being unlocked <xref target="NYC.Bike"/>. The customer proceeds to unlock another bicycle and lodges a complaint with the bicycle renting company.</t>
        </section>
        <section anchor="example-b4">
          <name>Example B4: Illicit Transaction Authorization (Backchannel-Transferred Session Pattern)</name>
          <t>These exploits apply to the use case described in <xref target="example-a4"/>.</t>
          <section anchor="example-b4-1">
            <name>Example B4.1: Bulk Authorization Request (Backchannel-Transferred Session Pattern)</name>
            <t>An attacker obtains a list of user identifiers for a financial institution and triggers a transaction request for each of the users on the list. The financial institution's authorization server sends push notifications to each of the users, requesting authorization of a transaction. The vast majority of users ignore the request to authorize the transaction, but a small percentage grants authorization by approving the transaction.</t>
          </section>
          <section anchor="example-b4-2">
            <name>Example B4.2: Fake Helpdesk (Backchannel-Transferred Session Pattern)</name>
            <t>An attacker obtains the contact information for a user and contacts them, pretending to be a representative of the user's financial institution. The attacker informs the user that there were a number of fraudulent transactions against their account and asks them to review these transactions by approving or rejecting them. The attacker then triggers a sequence of transactions. The user receives an authorization request for each transaction and declines them as they do not recognize them. The attacker then informs the user that they need to close the users account and transfer all the funds to a new account to prevent further fraudulent transactions. The user receives another authorization request which they approve, or provide additional authorization information to the attacker which enables the attacker to complete their attack and defraud the user.</t>
          </section>
        </section>
        <section anchor="example-b5">
          <name>Example B5: Illicit Network Join (Cross-Device Session Transfer Pattern)</name>
          <t>This exploit applies to the use case described in <xref target="example-a5"/>.</t>
          <t>An attacker creates a message to all employees of a company, claiming to be from a trusted technology provider investigating a suspected security breach. They ask employees to send them the QR code typically used to join a new device to the network, along with detailed steps on how to obtain the QR code. The employee, eager to assist, initiates the process to add a new mobile device to the network. They authenticate to the network and obtain a QR code. They send the QR code to the attacker. The attacker scans the QR code and adds their own device to the network. They use this device access as an entry point and perform lateral moves to obtain additional privileges and access to restricted resources.</t>
        </section>
        <section anchor="example-b6">
          <name>Example B6: Illicit Onboarding (User-Transferred Session Data Pattern)</name>
          <t>This exploit applies to the use case described in <xref target="example-a6"/>.</t>
          <t>An attacker initiates an employee onboarding flow and obtains a QR code from the onboarding portal to invoke a digital wallet and present a verifiable credential attesting to a new employee's identity. The attacker obtains a list of potential new employees and sends an e-mail informing them that it is time to present proof of their background check or government issued ID. The new employee scans the QR code, invokes their digital wallet and presents their credentials. Once the credentials are presented, the employee's account is activated. The employee portal accessed by the attacker to obtain the QR code displays a message to the attacker with instructions on how to access their account.</t>
        </section>
        <section anchor="Example-B7">
          <name>Example B7: Illicit Application Bootstrap (Cross-Device Session Transfer Pattern)</name>
          <t>This exploit applies to the use case described in <xref target="example-a7"/>.</t>
          <t>An attacker creates a message to all employees of a company, claiming to be from the company's IT service provider. They claim that they are trying to resolve an application performance issue and ask employees to send them the QR code typically used to transfer a session. The employee, eager to assist, initiates the process to transfer a session. They authenticate and obtain a QR code and then send the QR code to the attacker. The attacker scans the QR code with their mobile phone and access the users data and resources.</t>
        </section>
        <section anchor="example-b8">
          <name>Example B8: Account Takeover (User-Transferred Session Data Pattern)</name>
          <t>This exploit applies to the use case described in <xref target="example-a8"/>.</t>
          <t>An attacker wants to use some website which requires presentation of a verifiable credential for authentication. The attacker creates a phishing website which will in real time capture log-in QR Codes from the original website and present these to the user. The attacker tries to get the user to use the phishing website by sending messages by e-mail or other messaging technologies. The user scans the QR code on the phishing website, invokes their digital wallet and presents their credentials. Once the credentials are presented, the original session from the attackers device is authorized with the user's credentials.</t>
        </section>
        <section anchor="example-b9">
          <name>Example B9: Illicit Access to Administration Capabilities Through Consent Request Overload (Backchannel-Transferred Session Pattern)</name>
          <t>This exploit applies to the use case described in <xref target="example-a9"/>.</t>
          <t>An attacker attempts to access an administration portal repeatedly, generating a stream of authorization requests to the network administrator. The attempts are timed to occur while the administrator is asleep. The administrator is woken by the incoming requests on their phone, and, in an attempt to stop the notifications, they accidentally approve access and the attacker gains access to the portal.</t>
        </section>
        <section anchor="out-of-scope">
          <name>Out of Scope</name>
          <t>In all of the attack scenarios listed above, a user is misled or exploited. For other attacks, where the user is willingly colluding with the attacker, the threat model, security implications and potential mitigations are very different. For example, a cooperating user can bypass software mitigations on their device, share access to hardware tokens with the attacker, and install additional devices to forward radio signals to circumvent proximity checks.</t>
          <t>This document only considers scenarios where a user does not collude with an attacker.</t>
        </section>
      </section>
    </section>
    <section anchor="cross-device-protocols-and-standards">
      <name>Cross-Device Protocols and Standards</name>
      <t>Cross-device flows that are subject to the attacks described earlier typically share the following characteristics:</t>
      <ol spacing="normal" type="1"><li>
          <t>The attacker can initiate the flow and manipulate the context of an authorization request.
 E.g., the attacker can obtain a QR code or user code, or can request an authentication/authorization decision from the user.</t>
        </li>
        <li>
          <t>The interaction between the Consumption Device and Authorization Device is unauthenticated.
 I.e., it is left to the user to decide if the QR code, user code, or authentication request is being presented in a legitimate context.</t>
        </li>
      </ol>
      <t>A number of protocols that have been standardized, or are in the process of being standardized that share these characteristics include:</t>
      <ul spacing="normal">
        <li>
          <t><strong>IETF OAuth 2.0 Device Authorization Grant (<xref target="RFC8628"/>):</strong> A standard to enable authorization on devices with constrained input capabilities (smart TVs, printers, kiosks). In this protocol, the user code or QR code is displayed on the Consumption Device and entered on a second device (e.g., a mobile phone).</t>
        </li>
        <li>
          <t><strong>Open ID Foundation Client Initiated Back-Channel Authentication (CIBA) <xref target="CIBA"/>:</strong> A standard developed in the OpenID Foundation that allows a device or service (e.g., a personal computer, smart TV, Kiosk) to request the OpenID Provider to initiate an authentication flow if it knows a valid identifier for the user. The user completes the authentication flow using a second device (e.g., a mobile phone). In this flow the user does not scan a QR code or obtain a user code from the Consumption Device, but is instead contacted by the OpenID Provider to complete the authentication using a push notification, e-mail, text message or any other suitable mechanism.</t>
        </li>
        <li>
          <t><strong>OpenID for Verifiable Credential Protocol Suite (Issuance, Presentation):</strong> The OpenID for Verifiable Credentials enables cross-device scenarios by allowing users to scan QR codes to retrieve credentials (Issuance - see <xref target="OpenID.VCI"/>) or present credentials (Presentation - see <xref target="OpenID.VP"/>). The QR code is presented on a device that initiates the flow.</t>
        </li>
        <li>
          <t><strong>Self-Issued OpenID Provider v2 (SIOP V2):</strong> A standard that allows end-user to present self-attested or third party attested attributes when used with OpenID for Verifiable Credential protocols. The user scans a QR code presented by the relying party to initiate the flow.</t>
        </li>
      </ul>
      <t>Cross-device protocols SHOULD NOT be used for same-device scenarios. If the Consumption Device and Authorization Device are the same device, protocols like OpenID Connect Core <xref target="OpenID.Core"/> and OAuth 2.0 Authorization Code Grant as defined in <xref target="RFC6749"/> are more appropriate. If a protocol supports both same-device and cross-device modes (e.g., <xref target="OpenID.SIOPV2"/>), the cross-device mode SHOULD NOT be used for same-device scenarios. An authorization server MAY choose to block cross-device protocols used in same-device scenarios if it detects that the same device is used. Implementors should take into account that in environments that use Network Address Translation (NAT), multiple devices may appear to originate from the same network address, increasing the risk of incorrectly inferring that a cross-device flow is occurring on a single device.</t>
      <t>An authorization server MAY use techniques such as device fingerprinting, network address or other techniques to detect if a cross-device protocol is being used on the same device. If an implementor decides to use a cross-device protocol or a protocol with a cross-device mode in a same-device scenario, the mitigations recommended in this document SHOULD be implemented to reduce the risks that the unauthenticated channel is exploited.</t>
    </section>
    <section anchor="mitigating-against-cross-device-flow-attacks">
      <name>Mitigating Against Cross-Device Flow Attacks</name>
      <t>The unauthenticated channel between the Consumption Device and the Authorization Device allows attackers to change the context in which the authorization request is presented to the user. This shifts responsibility of authenticating the channel between the two devices to the end-user. End-users have "expertise elsewhere", are typically not security experts, and don't understand the protocols and systems they interact with. As a result, end-users are poorly equipped to authenticate the channel between the two devices. Mitigations should focus on:</t>
      <ol spacing="normal" type="1"><li>
          <t>Minimizing reliance on the user to make decisions to authenticate the channel.</t>
        </li>
        <li>
          <t>Providing better information with which to make decisions to authenticate the channel.</t>
        </li>
        <li>
          <t>Recovering from incorrect channel authentication decisions by users.</t>
        </li>
      </ol>
      <t>To achieve the above outcomes, mitigating against CDCP attacks require a three-pronged approach:</t>
      <ol spacing="normal" type="1"><li>
          <t>Reduce risks of deployed protocols with practical mitigations.</t>
        </li>
        <li>
          <t>Adopt or develop protocols that are less susceptible to these attacks where possible.</t>
        </li>
        <li>
          <t>Provide analytical tools to assess vulnerabilities and effectiveness of mitigations.</t>
        </li>
      </ol>
      <section anchor="practical-mitigations">
        <name>Practical Mitigations</name>
        <t>A number of protocols that enable cross-device flows that are susceptible to CDCP attacks are already deployed. The security profile of these protocols can be improved through practical mitigations that provide defense in depth that either:</t>
        <ol spacing="normal" type="1"><li>
            <t>Prevents the attack from being initiated.</t>
          </li>
          <li>
            <t>Disrupts the attack once it is initiated.</t>
          </li>
          <li>
            <t>Remediates or reduces the impact if the attack succeeds.</t>
          </li>
        </ol>
        <t>It is RECOMMENDED that one or more of the mitigations be applied when implementing a cross-device flow. Each mitigation, despite limitations in its effectiveness, provides an additional layer of security that may increase the difficulty of initiating an attack, disrupt attacks in progress, or reduce the impact of a successful attack.</t>
        <section anchor="establish-proximity">
          <name>Establish Proximity</name>
          <t>The unauthenticated channel between the Consumption Device and Authorization Device allows attackers to obtain a QR code or user code in one location and display it in another location. Consequently, proximity-enforced cross-device flows are more resistant to Cross-Device Consent Phishing attacks than proximity-less cross-device flows. Establishing proximity between the location of the Consumption Device and the Authorization Device limits an attacker's ability to launch attacks by sending the user or QR codes to large numbers of users that are geographically distributed. Note that the authorization server typically cannot directly determine whether the Consumption Device and Authorization Device are physically close to each other. Instead, it must rely on the surrounding systems, protocols in use, device capabilities, or information it obtains from other systems to establish or verify proximity. The authorization server can validate information it receives, but it cannot independently measure or enforce proximity on its own. There are a number of ways to establish proximity, each with its own implementation benefits and limitations:</t>
          <ul spacing="normal">
            <li>
              <t>Physical connectivity: This is a good indicator of proximity, but requires specific ports, cables and hardware and may be challenging from a user experience perspective or may not be possible in certain settings (e.g., when USB ports are blocked or removed for security purposes). Physical connectivity may be better suited to dedicated hardware like FIDO devices that can be used with protocols that are resistant to the exploits described in this document. The use of physically connected devices may introduce additional security risks (e.g., data access or device compromise through malicious peripherals), the assessment and mitigation of which are beyond the scope of this document.</t>
            </li>
            <li>
              <t>Wireless proximity: Near Field Communications (NFC), Bluetooth Low Energy (BLE), and Ultra Wideband (UWB) services can be used to prove proximity between the two devices. NFC technology is widely deployed in mobile phones as part of payment solutions, but NFC readers are less widely deployed. BLE presents another alternative for establishing proximity, but may present user experience challenges when setting up. UWB standards such as IEEE  802.15.4 and the IEEE 802.15.4z-2020 Amendment 1 enable secure ranging between devices and allow devices to establish proximity relative to each other <xref target="IEEE802154"/>. FIDO and WebAuthn-based cross-device flows leverage wireless proximity using BLE and are the RECOMMENDED approach for performing secure cross-device flows (see <xref target="fido"/>).</t>
            </li>
            <li>
              <t>Shared network: Device proximity can be inferred by verifying that both devices are on the same network. This check may be performed by the authorization server by comparing the network addresses of the device where the code is displayed (Consumption Device) with that of the Authorization Device. Alternatively the check can be performed on the device, provided that the network address is available. This could be achieved if the authorization server encodes the Consumption Device's network address in the QR code and uses a digital signature to prevent tampering with the code. This does require the wallet to be aware of the countermeasure and effectively enforce it. Note that it is common for a Consumption Device (e.g., a TV) to use a Wi-Fi connection while the Authorization Device (e.g., a phone) uses a mobile network. Though physically in proximity, they don't share a network, so other proximity checks are needed.</t>
            </li>
            <li>
              <t>Geolocation: Proximity can be established by comparing geolocation information derived from global navigation satellite-system (GNSS) co-ordinates or geolocation lookup of IP addresses and comparing proximity. Geolocation based on GNSS may vary in accuracy depending on the user's location, and when mapped to national or regional boundaries may show a Consumption and Authorization Device in different locations if those devices are close to a border. Since relative position is more important than absolute location, implementations should consider relative location to both devices rather than absolute location when determining proximity. Geolocation based on IP addresses may be inaccurate along regional or national borders due to overlapping coverage by different network providers from the respective regions. This may result in the Consumption Device being mapped to one region, while the Authorization Device may be on another network from another provider and mapped to another region. These inaccuracies may require restrictions to be at a more granular level (e.g., same city, country, region or continent). Similar to the shared network checks, these checks may be performed by the authorization server or on the users device, provided that the information encoded in a QR code is integrity protected using a digital signature.</t>
            </li>
          </ul>
          <t>Depending on the risk profile and the threat model in which a system is operating, it MAY be necessary to use more than one mechanism to establish proximity to raise the bar for any potential attackers. Proximity mechanisms that rely on establishing user's location or identifying a user's device SHOULD be evaluated for their privacy impliciations within the context of a specific application or deployment.</t>
          <t>Note: There are scenarios that require that authorization takes place in a different location than the one in which the transaction is initiated. For example, there may be a primary and secondary credit card holder and both can initiate transactions, but only the primary holder can authorize it. There is no guarantee that the primary and secondary holders are in the same location at the time of the authorization. In such cases, proximity can still serve as a risk signal. For example, while the primary and secondary holders may normally be located in the same city, a sudden presence in different continents may prompt the system to apply additional controls (e.g., transaction value limits or transaction velocity limits) or incorporate proximity information into a broader risk management decision.</t>
          <t><strong>Limitations:</strong> Proximity mechanisms make it harder to perform CDCP attacks. However, depending on how the proximity check is performed, an attacker may be able to circumvent the protection: The attacker can use a VPN to simulate a shared network or spoof a GNSS position. For example, the attacker can try to request the location of the end-user's Authorization Device through browser APIs and then simulate the same location on their Consumption Device using standard debugging features available on many platforms. Relying on IP address mapping can degrade user experience when a VPN is used on the Consumption or Authorization Device. In such cases, the devices may appear to be in different locations, requiring additional user guidance or alternative mechanisms to establish proximity.</t>
        </section>
        <section anchor="Short-Lived-Timebound-Codes">
          <name>Short-Lived/Timebound QR or User Codes</name>
          <t>The impact of an attack can be reduced by making QR or user codes short-lived. If an attacker obtains a short-lived code, the duration during which the unauthenticated channel can be exploited is reduced, potentially increasing the cost of a successful attack. This mitigation can be implemented on the authorization server without changes to other system components.</t>
          <t><strong>Limitations:</strong> There is a practical limit to how short a user code can be valid due to network latency and user experience limitations (time taken to enter a code, time to complete authentication, or time needed to re-enter codes or re-authenticate due to an error). More sophisticated Cross-Device Consent Phishing attacks counter the effectiveness of short-lived codes by convincing a user to respond to a phishing e-mail and only request the QR or user code once the user clicks on the link in the phishing e-mail <xref target="SQPHISH"/>.</t>
        </section>
        <section anchor="one-time-or-limited-use-codes">
          <name>One-Time or Limited Use Codes</name>
          <t>By enforcing one-time use or limited use of user or QR codes, the authorization server can limit the impact of attacks where the same user code or QR code is sent to multiple victims. One-time use may be achieved by including a nonce or date-stamp in the user code or QR code which is validated by the authorization server when the user scans the QR code against a list of previously issued codes. This mitigation can be implemented on the authorization server without changes to other system components.</t>
          <t><strong>Limitations:</strong> Enforcing one-time use may be difficult in large globally distributed systems with low latency requirements, in which case short-lived tokens may be more practical. One-time use codes may also have an impact on the user experience. For example, a user may enter a code, but their session may be interrupted before the access request is completed. If the code is a one-time use code, they would need to restart the session and obtain a new code since they won't be allowed to enter the same code a second time. To avoid this, implementers MAY allow the same code to be presented a few times.</t>
        </section>
        <section anchor="unique_codes">
          <name>Unique Codes</name>
          <t>By issuing unique user or QR codes, an authorization server can detect if the same codes are being repeatedly submitted. This may be interpreted as anomalous behavior and the authorization server MAY choose to decline issuing access and refresh tokens if it detects the same codes being presented repeatedly. This may be achieved by maintaining a deny list that contains QR codes or user codes that were previously used. The authorization server MAY use a sliding window equal to the lifetime of a token if short-lived/timebound tokens are used (see <xref target="Short-Lived-Timebound-Codes"/>). This will limit the size of the deny list. This mitigation can be implemented on the authorization server without changes to other system components.</t>
          <t><strong>Limitations:</strong> Maintaining a deny list of previously redeemed codes, even for a sliding window, may have an impact on the latency of globally distributed systems. One alternative is to segment user codes by geography or region and maintain local deny lists.</t>
        </section>
        <section anchor="content-filtering">
          <name>Content Filtering</name>
          <t>Attackers exploit the unauthenticated channel by changing the context of the user code or QR code and then sending a message to a user (e-mail, text messaging, instant messaging or other communication mechanisms). By deploying content filtering (e.g., anti-spam filter), these messages can be blocked and prevented from reaching the end-users. It may be possible to fine-tune content filtering solutions to detect artifacts like QR codes or user codes that are included in a message that is sent to multiple recipients in the expectation that at least one of the recipients will be convinced by the message and grant authorization to access restricted resources.</t>
          <t><strong>Limitations:</strong> Some scenarios may require legitimate re-transmission of user, QR and authorization data (e.g., retries). To prevent the disruption of legitimate scenarios, content filters may use a threshold and allow a limited number of messages with the same QR or user codes to be transmitted before interrupting the delivery of those messages. Content filtering may also be fragmented across multiple communications systems and communication channels (e-mail, text messaging, instant messaging or other communication mechanisms), making it harder to detect or interrupt attacks that are executed over multiple channels, unless here is a high degree of integration between content filtering systems.</t>
        </section>
        <section anchor="detect-and-remediate">
          <name>Detect and Remediate</name>
          <t>The authorization server may be able to detect misuse of the codes due to repeated use as described in <xref target="unique_codes"/>, as an input from a content filtering engine as described in <xref target="content-filtering"/>, or through other mechanisms such as reports from end-users. If an authorization server determines that a user code or QR code is being used in an attack it MAY choose to invalidate all tokens issued in response to these codes and make that information available through a token introspection endpoint (see <xref target="RFC7662"/>). In addition, it may notify resource servers to stop accepting these tokens or to terminate existing sessions associated with these tokens using Continuous Access Evaluation Protocol (CAEP) messages <xref target="CAEP"/> using the Shared Signals Framework (SSF) <xref target="SSF"/> framework or an equivalent notification system.</t>
          <t><strong>Limitations:</strong> Detection and remediation requires that resource servers are integrated with security eventing systems or token introspection services. This may not always be practical for existing systems and may need to be targeted to the most critical resource services in an environment.</t>
        </section>
        <section anchor="trusted_devices">
          <name>Trusted Devices</name>
          <t>If an attacker is unable to initiate the protocol, they are unable to obtain a QR code or user code that can be leveraged for the attacks described in this document. By restricting the protocol to only be executed on devices trusted by the authorization server, it prevents attackers from using arbitrary devices, or by mimicking devices to initiate the protocol.</t>
          <t>Authorization Servers MAY use different mechanisms to establish which devices it trusts for cross-device flows. This includes limiting cross-device flows to specific device types such as interactive whiteboards or smart TVs, pre-registering devices with the authorization server or only allow cross-device flows on devices managed through device management systems. Device management systems may enforce policies that govern patching, version updates, on-device anti-malware deployment, revocation status and device location amongst others. Trusted devices MAY have their identities rooted in hardware (e.g., a TPM or equivalent technology).</t>
          <t>By only allowing trusted devices to initiate cross-device flows, it requires the attacker to have access to such a device and maintain access in a way that does not result in the device's trust status from being revoked.</t>
          <t>Mechanisms that identify a specific device SHOULD be evaluated for their privacy impliciations within the context of a specific application or deployment.</t>
          <t><strong>Limitations:</strong> An attacker may still be able to obtain access to a trusted device and use it to initiate authorization requests, making it necessary to apply additional controls and integrating with other threat detection and management systems that can detect suspicious behaviour such as repeated requests to initiate authorization or high volume of service activation on the same device. An attacker may also spoof device identities or device types that are not cryptographically established or verified through attestation mechanisms.</t>
        </section>
        <section anchor="trusted-networks">
          <name>Trusted Networks</name>
          <t>An attacker can be prevented from initiating a cross-device flow protocol by only allowing the protocol to be initiated on a trusted network or within a security perimeter (e.g., a corporate network). A trusted network may be defined as a set of IP addresses and joining the network is subject to security controls managed by the network operator, which may include only allowing trusted devices on the network, device management, user authentication and physical access policies and systems. In some deployments a trusted network may also be inferred using SIM or network operator supplied information. By limiting protocol initiation to a specific network, the attacker needs to have access to a device on the network. This mitigation can be implemented on the authorization server without changes to other system components.</t>
          <t><strong>Limitations:</strong> Network level controls may not always be feasible, especially when dealing with consumer scenarios where the network may not be under control of the service provider. Even if it is possible to deploy network level controls, it SHOULD be used in conjunction with other controls outlined in this document to achieve defence in-depth.</t>
        </section>
        <section anchor="limited-scopes">
          <name>Limited Scopes</name>
          <t>Authorization servers MAY choose to limit the scopes they include in access tokens issued through cross-device flows where the unauthenticated channel between two devices are susceptible to being exploited. Including limited scopes lessens the impact in case of a successful attack. The decision about which scopes are included may be further refined based on whether the protocol is initiated on a trusted device or the user's location relative to the location of the Consumption Device. This mitigation can be implemented on the authorization server without changes to other system components.</t>
          <t><strong>Limitations:</strong> Limiting scopes reduces the impact of a compromise, but does not avoid it. It SHOULD be used in conjunction with other mitigations described in this document.</t>
        </section>
        <section anchor="short-lived-tokens">
          <name>Short-Lived Tokens</name>
          <t>Another mitigation strategy includes limiting the life of the access and refresh tokens. The lifetime can be lengthened or shortened, depending on the user's location, the resources they are trying to access or whether they are using a trusted device. Short-lived tokens do not prevent or disrupt the attack, but serve as a remedial mechanism in case the attack succeeded. This mitigation can be implemented on the authorization server without changes to other system components.</t>
          <t><strong>Limitations:</strong> Short-lived tokens reduces the time window during which an attacker can benefit from a successful attack. This is most effective for access tokens. However, once an attacker obtains a refresh token, they can continue to request new access tokens, as well as refresh tokens. Forcing the expiry of refresh tokens may cause the user to re-authorize an action more frequently, which results in a negative user experience.</t>
        </section>
        <section anchor="rate-limits">
          <name>Rate Limits</name>
          <t>An attacker that engages in a scaled attack may need to request a large number of user codes (see exploit described in <xref target="example-b1"/>) or initiate a large number of authorization requests (see exploits described in <xref target="example-b4-1"/> and <xref target="example-b9"/>) in a short period of time. An authorization server MAY apply rate limits to minimize the number of requests it would accept from a client or send to a user in a limited time period.</t>
          <t><strong>Limitations:</strong> Rate limits are effective at slowing an attacker down and help to degrade scaled attacks, but do not prevent more targeted attacks that are executed with lower volumes and velocity. Therefore, it should be used along with other techniques to provide a defence-in-depth defence against cross-device attacks.</t>
        </section>
        <section anchor="sender-constrained-tokens">
          <name>Sender-Constrained Tokens</name>
          <t>Sender-constrained tokens limit the impact of a successful attack by preventing the tokens from being moved from the device on which the attack was successfully executed. This makes attacks where an attacker gathers a large number of access and refresh tokens on a single device and then sells them for profit more difficult, since the attacker would also have to export the cryptographic keys used to sender-constrain the tokens or be able to access them and generate signatures for future use. If the attack is being executed on a trusted device to a device with anti-malware, any attempts to exfiltrate tokens or keys may be detected and the device's trust status may be changed. Using hardware keys for sender-constraining tokens will further reduce the ability of the attacker to move tokens to another device.</t>
          <t><strong>Limitations:</strong> Sender-constrained tokens, especially sender-constrained tokens that require proof-of-possession, raise the bar for executing the attack and profiting from exfiltrating tokens. Although a software proof-of-possession key is better than no proof-of-possession key, an attacker may still exfiltrate the software key. Hardware keys are harder to exfiltrate, but come with additional implementation complexity. An attacker that controls the Consumption Device may still be able to excercise the key, even if it is in hardware. Consequently, the main protection derived from sender-constrained tokens is preventing tokens from being moved from the Consumption Device to another device, thereby making it harder sell stolen tokens and profit from the attack.</t>
        </section>
        <section anchor="user_education">
          <name>User Education</name>
          <t>Research shows that user education is effective in reducing the risk of phishing attacks <xref target="Baki2023"/>. The service provider MAY educate users on the risks of cross-device consent phishing, as part of broader anti-phishing education, such as guidance to avoid clicking on links in emails or other unsolicited messages, as described by NIST in <xref target="NISTPhishing"/>. In addition, the service provider MAY provide out-of-band reinforcement on the context and conditions under which an authorization grant may be requested. For example, if the service provider does not send emails containing QR codes that request users to grant authorization, this expectation may be reinforced through marketing communications and anti-fraud awareness campaigns. The service provider MAY also reinforce these user education messages through in-app experiences. In <xref target="PCRSM2023"/>, it is proposed that users be advised to verify the trustworthiness of the source of a QR code, for example by confirming that the connection is protected using TLS or that the URL belongs to the Authorization Server.</t>
          <t><strong>Limitations:</strong> Although user education helps to raise awareness and reduce the overall risk to users, it is insufficient on its own to mitigate cross-device consent phishing attacks. In particular, carefully designed phishing attacks can be practically indistinguishable from benign authorization flows even for well-trained users. User education SHOULD therefore be used in conjunction with other controls described in this document.</t>
        </section>
        <section anchor="user-experience">
          <name>User Experience</name>
          <t>The user experience SHOULD preserve the context within which the protocols were initiated and communicate this clearly to the user when they are asked to authorize, authenticate or present a credential. In preserving the context, it should be clear to the user who invoked the flow, why it was invoked and what the consequence of completing the authorization, authentication or credential presentation is. The user experience SHOULD reinforce the message that unless the user initiated the authorization request, or was expecting it, they should decline the request.</t>
          <t>This information MAY be communicated graphically or in a simple message (e.g., "It looks like you are trying to access your files on a digital whiteboard in your city center office. Click here to grant access to your files. If you are not trying to access your files, you should decline this request and notify the security department").</t>
          <t>The user interface SHOULD provide an obvious and unambiguous way for the user to decline or cancel a request. To avoid accidental authorization grants, the "decline" option SHOULD be the default option or given similar prominence in the user experience as the "grant" option.</t>
          <t>If the user uses an application on a mobile device to scan a QR code, the application MAY display information advising the user under which conditions they should expect to be asked to scan a QR code and under which circumstances they should never scan a QR code (e.g., display a message that the QR code will only be displayed on kiosks within trusted locations or on trusted websites hosted on a specific domain, and never in e-mail or other media and locations).</t>
          <t>The user experience MAY include information to further educate the user on cross-device consent phishing attacks and reinforce the conditions under which authorization grants may be requested.</t>
          <t><strong>Limitations:</strong> Improvements to user experience on their own is unlikely to be sufficient and SHOULD be used in conjunction with other controls described in this document.</t>
        </section>
        <section anchor="authenticate-then-initiate">
          <name>Authenticate-then-Initiate</name>
          <t>By requiring a user to authenticate on the Consumption Device with a phishing resistant authentication method before initiating a cross-device flow, the server can prevent an attacker from initiating a cross-device flow and obtaining QR codes or user codes. For example, a banking application may initiate a cross-device authorization request using the Backchannel-Transferred Session pattern only after the user is already authenticated and attempts a high-value transaction. This prevents the attacker from initiating a cross-device authorization request, obtaining a QR code or a user code that they can use to mislead an unsuspecting user. This requires that the Consumption Device has sufficient input capabilities to support a phishing resistant authentication mechanism, which may in itself negate the need for a cross-device flow.</t>
          <t><strong>Limitations:</strong> This mitigation is limited to Consumption Devices capable of supporting phishing resistant authentication mechanisms. Authenticating on the Consumption Device before starting a cross-device flow does not prevent the attacks described in <xref target="example-b5"/> and <xref target="Example-B7"/> and it is RECOMMENDED that additional mitigations described in this document is used if the cross-device flows are used in scenarios such as <xref target="example-a5"/> and <xref target="example-a7"/>.</t>
        </section>
        <section anchor="request-verification">
          <name>Request Initiation Verification</name>
          <t>The user MAY be asked to confirm if they initiated an authentication or authorization request by sending a one-time password (OTP) or PIN to the user's Authorization Device and asking them to enter it on the Consumption Device to confirm the request. If the request was initiated without the users' consent, they would receive an OTP or PIN out of context which may raise suspicion for the user. In addition, they would not have information on where to enter the OTP or PIN. The user experience on the Authorization Device MAY reinforce the risk of receiving an out-of-context OTP or PIN and provide information to the user on how to report an unauthorized authentication or authorization request.</t>
          <t><strong>Limitations:</strong> The additional verification step may reduce the overall usability of the system as it is one more thing users need to do right. Attackers may combine traditional phishing attacks and target users who respond to those messages with an interactive attack that sets the expectation with the user that they will have to provide the OTP or PIN, in addition to granting authorization for the request.</t>
        </section>
        <section anchor="request-binding">
          <name>Request Binding with Out-of-Band Data</name>
          <t>In the User-Transferred Session Data Pattern, users MAY enter out-of-band information on the Consumption Device to start the authorization process. The out-of-band data entered by the user MAY then be included in the QR code which is displayed on the Consumption Device. When the QR code is scanned by the Authorization Device, the out-of-band data is verified by the user or by the Authorization Device. The out-of-band data could be any attribute that the user or Authorization Device can retrieve during the authorization process. Examples include a serial number, one-time password or PIN, location or any other data that the user or the Authorization Device can recall or retrieve during the authorization process (<xref target="MPRCS2020"/>, <xref target="PCRSM2023"/>).</t>
          <t><strong>Limitations:</strong> A sophisticated attacker may include an additional step in their attack where they create a phishing attack that gathers the out-of-band data from the user before initiating the authorization request. The additional step could also have a negative impact on the usability level of the solution.</t>
        </section>
        <section anchor="practical-mitigation-summary">
          <name>Practical Mitigation Summary</name>
          <t>The practical mitigations described in this section can, within the limitations described, prevent or substantially increase the difficulty of initiating attacks, disrupt attacks once they start or reduce the impact of, or remediate, an attack if it succeeds. When one or more of these mitigations are combined, the overall security profile of a cross-device flow improves significantly. The following table provides a summary of these mitigations:</t>
          <table>
            <thead>
              <tr>
                <th align="left">Mitigation</th>
                <th align="center">Prevent</th>
                <th align="center">Disrupt</th>
                <th align="center">Recover</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="left">Establish Proximity</td>
                <td align="center">X</td>
                <td align="center">X</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Short-Lived/Timebound Codes</td>
                <td align="center"> </td>
                <td align="center">X</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">One-Time or Limited Use Codes</td>
                <td align="center"> </td>
                <td align="center">X</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Unique Codes</td>
                <td align="center"> </td>
                <td align="center">X</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Content Filtering</td>
                <td align="center"> </td>
                <td align="center">X</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Detect and remediate</td>
                <td align="center"> </td>
                <td align="center"> </td>
                <td align="center">X</td>
              </tr>
              <tr>
                <td align="left">Trusted Devices</td>
                <td align="center">X</td>
                <td align="center"> </td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Trusted Networks</td>
                <td align="center">X</td>
                <td align="center"> </td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Limited Scopes</td>
                <td align="center"> </td>
                <td align="center"> </td>
                <td align="center">X</td>
              </tr>
              <tr>
                <td align="left">Short-Lived Tokens</td>
                <td align="center"> </td>
                <td align="center"> </td>
                <td align="center">X</td>
              </tr>
              <tr>
                <td align="left">Rate Limits</td>
                <td align="center">X</td>
                <td align="center">X</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Sender-Constrained Tokens</td>
                <td align="center"> </td>
                <td align="center"> </td>
                <td align="center">X</td>
              </tr>
              <tr>
                <td align="left">User Education</td>
                <td align="center">X</td>
                <td align="center"> </td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">User Experience</td>
                <td align="center">X</td>
                <td align="center"> </td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Authenticate-then-Initiate</td>
                <td align="center">X</td>
                <td align="center"> </td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Request Initiation Verification</td>
                <td align="center"> </td>
                <td align="center">X</td>
                <td align="center"> </td>
              </tr>
              <tr>
                <td align="left">Request Binding with Out-of-Band Data</td>
                <td align="center"> </td>
                <td align="center">X</td>
                <td align="center"> </td>
              </tr>
            </tbody>
          </table>
          <t>Table: Practical Mitigation Summary</t>
        </section>
      </section>
      <section anchor="protocol-selection">
        <name>Protocol Selection</name>
        <t>Some cross-device protocols are more susceptible to the exploits described in this document than others. In this section we will compare three different cross-device protocols in terms of their susceptibility to exploits focused on the unauthenticated channel, the prerequisites to implement and deploy them, along with guidance on when it is appropriate to use them.</t>
        <section anchor="ietf-oauth-20-device-authorization-grant-rfc8628">
          <name>IETF OAuth 2.0 Device Authorization Grant <xref target="RFC8628"/>:</name>
          <section anchor="description">
            <name>Description</name>
            <t><xref target="RFC8628"/> is a standard to enable authorization on devices with constrained input capabilities (e.g., smart TVs, printers, and kiosks). In this protocol, the user code or QR code is displayed or made available on the Consumption Device (smart TV) and entered on a second device (e.g., a mobile phone).</t>
          </section>
          <section anchor="susceptibility">
            <name>Susceptibility</name>
            <t>There are several reports in the public domain outlining how the unauthenticated channel may be exploited to execute a CDCP attack (<xref target="ARTDCPHISH"/>, <xref target="DCFLOWPHISH"/>, <xref target="NEWDCPHISH"/>, <xref target="DEFCON29"/>, <xref target="DCATTACK"/>, <xref target="SQPHISH"/>).</t>
          </section>
          <section anchor="device-capabilities">
            <name>Device Capabilities</name>
            <t>There are no assumptions in the protocol about underlying capabilities of the device, making it a "least common denominator" protocol that is expected to work on the broadest set of devices and environments.</t>
          </section>
          <section anchor="mitigations">
            <name>Mitigations</name>
            <t>In addition to the security considerations section in the standard, it is RECOMMENDED that one or more of the mitigations outlined in this document be considered, especially mitigations that can help establish proximity or prevent attackers from obtaining QR or user codes.</t>
          </section>
          <section anchor="when-to-use">
            <name>When to use</name>
            <t>Only use this protocol if other cross-device protocols are not viable due to device or system constraints. Avoid using if the protected resources are sensitive, high value, or business critical. Always deploy additional mitigations like proximity or only allow with pre-registered devices. Do not use for same-device scenarios (e.g., if the Consumption Device and Authorization Device is the same device).</t>
          </section>
        </section>
        <section anchor="openid-foundation-client-initiated-back-channel-authentication-ciba">
          <name>OpenID Foundation Client Initiated Back-Channel Authentication (CIBA):</name>
          <section anchor="description-1">
            <name>Description</name>
            <t>Client Initiated Back-Channel Authentication (CIBA) <xref target="CIBA"/>: A standard developed in the OpenID Foundation that allows a device or service (e.g., a personal computer, smart TV, Kiosk) to request the OpenID Provider to initiate an authentication flow if it knows a valid identifier for the user. The user completes the authentication flow using a second device (e.g., a mobile phone). In this flow the user does not scan a QR code or obtain a user code from the Consumption Device, but is instead contacted by the OpenID Provider to complete the authentication using a push notification, e-mail, text message or any other suitable mechanism.</t>
          </section>
          <section anchor="susceptibility-1">
            <name>Susceptibility</name>
            <t>Less susceptible to unauthenticated channel attacks, but still vulnerable to attackers who know or can guess the user identifier and initiate an attack as described in <xref target="example-b4-1"/>.</t>
          </section>
          <section anchor="device-capabilities-1">
            <name>Device Capabilities</name>
            <t>There is no requirement on the Consumption Device to support specific hardware. The Authorization Device must be registered/associated with the user and it must be possible for the Authorization Server to trigger an authorization on this device.</t>
          </section>
          <section anchor="mitigations-1">
            <name>Mitigations</name>
            <t>In addition to the security considerations section in the standard, it is RECOMMENDED that one or more of the mitigations outlined in this document be considered, especially mitigations that can help establish proximity or prevent attackers from initiating authorization requests.</t>
          </section>
          <section anchor="when-to-use-1">
            <name>When to Use</name>
            <t>Use CIBA instead of Device Authorization Grant if it is possible for the Consumption Device to obtain a user identifier on the Consumption Device (e.g., through an input or selection mechanism) and if the Authorization Server can trigger an authorization on the Authorization Device. Do not use for same-device scenarios (e.g., if the Consumption Device and Authorization Device is the same device).</t>
          </section>
        </section>
        <section anchor="fido">
          <name>FIDO2/WebAuthn</name>
          <section anchor="description-2">
            <name>Description</name>
            <t>FIDO2/WebAuthn is a stack of standards developed in the FIDO Alliance and W3C respectively which allow for origin-bound, phishing-resistant user authentication using asymmetric cryptography that can be invoked from a web browser or native client. Version 2.2 of the FIDO Client to Authenticator Protocol (CTAP) supports a new cross-device authentication protocol, called "hybrid transports", which enables an external device, such as a phone or tablet, to be used as a roaming authenticator for signing in to the primary device, such as a personal computer. This is commonly called FIDO Cross-Device Authentication (CDA). CTAP 2.2 hybrid transports is implemented by the client and authenticator platforms.</t>
            <t>When a user wants to authenticate using their mobile device (authenticator) for the first time, they need to link their authenticator to their main device. This is done using a scan of a QR code. When the authenticator scans the QR code, the device sends an encrypted BLE advertisement containing keying material and a tunnel ID. The main device (CTAP client) and authenticator both establish connections to the web service, and the normal CTAP protocol exchange occurs.</t>
            <t>If the user chooses to keep their authenticator linked with the main device, the QR code link step is not necessary for subsequent use. The user will receive a push notification on the authenticator.</t>
          </section>
          <section anchor="susceptibility-2">
            <name>Susceptibility</name>
            <t>The Cross-Device Authentication flow proves proximity by leveraging BLE advertisements for service establishment, significantly reducing the susceptibility to any of the exploits described in Examples 1-6.</t>
          </section>
          <section anchor="device-capabilities-2">
            <name>Device Capabilities</name>
            <t>Both the Consumption Device and the authenticator require BLE support and access to the internet. The Consumption Device must support both the WebAuthn API <xref target="W3CWebAuthn"/> (or a platform-specific WebAuthn abstraction for native apps) and the FIDO Client to Authenticator Protocol (CTAP), specifically version 2.2 with hybrid transports <xref target="FIDOCTAP22"/>. The device serving as the FIDO authenticator must also support CTAP 2.2 or later to be used as a cross-device authenticator.</t>
          </section>
          <section anchor="mitigations-2">
            <name>Mitigations</name>
            <t>FIDO Cross-Device Authentication (CDA) establishes proximity through the use of BLE, reducing the need for additional mitigations. An implementer MAY still choose to implement additional mitigation as described in this document.</t>
          </section>
          <section anchor="when-to-use-2">
            <name>When to Use</name>
            <t>FIDO2/WebAuthn SHOULD be used for cross-device authentication scenarios whenever the devices are capable of doing so and a suitable FIDO credential is not available on the Consumption Device. It MAY be used as an authentication method with the Authorization Code Grant <xref target="RFC6749"/> and PKCE <xref target="RFC7636"/>, to grant authorization to a Consumption Device (e.g., smart TV or interactive whiteboard) using a device serving as the FIDO authenticator (e.g. a mobile phone) for authentication. This combination of FIDO2/WebAuthn and Authorization Code Flow with PKCE enables cross device authorization flows, without the risks posed by the Device Authorization Grant <xref target="RFC8628"/>.</t>
          </section>
        </section>
        <section anchor="protocol-selection-summary">
          <name>Protocol Selection Summary</name>
          <t>The FIDO Cross-Device Authentication (CDA) flow provides the best protection against attacks on the unauthenticated channel for cross device flows. It can be combined with OAuth 2.0 and OpenID Connect protocols for standards-based authorization and authentication flows. If FIDO2/WebAuthn support is not available, Client Initiated Backchannel Authentication (CIBA) provides an alternative, provided that there is a channel through which the authorization server can contact the end user. Examples of such a channel include device push notifications, e-mail or text messages which the user can access from their device. If CIBA is used, additional mitigations to enforce proximity and initiate transactions from trusted devices or trusted networks SHOULD be considered. The OAuth 2.0 Device Authorization Grant provides the most flexibility and has the lowest requirements on devices used, but it is RECOMMENDED that it is only used when additional mitigations are deployed to prevent attacks that exploit the unauthenticated channel between devices.</t>
        </section>
      </section>
      <section anchor="foundational-pillars">
        <name>Foundational Pillars</name>
        <t>Experience with web authorization and authentication protocols such as OAuth and OpenID Connect has shown that securing these protocols can be hard. The major reason for this is that the landscape in which they are operating - the web infrastructure with browsers, servers, and the underlying network - is complex, diverse, and ever-evolving.</t>
        <t>As is the case with other kinds of protocols, it can be easy to overlook vulnerabilities in this environment. One way to reduce the chances of hidden security problems is to use mathematical-logical models to describe the protocols, their environments and their security goals, and then use these models to try to prove security. This approach is what is usually subsumed as "formal security analysis".</t>
        <t>There are two major strengths of formal analysis: First, finding new vulnerabilities does not require creativity - i.e., new classes of attacks can be uncovered even if no one thought of these attacks before. In a faithful model, vulnerabilities become clear during the proof process or even earlier. Second, formal analysis can exclude the existence of any attacks within the boundaries of the model (e.g., the protocol layers modeled, the level of detail and functionalities covered, the assumed attacker capabilities, and the formalized security goals). As a downside, there is usually a gap between the model (which necessarily abstracts away from details) and implementations. In other words, implementations can introduce flaws where the model does not have any. Nonetheless, for protocol standards, formal analysis can help to ensure that the specification is secure when implemented correctly.</t>
        <t>There are various different approaches to formal security analysis and each brings its own strengths and weaknesses. For example, models differ in the level of detail in which they can capture a protocol (granularity, expressiveness), in the kind of statements they can produce, and whether the proofs can be assisted by tools or have to be performed manually.</t>
        <t>The following works have been identified as relevant to the analysis of cross-device flows:</t>
        <ul spacing="normal">
          <li>
            <t>In "Formal analysis of self-issued OpenID providers" <xref target="Bauer2022"/>,
the protocol of <xref target="OpenID.SIOPV2"/> was analyzed using the Web
Infrastructure Model (WIM). The WIM is specifically designed for the
analysis of web authentication and authorization protocols. While it
is a manual (pen-and-paper) model, it captures details of browsers
and web interactions to a degree that is hard to match in automated
models. In previous works, previously unknown flaws in OAuth, OpenID
Connect, and FAPI were discovered using the WIM. In the analysis of a
cross-device SIOP V2 flow in <xref target="Bauer2022"/>, the request replay attack
already described in Section 13.3 of <xref target="OpenID.SIOPV2"/> was confirmed
in the model. A mitigation was implemented based on a so-called
Cross-Device Stub, essentially a component that serves to link the
two devices before the protocol flow starts. This can be seen as an
implementation of a trusted device relationship as described in
<xref target="trusted_devices"/>. The mitigation was shown to be effective in the
model.</t>
          </li>
          <li>
            <t>In "Security analysis of the Grant Negotiation and Authorization
Protocol" <xref target="Helmschmidt2022"/>, an analysis of a draft of the Grant
Negotiation and Authorization Protocol (GNAP)
<xref target="RFC9635"/> was performed using the Web
Infrastructure Model. The same attack as in <xref target="Bauer2022"/> was found to
apply to GNAP as well. In this case, a model of a "careful user" (see
<xref target="user_education"/> was used to show that the attack can be prevented
(at least in theory) by the user.</t>
          </li>
          <li>
            <t>In "The Good, the Bad and the (Not So) Ugly of Out-of-Band
Authentication with eID Cards and Push Notifications: Design, Formal
and Risk Analysis" <xref target="MPRCS2020"/>, Pernpruner et al. formally
analyzed an authentication protocol relying on push notifications
delivered to an out-of-band device to approve the authentication
attempt on the primary device (Backchannel-Transferred Session
Pattern, <xref target="btsp"/>). The analysis was performed using the specification
language ASLan++ and the model checker SATMC. According to the
results of the analysis, they identified and defined the category of
<em>implicit attacks</em>, which manage to deceive users into approving a
malicious authentication attempt through social engineering
techniques, thus not compromising all the authentication factors
involved; these attacks are aligned with the definition of
CDCP attacks.</t>
          </li>
          <li>
            <t>In "An Automated Multi-Layered Methodology to Assist the Secure and
Risk-Aware Design of Multi-Factor Authentication Protocols"
<xref target="PCRSM2023"/>, Pernpruner et al. defined a multi-layered methodology
to analyze multi-factor authentication protocols at different levels
of granularity. They leveraged their methodology to formally analyze
a protocol relying on a QR code that has to be scanned on a secondary
device to approve the authentication attempt on the primary device
(User-Transferred Session Data Pattern, <xref target="utsdp"/>). Given the results
of the analysis, they proposed some practical mitigations either to
prevent or reduce the risk of successful attacks, such as those
described in <xref target="user_education"/>, <xref target="request-verification"/> and
<xref target="request-binding"/>.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Security considerations are described in <xref target="best-practices"/> and <xref target="mitigating-against-cross-device-flow-attacks"/>.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
    <section anchor="conclusion">
      <name>Conclusion</name>
      <t>Cross-device flows enable authorization on devices with limited input capabilities, allow for secure authentication when using public or shared devices, provide a path towards multi-factor authentication and, provide the convenience of a single, portable credential store.</t>
      <t>The popularity of cross-device flows attracted the attention of attackers that exploit the unauthenticated channel between the Consumption Device and Authorization Device using techniques commonly used in phishing attacks. These CDCP attacks allow attackers to obtain access and refresh tokens, rather than authentication credentials, resulting in access to resources even if the user used multi-factor authentication.</t>
      <t>To address these attacks, we propose a three-pronged approach that includes the deployment of practical mitigations to safeguard protocols that are already deployed, provide guidance on when to use different protocols, including protocols that are not susceptible to these attacks, and the introduction of formal methods to evaluate the impact of mitigations and find additional issues.</t>
    </section>
    <section anchor="contributors">
      <name>Contributors</name>
      <t>The authors would like to thank Tim Cappalli, Nick Ludwig, Adrian Frei, Nikhil Reddy Boreddy, Bjorn Hjelm, Joseph Heenan, Brian Campbell, Damien Bowden, Kristina Yasuda, Tim Würtele, Karsten Meyer zu Selhausen, Maryam Mehrnezhad, Marco Pernpruner, Giada Sciarretta, Dean H. Saxe, Roy Williams, Aaron Parecki, George Fletcher, Hannes Tschofenig, Dan Moore, Deb Cooley, Paul Kyzivat, David Mandelberg, Jim Fenton, Bing Liu, Mohamed Boucadair, Mike Bishop, Roman Danyliw and others for their valuable input, feedback and general support of this work.</t>
    </section>
  </middle>
  <back>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC6749">
          <front>
            <title>The OAuth 2.0 Authorization Framework</title>
            <author fullname="D. Hardt" initials="D." role="editor" surname="Hardt"/>
            <date month="October" year="2012"/>
            <abstract>
              <t>The OAuth 2.0 authorization framework enables a third-party application to obtain limited access to an HTTP service, either on behalf of a resource owner by orchestrating an approval interaction between the resource owner and the HTTP service, or by allowing the third-party application to obtain access on its own behalf. This specification replaces and obsoletes the OAuth 1.0 protocol described in RFC 5849. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6749"/>
          <seriesInfo name="DOI" value="10.17487/RFC6749"/>
        </reference>
        <reference anchor="RFC7636">
          <front>
            <title>Proof Key for Code Exchange by OAuth Public Clients</title>
            <author fullname="N. Sakimura" initials="N." role="editor" surname="Sakimura"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="N. Agarwal" initials="N." surname="Agarwal"/>
            <date month="September" year="2015"/>
            <abstract>
              <t>OAuth 2.0 public clients utilizing the Authorization Code Grant are susceptible to the authorization code interception attack. This specification describes the attack as well as a technique to mitigate against the threat through the use of Proof Key for Code Exchange (PKCE, pronounced "pixy").</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7636"/>
          <seriesInfo name="DOI" value="10.17487/RFC7636"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </reference>
        <reference anchor="RFC8628">
          <front>
            <title>OAuth 2.0 Device Authorization Grant</title>
            <author fullname="W. Denniss" initials="W." surname="Denniss"/>
            <author fullname="J. Bradley" initials="J." surname="Bradley"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <date month="August" year="2019"/>
            <abstract>
              <t>The OAuth 2.0 device authorization grant is designed for Internet- connected devices that either lack a browser to perform a user-agent- based authorization or are input constrained to the extent that requiring the user to input text in order to authenticate during the authorization flow is impractical. It enables OAuth clients on such devices (like smart TVs, media consoles, digital picture frames, and printers) to obtain user authorization to access protected resources by using a user agent on a separate device.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8628"/>
          <seriesInfo name="DOI" value="10.17487/RFC8628"/>
        </reference>
        <reference anchor="RFC7662">
          <front>
            <title>OAuth 2.0 Token Introspection</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This specification defines a method for a protected resource to query an OAuth 2.0 authorization server to determine the active state of an OAuth 2.0 token and to determine meta-information about this token. OAuth 2.0 deployments can use this method to convey information about the authorization context of the token from the authorization server to the protected resource.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7662"/>
          <seriesInfo name="DOI" value="10.17487/RFC7662"/>
        </reference>
        <reference anchor="CIBA" target="https://openid.net/specs/openid-client-initiated-backchannel-authentication-core-1_0.html">
          <front>
            <title>OpenID Connect Client-Initiated Backchannel Authentication Flow - Core 1.0</title>
            <author initials="G. F." surname="Rodriguez" fullname="Gonzalo Fernandez Rodriguez">
              <organization>Telefonica</organization>
            </author>
            <author initials="F." surname="Walter" fullname="Florian Walter">
              <organization>Deutsche Telekom AG</organization>
            </author>
            <author initials="A." surname="Nennker" fullname="Axel Nennker">
              <organization>Deutsche Telekom AG</organization>
            </author>
            <author initials="D." surname="Tonge" fullname="Dave Tonge">
              <organization>Moneyhub</organization>
            </author>
            <author initials="B." surname="Campbell" fullname="Brian Campbell">
              <organization>Ping Identity</organization>
            </author>
            <date year="2021" month="September"/>
          </front>
        </reference>
        <reference anchor="CAEP" target="https://openid.net/specs/openid-caep-1_0-final.html">
          <front>
            <title>OpenID Continuous Access Evaluation Profile 1.0</title>
            <author initials="A." surname="Tulshibagwale" fullname="Atul Tulshibagwale">
              <organization>SGNL</organization>
            </author>
            <author initials="T." surname="Cappalli" fullname="Tim Cappalli">
              <organization>Microsoft</organization>
            </author>
            <date year="2025" month="August"/>
          </front>
        </reference>
        <reference anchor="SSF" target="https://openid.net/specs/openid-sharedsignals-framework-1_0-final.html">
          <front>
            <title>OpenID Shared Signals Framework Specification 1.0</title>
            <author initials="A." surname="Tulshibagwale" fullname="Atul Tulshibagwale">
              <organization>SGNL</organization>
            </author>
            <author initials="T." surname="Cappalli" fullname="Tim Cappalli">
              <organization>Microsoft</organization>
            </author>
            <author initials="M." surname="Scurtescu" fullname="Marius Scurtescu">
              <organization>Coinbase</organization>
            </author>
            <author initials="A." surname="Backman" fullname="Annabelle Backman">
              <organization>Amazon</organization>
            </author>
            <author initials="J." surname="Bradley" fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author initials="S." surname="Miel" fullname="Shayne Miel">
              <organization>Cisco</organization>
            </author>
            <date year="2025" month="August"/>
          </front>
        </reference>
        <reference anchor="W3CWebAuthn" target="https://www.w3.org/TR/2025/WD-webauthn-3-20250127/">
          <front>
            <title>Web Authentication: An API for accessing Public Key Credentials Level 3</title>
            <author initials="T." surname="Cappalli" fullname="Tim Cappalli">
              <organization>Okta</organization>
            </author>
            <author initials="M.B." surname="Jones" fullname="Michael B. Jones">
              <organization>Microsoft</organization>
            </author>
            <author initials="A." surname="Kumar" fullname="Akshay Kumar">
              <organization>Microsoft</organization>
            </author>
            <author initials="E." surname="Lundberg" fullname="Emil Lundberg">
              <organization>Yubico</organization>
            </author>
            <author initials="M." surname="Miller" fullname="Matthew Miller">
              <organization>Cisco</organization>
            </author>
            <date year="2025" month="January"/>
          </front>
        </reference>
        <reference anchor="FIDOCTAP22" target="https://fidoalliance.org/specs/fido-v2.2-ps-20250714/fido-client-to-authenticator-protocol-v2.2-ps-20250714.html">
          <front>
            <title>Client to Authenticator Protocol (CTAP), Version 2.2, July 2025, FIDO Alliance</title>
            <author initials="J." surname="Bradley" fullname="John Bradley">
              <organization>Yubico</organization>
            </author>
            <author initials="M.B." surname="Jones" fullname="Michael B. Jones">
              <organization>Microsoft</organization>
            </author>
            <author initials="A." surname="Kumar" fullname="Akshay Kumar">
              <organization>Microsoft</organization>
            </author>
            <author initials="R." surname="Lindemann" fullname="Rolf Lindemann">
              <organization>Nok Nok Labs</organization>
            </author>
            <author initials="S." surname="Verrept" fullname="Johan Verrept">
              <organization>OneSpan</organization>
            </author>
            <author initials="D." surname="Waite" fullname="David Waite">
              <organization>Ping Identity</organization>
            </author>
            <date year="2025" month="July"/>
          </front>
        </reference>
        <reference anchor="IEEE802154" target="https://standards.ieee.org/ieee/802.15.4/11041/">
          <front>
            <title>IEEE Std 802.15.4-2024: IEEE Standard for Low-Rate Wireless Networks</title>
            <author>
              <organization>Institute of Electrical and Electronics Engineers</organization>
            </author>
            <date year="2024"/>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC9635">
          <front>
            <title>Grant Negotiation and Authorization Protocol (GNAP)</title>
            <author fullname="J. Richer" initials="J." role="editor" surname="Richer"/>
            <author fullname="F. Imbault" initials="F." surname="Imbault"/>
            <date month="October" year="2024"/>
            <abstract>
              <t>The Grant Negotiation and Authorization Protocol (GNAP) defines a mechanism for delegating authorization to a piece of software and conveying the results and artifacts of that delegation to the software. This delegation can include access to a set of APIs as well as subject information passed directly to the software.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9635"/>
          <seriesInfo name="DOI" value="10.17487/RFC9635"/>
        </reference>
        <reference anchor="ARTDCPHISH" target="https://0xboku.com/2021/07/12/ArtOfDeviceCodePhish.html">
          <front>
            <title>The Art of the Device Code Phish</title>
            <author initials="B." surname="Cooke" fullname="Bobby Cooke">
              <organization/>
            </author>
            <date year="2021" month="July"/>
          </front>
        </reference>
        <reference anchor="DCFLOWPHISH" target="https://www.optiv.com/insights/source-zero/blog/microsoft-365-oauth-device-code-flow-and-phishing">
          <front>
            <title>Microsoft 365 OAuth Device Code Flow and Phishing</title>
            <author initials="D." surname="Min" fullname="Daniel Min">
              <organization/>
            </author>
            <date year="2021" month="August"/>
          </front>
        </reference>
        <reference anchor="NEWDCPHISH" target="https://o365blog.com/post/phishing/#new-phishing-technique-device-code-authentication">
          <front>
            <title>Introducing a new phishing technique for compromising Office 365 accounts</title>
            <author initials="N." surname="Syynimaa" fullname="Nestori Syynimaa">
              <organization/>
            </author>
            <date year="2020" month="October"/>
          </front>
        </reference>
        <reference anchor="DEFCON29" target="https://www.youtube.com/watch?v=9slRYvpKHp4">
          <front>
            <title>New Phishing Attacks Exploiting OAuth Authentication Flows (DEFCON 29)</title>
            <author initials="J." surname="Hwong" fullname="Jenko Hwong">
              <organization/>
            </author>
            <date year="2021" month="August"/>
          </front>
        </reference>
        <reference anchor="DCATTACK" target="https://www.secureworks.com/blog/oauths-device-code-flow-abused-in-phishing-attacks">
          <front>
            <title>OAuth's Device Code Flow Abused in Phishing Attacks</title>
            <author>
              <organization>Secureworks Counter Threat Unit (CTU)</organization>
            </author>
            <date year="2021" month="August"/>
          </front>
        </reference>
        <reference anchor="SQPHISH" target="https://www.helpnetsecurity.com/2022/08/11/squarephish-video/">
          <front>
            <title>SquarePhish: Advanced phishing tool combines QR codes and OAuth 2.0 device code flow</title>
            <author initials="K." surname="Talebzadeh" fullname="Kam Talebzadeh">
              <organization/>
            </author>
            <author initials="N." surname="Romsdah" fullname="Nevada Romsdah">
              <organization/>
            </author>
            <date year="2022" month="August"/>
          </front>
        </reference>
        <reference anchor="NYC.Bike" target="https://nypost.com/2021/08/07/citi-bikes-being-swiped-by-joyriding-scammers-who-have-cracked-the-qr-code/">
          <front>
            <title>Citi Bikes being swiped by joyriding scammers who have cracked the QR code</title>
            <author initials="K. J." surname="Byrne" fullname="Kerry J. Byrne">
              <organization/>
            </author>
            <date year="2021" month="August"/>
          </front>
        </reference>
        <reference anchor="OpenID.SIOPV2" target="https://bitbucket.org/openid/connect/src/master/openid-connect-self-issued-v2/openid-connect-self-issued-v2-1_0.md">
          <front>
            <title>Self-Issued OpenID Provider v2</title>
            <author initials="K." surname="Yasuda" fullname="Kristina Yasuda">
              <organization>Microsoft</organization>
            </author>
            <author initials="M. B." surname="Jones" fullname="Michael B. Jones">
              <organization>Microsoft</organization>
            </author>
            <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <date year="2022" month="November"/>
          </front>
        </reference>
        <reference anchor="OpenID.VP" target="https://openid.net/specs/openid-4-verifiable-presentations-1_0.html">
          <front>
            <title>OpenID for Verifiable Credential Presentations</title>
            <author initials="O." surname="Terbu" fullname="Oliver Terbu">
              <organization>Mattr</organization>
            </author>
            <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author initials="K." surname="Yasuda" fullname="Kristina Yasuda">
              <organization>Microsoft</organization>
            </author>
            <author initials="T." surname="Looker" fullname="Tobias Looker">
              <organization>Mattr</organization>
            </author>
            <date year="2023" month="November"/>
          </front>
        </reference>
        <reference anchor="OpenID.VCI" target="https://openid.net/specs/openid-4-verifiable-credential-issuance-1_0.html">
          <front>
            <title>OpenID for Verifiable Credential Issuance</title>
            <author initials="T." surname="Lodderstedt" fullname="Torsten Lodderstedt">
              <organization>yes.com</organization>
            </author>
            <author initials="K." surname="Yasuda" fullname="Kristina Yasuda">
              <organization>Microsoft</organization>
            </author>
            <author initials="T." surname="Looker" fullname="Tobias Looker">
              <organization>Mattr</organization>
            </author>
            <date year="2023" month="October"/>
          </front>
        </reference>
        <reference anchor="Bauer2022" target="https://elib.uni-stuttgart.de/handle/11682/12417">
          <front>
            <title>Formal analysis of self-issued OpenID providers</title>
            <author initials="C." surname="Bauer" fullname="C Bauer">
              <organization/>
            </author>
            <date year="2022"/>
          </front>
        </reference>
        <reference anchor="OpenID.Core" target="https://openid.net/specs/openid-connect-core-1_0.html">
          <front>
            <title>OpenID Connect Core 1.0</title>
            <author initials="N." surname="Sakimura">
              <organization/>
            </author>
            <author initials="J." surname="Bradley">
              <organization/>
            </author>
            <author initials="M. B." surname="Jones">
              <organization/>
            </author>
            <author initials="B." surname="de Medeiros">
              <organization/>
            </author>
            <author initials="C." surname="Mortimore">
              <organization/>
            </author>
            <date year="2014" month="November"/>
          </front>
        </reference>
        <reference anchor="PCRSM2023" target="https://doi.org/10.1109/TDSC.2023.3296210">
          <front>
            <title>An Automated Multi-Layered Methodology to Assist the Secure and Risk-Aware Design of Multi-Factor Authentication Protocols, IEEE Transactions on Dependable and Secure Computing (TDSC)</title>
            <author initials="M." surname="Pernpruner" fullname="Marco Pernpruner">
              <organization/>
            </author>
            <author initials="R." surname="Carbone" fullname="Roberto Carbone">
              <organization/>
            </author>
            <author initials="G." surname="Sciarretta" fullname="Giada Sciarretta">
              <organization/>
            </author>
            <author initials="S." surname="Ranise" fullname="Silvio Ranise">
              <organization/>
            </author>
            <date year="2023"/>
          </front>
        </reference>
        <reference anchor="MPRCS2020" target="https://doi.org/10.1145/3374664.3375727">
          <front>
            <title>The Good, the Bad and the (Not So) Ugly of Out-of-Band Authentication with eID Cards and Push Notifications: Design, Formal and Risk Analysis, Proceedings of the Tenth ACM Conference on Data and Application Security and Privacy, Pages 223–234, Association for Computing Machinery</title>
            <author initials="M." surname="Pernpruner" fullname="Marco Pernpruner">
              <organization/>
            </author>
            <author initials="R." surname="Carbone" fullname="Roberto Carbone">
              <organization/>
            </author>
            <author initials="S." surname="Ranise" fullname="Silvio Ranise">
              <organization/>
            </author>
            <author initials="G." surname="Sciarretta" fullname="Giada Sciarretta">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="Helmschmidt2022" target="https://elib.uni-stuttgart.de/handle/11682/12220">
          <front>
            <title>Security analysis of the Grant Negotiation and Authorization Protocol</title>
            <author initials="F." surname="Helmschmidt">
              <organization/>
            </author>
            <date year="2022"/>
          </front>
        </reference>
        <reference anchor="Baki2023" target="https://doi.org/10.1109/TDSC.2022.3151103">
          <front>
            <title>Sixteen Years of Phishing User Studies: What Have We Learned?, IEEE Transactions on Dependable and Secure Computing, Volume 20, Number 2, Pages 1200–1212</title>
            <author initials="S." surname="Baki">
              <organization/>
            </author>
            <author initials="R. M." surname="Verma">
              <organization/>
            </author>
            <date year="2023"/>
          </front>
        </reference>
        <reference anchor="NISTPhishing" target="https://www.nist.gov/system/files/documents/2024/03/12/Phishing_SMB%20FactSheet_2024_Final.pdf">
          <front>
            <title>NIST Small Business Cybersecurity Fact Sheet: Phishing</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="NISTGlossary" target="https://csrc.nist.gov/glossary">
          <front>
            <title>NIST Computer Security Resource Center Glossary</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 1325?>

<section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <ul spacing="normal">
        <li>
          <t>latest
          </t>
          <ul spacing="normal">
            <li>
              <t>Secdir Feedback: Additional information on allowing time to authenticate (https://github.com/oauth-wg/oauth-cross-device-security/issues/203)</t>
            </li>
            <li>
              <t>Secdir Feedback: Provide additional guidance on user impact of using a VPN (see https://github.com/oauth-wg/oauth-cross-device-security/issues/202)</t>
            </li>
            <li>
              <t>Secdir Feedback: Clarify section 4.1.3 (https://github.com/oauth-wg/oauth-cross-device-security/issues/201)</t>
            </li>
            <li>
              <t>Art Feedback: Add reference defining social engineering and phishing (https://github.com/oauth-wg/oauth-cross-device-security/issues/207)</t>
            </li>
            <li>
              <t>Art Feedback: Clarify diagrams (https://github.com/oauth-wg/oauth-cross-device-security/issues/208)</t>
            </li>
            <li>
              <t>ARTART Feedback: Cross-link to reference "consent fatigue" attacks (https://github.com/oauth-wg/oauth-cross-device-security/issues/211)</t>
            </li>
            <li>
              <t>ARTART Feedback: Editorial updates (https://github.com/oauth-wg/oauth-cross-device-security/issues/212, https://github.com/oauth-wg/oauth-cross-device-security/issues/218, https://github.com/oauth-wg/oauth-cross-device-security/issues/217, https://github.com/oauth-wg/oauth-cross-device-security/issues/213)</t>
            </li>
            <li>
              <t>ARTART Feedback: Clarify that 6-digit codes are examples only (https://github.com/oauth-wg/oauth-cross-device-security/issues/214)</t>
            </li>
            <li>
              <t>ARTART Feedback: Make limitations of proximity schemes clearer (https://github.com/oauth-wg/oauth-cross-device-security/issues/215)</t>
            </li>
            <li>
              <t>ARTART Feedback: Add note on risks of device type spoofing (https://github.com/oauth-wg/oauth-cross-device-security/issues/216)</t>
            </li>
            <li>
              <t>ARTART Feedback: Provide examples of authenticate-then-initiate mitigations and limitations (https://github.com/oauth-wg/oauth-cross-device-security/issues/219)</t>
            </li>
            <li>
              <t>OPSDIR Feedback: Editorial updates (https://github.com/oauth-wg/oauth-cross-device-security/issues/231)</t>
            </li>
            <li>
              <t>OPSDIR Feedback: Add example cross references to ease navigation (https://github.com/oauth-wg/oauth-cross-device-security/issues/232)</t>
            </li>
            <li>
              <t>Added Aaron Parecki, George Fletcher, Hannes Tschofenig, Dan Moore, Deb Cooley, Paul Kyzivat, David Mandelberg, Jim Fenton, Mohamed Boucadair and Bing Liu to the list of people who proivded input and made contributions.</t>
            </li>
            <li>
              <t>Updated with feedback from Mohamed Boucadair (https://mailarchive.ietf.org/arch/msg/oauth/ylRSRkQYgdoYJF1SqwBIHPcEZ4k/)</t>
            </li>
            <li>
              <t>Updated with feedback from Mike bishop (https://mailarchive.ietf.org/arch/msg/oauth/TBK_FZJHAJKddwxUvZP1X4gBdOc/)</t>
            </li>
            <li>
              <t>Updated with feedback from Roman Danyliw (https://mailarchive.ietf.org/arch/msg/oauth/A_RXNCKI1HFB8Z3f-izvAj3pszo/)</t>
            </li>
          </ul>
          <t>
-13  </t>
          <ul spacing="normal">
            <li>
              <t>Fixed reference for protocol selection (see issue #189)</t>
            </li>
            <li>
              <t>Change affiliation</t>
            </li>
            <li>
              <t>AD Feedback: Add Security Consideration</t>
            </li>
            <li>
              <t>AD Feedback: Add IANA Consideration</t>
            </li>
            <li>
              <t>AD Feedback: Capitalise SHOULD not -&gt; SHOULD NOT (issue #185)</t>
            </li>
            <li>
              <t>AD Feedback: AD Nits (see https://github.com/oauth-wg/oauth-cross-device-security/issues/195)</t>
            </li>
            <li>
              <t>AD Feedback: Clarify limitations on consumption device (see https://github.com/oauth-wg/oauth-cross-device-security/issues/194)</t>
            </li>
            <li>
              <t>AD Feedback: Remove repetitive text (see https://github.com/oauth-wg/oauth-cross-device-security/issues/193)</t>
            </li>
            <li>
              <t>AD Feedback: Clarify separate use cases (see https://github.com/oauth-wg/oauth-cross-device-security/issues/192)</t>
            </li>
          </ul>
          <t>
-12  </t>
          <ul spacing="normal">
            <li>
              <t>Fixed FIDO CTAP V2.2 URL</t>
            </li>
            <li>
              <t>Update SSF Reference</t>
            </li>
            <li>
              <t>CAEP Reference Update</t>
            </li>
            <li>
              <t>Fix IEEE reference</t>
            </li>
            <li>
              <t>Update IEEE Reference</t>
            </li>
          </ul>
          <t>
-11  </t>
          <ul spacing="normal">
            <li>
              <t>Fixed malformed labels</t>
            </li>
            <li>
              <t>Clarified common use case for when phone and TVs do not use the same network.</t>
            </li>
            <li>
              <t>Clarified role of authorization server in establishing proximity.</t>
            </li>
            <li>
              <t>Clarified which mitigations can be implemented by the authorization server only.</t>
            </li>
            <li>
              <t>Add Dan Moore to acknowledgements.</t>
            </li>
            <li>
              <t>Updated outdated references.</t>
            </li>
          </ul>
          <t>
-10  </t>
          <ul spacing="normal">
            <li>
              <t>Shepherd feedback: Describe unauthenticated channel.</t>
            </li>
            <li>
              <t>Shepherd feedback: Separate normative and informative references.</t>
            </li>
            <li>
              <t>Shepherd feedback: Update FIDO/WebAuthn references</t>
            </li>
          </ul>
          <t>
-09  </t>
          <ul spacing="normal">
            <li>
              <t>Affiliation change to allow publication to Datatracker.</t>
            </li>
            <li>
              <t>No content changes - re-published to avoid expiry while waiting on shepherd review.</t>
            </li>
          </ul>
          <t>
-08  </t>
          <ul spacing="normal">
            <li>
              <t>Editorial updates.</t>
            </li>
          </ul>
          <t>
-07  </t>
          <ul spacing="normal">
            <li>
              <t>Clarification of FIDO\WebAuthn section.</t>
            </li>
            <li>
              <t>Updated langugage in section on FIDO to allow for use of FIDO keys on consumption devices.</t>
            </li>
            <li>
              <t>Clarified origin of QR Code.</t>
            </li>
            <li>
              <t>Editorial updates</t>
            </li>
            <li>
              <t>Updated examples to be consistent.</t>
            </li>
            <li>
              <t>Made diagram description clearer.</t>
            </li>
            <li>
              <t>Added CTAP 2.2 Draft.</t>
            </li>
            <li>
              <t>Added additional guidance on geolocation inaccuracies.</t>
            </li>
            <li>
              <t>Added Roy Williams to acknowledgements</t>
            </li>
            <li>
              <t>Clarified that authorization servers can detect</t>
            </li>
            <li>
              <t>Consistent use of "smart TV"</t>
            </li>
            <li>
              <t>Fixed references</t>
            </li>
          </ul>
          <t>
-06  </t>
          <ul spacing="normal">
            <li>
              <t>Corrected typos.</t>
            </li>
          </ul>
          <t>
-05  </t>
          <ul spacing="normal">
            <li>
              <t>Added section to provide actionable guidance to implementers on how to use this document.</t>
            </li>
            <li>
              <t>Expanded section on formal analysis to include completed research projects.</t>
            </li>
            <li>
              <t>Added reference to OpenID for Verifiable Presentations.</t>
            </li>
          </ul>
          <t>
-04  </t>
          <ul spacing="normal">
            <li>
              <t>Corrected formatting issue that prevented history from showing correctly.</t>
            </li>
          </ul>
          <t>
-03  </t>
          <ul spacing="normal">
            <li>
              <t>Introduced normative SHOULD, RECOMMENDED and MAY when applied to actions the Authorization Server, Resource Server or Client may implement.</t>
            </li>
            <li>
              <t>Added User Education as a standalone mitigation.</t>
            </li>
            <li>
              <t>Added Maryam Mehrnezhad, Marco Pernpruner and Giada Sciarretta to the contributors list.</t>
            </li>
            <li>
              <t>Added Request Binding with Out-of-Band Data as an additional mitigation.</t>
            </li>
            <li>
              <t>Adopted the OpenID Foundation terminology from <xref target="CIBA"/> and changed Initiating Device to Consumption Device</t>
            </li>
            <li>
              <t>Added Fake Helpdesk and Consent Request Overload examples</t>
            </li>
            <li>
              <t>Replaced "Authenticated Flow" mitigation name with "Authenticate-then-Intitiate"</t>
            </li>
            <li>
              <t>Added Cross-Device Session Transfer pattern</t>
            </li>
          </ul>
          <t>
-02  </t>
          <ul spacing="normal">
            <li>
              <t>Fixed typos and grammar edits</t>
            </li>
            <li>
              <t>Capitalised Initiating Device and Authorization Device</t>
            </li>
            <li>
              <t>Introduced Cross-Device Consent Phishing as a label for the types of attacks described in this document.</t>
            </li>
            <li>
              <t>Updated labels for different types of flows (User-Transferred Session Data Pattern, Backchannel-Transferred Session Pattern, User-Transferred Authorization Data Pattern)</t>
            </li>
            <li>
              <t>Adopted consistent use of hyphenation in using "cross-device"</t>
            </li>
            <li>
              <t>Consistent use of "Authorization Device"</t>
            </li>
            <li>
              <t>Update Reference to Secure Signals Framework to reflect name change from Secure Signals and Events</t>
            </li>
            <li>
              <t>Described difference between proximity enforced and proximity-less cross-device flows</t>
            </li>
            <li>
              <t>General editorial pass</t>
            </li>
          </ul>
          <t>
-01  </t>
          <ul spacing="normal">
            <li>
              <t>Added additional diagrams and descriptions to distinguish between different cross-device flow patterns.</t>
            </li>
            <li>
              <t>Added short description on limitations of each mitigation.</t>
            </li>
            <li>
              <t>Added acknowledgement of additional contributors.</t>
            </li>
            <li>
              <t>Fixed document history format.</t>
            </li>
          </ul>
          <t>
-00 (Working Group Draft)  </t>
          <ul spacing="normal">
            <li>
              <t>Initial WG revision (content unchanged from draft-kasselman-cross-device-security-03)</t>
            </li>
          </ul>
          <t>
-03 draft-kasselman-cross-device-security  </t>
          <ul spacing="normal">
            <li>
              <t>Minor edits and typos</t>
            </li>
          </ul>
          <t>
-02 draft-kasselman-cross-device-security  </t>
          <ul spacing="normal">
            <li>
              <t>Minor edits and typos</t>
            </li>
            <li>
              <t>Upload as draft-ietf-oauth-cross-device-security-best-practice-02</t>
            </li>
          </ul>
          <t>
-01 draft-kasselman-cross-device-security  </t>
          <ul spacing="normal">
            <li>
              <t>Updated draft based on feedback from version circulated to OAuth working group</t>
            </li>
            <li>
              <t>Upload as draft-ietf-oauth-cross-device-security-best-practice-01</t>
            </li>
          </ul>
          <t>
-00 draft-kasselman-cross-device-security  </t>
          <ul spacing="normal">
            <li>
              <t>Initial draft adopted from document circulated to the OAuth Security Workshop Slack Channel</t>
            </li>
            <li>
              <t>Upload as draft-ietf-oauth-cross-device-security-best-practice-00</t>
            </li>
          </ul>
        </li>
      </ul>
    </section>
  </back>
  <!-- ##markdown-source:
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
S3H+gnr4RBPbWvsvEIqBJm4dAgA=

-->

</rfc>
