<?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.29 (Ruby 3.4.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-oauth-cross-device-security-10" category="bcp" consensus="true" submissionType="IETF" xml:lang="en" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.1 -->
  <front>
    <title abbrev="CDFS">Cross-Device Flows: Security Best Current Practice</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-oauth-cross-device-security-10"/>
    <author initials="P." surname="Kasselmann" fullname="Pieter Kasselmann">
      <organization>SPIRL</organization>
      <address>
        <email>pieter@spirl.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="2025" month="June" day="17"/>
    <area>sec</area>
    <workgroup>oauth</workgroup>
    <keyword>security</keyword>
    <keyword>oauth2</keyword>
    <keyword>best current practice</keyword>
    <abstract>
      <?line 315?>

<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 324?>

<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 unauthorized 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 distinguished between cases where the cross-device flow is used to authorize access to a resource (cross-device authorization flows) and 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 is 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 to gain unauthorized access to the user's data. Several publications
have emerged in the public domain (<xref target="Exploit1"/>, <xref target="Exploit2"/>, <xref target="Exploit3"/>, <xref target="Exploit4"/>,
<xref target="Exploit5"/>, <xref target="Exploit6"/>), 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 artefacts that allow them to setup 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 to defend against Cross-Device Consent Phishing and Cross-Device Session Phishing attacks. This guidance includes:</t>
        <ol spacing="normal" type="1"><li>
            <t>Practical mitigations for susceptible protocols ((#practical-mitigations)).</t>
          </li>
          <li>
            <t>Protocol selection guidance to avoid using susceptible protocols ((#protocol-selection)).</t>
          </li>
          <li>
            <t>Results from formal analysis of susceptible protocols ((#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>
      </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 protools against Cross-Device Consent Phishing and Cross-Device Session Phishing attacks that the OAuth working group considers best practices at the time of writing.</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 (#protocol-selection) for protocol selection.</t>
        </li>
        <li>
          <t>Implementers MUST implement practical mitigations as listed in (#practical-mitigations) that are appropriate for the use case, architecture, and selected protocols.</t>
        </li>
        <li>
          <t>Implementers SHOULD implement proximity checks as defined in (#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>(#cross-device-flow-patterns) provides details about susceptible protocols and (#cross-device-flow-exploits) provides attack descriptions. (#practical-mitigations) provides details about the security mechanisms and mitigations, (protocol-selection) provides protocol selection guidance and (#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 allow a user to start a flow on one device (e.g., a smart TV) and then transfer the session to continue it on a second device (e.g., a mobile phone). The second device may be used to access the service that was running on the first device, or to perform an action such as authenticating or granting authorization before potentially passing control back to the first device.</t>
      <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="cross-device-authorization-1">
        <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 to 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 follow 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 Authentication 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 Authentication Device (e.g., mobile phone) that they enter on Consumption Device.</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. The figure below shows a typical example of this flow:</t>
          <artwork type="ascii-art"><![CDATA[
                              (B) Consumption Device
             +--------------+     Get QR/User Code  +---------------+
(A)User  +---|  Consumption |<--------------------->|               |
   Start |   |   Device     |(E) Grant Authorization| Authorization |
   Flow  +-->|              |<--------------------->|     Server    |
             +--------------+                       |               |
                    |                               |               |
                    | (C) Scan QR code              |               |
                    |         or                    |               |
                    |   enter User Code             |               |
                    v                               |               |
             +--------------+                       |               |
             | Authorization|                       |               |
             |    Device    |<--------------------->|               |
             |              |(D) User Authenticates |               |
             |              | and Authorize Access  |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure: Cross-Device Flows: 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 retrieves a QR code or user code from an Authorization Server.</t>
            </li>
            <li>
              <t>(C) The QR code or user code is displayed on the Consumption Device where the user scans the QR code
or enters the user code on the Authorization Device.</t>
            </li>
            <li>
              <t>(D) If the user is unauthenticated, they authenticate to the Authorization Server before granting authorization.</t>
            </li>
            <li>
              <t>(E) The Authorization Server issues tokens or grants authorization 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. The figure below shows an example of this flow.</t>
          <artwork type="ascii-art"><![CDATA[
                              (B) Backchannel Authorization
             +--------------+     Request           +---------------+
(A)User  +---|  Consumption |<--------------------->|               |
   Start |   |   Device     |(E) Grant Authorization| Authorization |
   Flow  +-->|              |<--------------------->|     Server    |
             +--------------+                       |               |
                                                    |               |
                                                    |               |
                                                    |               |
                                                    |               |
(D)User                                             |               |
  Authorize  +--------------+                       |               |
  Action +---| Authorization|                       |               |
         |   |    Device    |<--------------------->|               |
         +-->|              |(C) Request User       |               |
             |              |    Authorization      |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure: Cross-Device Flows: 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.</t>
            </li>
            <li>
              <t>(C) The Authorization Server requests the authorization from the user on the user's Authorization Device.</t>
            </li>
            <li>
              <t>(D) If the user is unauthenticated, they authenticate to the Authorization Server before using their device to grant authorization.</t>
            </li>
            <li>
              <t>(E) The Authorization Server issues tokens or grants authorization 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. The figure below shows an example of this flow.</t>
          <artwork type="ascii-art"><![CDATA[
                              (B) Backchannel Authorization
             +--------------+     Request           +---------------+
(A)User  +---|  Consumption |<--------------------->|               |
   Start |   |   Device     |(E) Grant Authorization| Authorization |
   Flow  +-->|              |<--------------------->|     Server    |
             +--------------+                       |               |
                    ^                               |               |
                    | (D)User Enters                |               |
                    |    Authorization Data         |               |
                    |                               |               |
                    |                               |               |
             +--------------+                       |               |
             | Authorization|                       |               |
             |    Device    |<--------------------->|               |
             |              |(C) Send Authorization |               |
             |              |    Data               |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure: Cross-Device Flow: 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 enters the authorization data (e.g., the 6 digit authorization code) on the Consumption Device.</t>
            </li>
            <li>
              <t>(E) The Authorization Server issues tokens or grants authorization to the Consumption Device to access the user's resources.</t>
            </li>
          </ul>
          <t>The Authorization Server may choose to authenticate the user before sending the authorization data.</t>
        </section>
      </section>
      <section anchor="cross-device-session-transfer-1">
        <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. The figure below shows a typical flow.</t>
          <artwork type="ascii-art"><![CDATA[
                              (B) Session Transfer
             +--------------+     Request           +---------------+
(A)User  +---| Authorization|---------------------->|               |
   Start |   |   Device     |(C) Session Transfer   |               |
   Flow  |   |              |    Code               | Authorization |
         +-->|              |<----------------------|     Server    |
             +--------------+                       |               |
                    |                               |               |
                    | (D) Scan QR code              |               |
                    |      or enter                 |               |
                    | Session Transfer Code         |               |
                    |                               |               |
                    v         (E) Present Session   |               |
             +--------------+     Transfer Code     |               |
             | Consumption  |---------------------->|               |
(G)User  +---|    Device    |                       |               |
Resumes  |   |              | (F) Return Session    |               |
Session  |   |              |     Context           |               |
         +-->|              |<----------------------|               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure: Cross-Device Flows: 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 client on the Authorization Device requests a session transfer code from the Authorization Server.</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 scans the QR code with the Consumption Device (e.g., their mobile phone), or enters the session transfer code on the target Consumption Device.</t>
            </li>
            <li>
              <t>(E) The client on the Consumption Device presents the session transfer code to the Authorization Server.</t>
            </li>
            <li>
              <t>(F) The Authorization Server verifies the session transfer code and retrieves the session context information needed to resume the session on the Consumption Device.</t>
            </li>
            <li>
              <t>(G) The user resumes the session and is able to access the information on the Consumption Device that they authorized on the Authorization Device.</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="examples-of-cross-device-flows">
        <name>Examples of Cross-Device Flows</name>
        <t>Examples of cross-device flow scenarios include:</t>
        <section anchor="example-a1-authorize-access-to-a-video-streaming-service-user-transferred-session-data-pattern">
          <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.</t>
        </section>
        <section anchor="example-a2-authorize-access-to-productivity-services-user-transferred-session-data-pattern">
          <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.</t>
        </section>
        <section anchor="example-a3-authorize-use-of-a-bike-sharing-scheme-user-transferred-session-data-pattern">
          <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 bicylce 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.</t>
        </section>
        <section anchor="example-a4-authorize-a-financial-transaction-backchannel-transferred-session-pattern">
          <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.</t>
        </section>
        <section anchor="example-a5">
          <name>Example A5: Add a Device to a Network (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.</t>
        </section>
        <section anchor="example-a6-remote-onboarding-user-transferred-session-data-pattern">
          <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.</t>
        </section>
        <section anchor="example-a7">
          <name>Example A7: Application Bootstrap (Session Transfer Pattern)</name>
          <t>An employee is signed into 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 into the application on the mobile phone.</t>
        </section>
        <section anchor="example-a8-access-a-productivity-application-user-transferred-authorization-data-pattern">
          <name>Example A8: Access a Productivity Application (User-Transferred Authorization Data Pattern)</name>
          <t>A user is accessing a Computer Aid 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.</t>
        </section>
        <section anchor="example-a9-administer-a-system-backchannel-transferred-session-pattern">
          <name>Example A9: Administer a System (Backchannel-Transferred Session Pattern)</name>
          <t>A network administrator wants to access an adminstration 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.</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 typicaly 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 Cross-Device Consent Phishing (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 posession of this session transfer code, they present it to the Authorization Server to transfer the session and access the users resources. These attacks are referred to as Cross-Device Session Phishing (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 Cross-Device Consent Phishing (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 users resources. The figure below shows an example of such an attack.</t>
          <artwork type="ascii-art"><![CDATA[
                           (B) Consumption Device
           +--------------+     Get QR/User Code  +---------------+
           |  Attacker's  |<--------------------->|               |
           |  Consumption |(G) Grant Authorization| Authorization |
           |   Device     |<--------------------->|     Server    |
           +--------------+                       |               |
             ^   | (C) Attacker Copy              |               |
(A) Attacker |   |     QR or User Code            |               |
    Start    |   |                                |               |
    Flow     |   V                                |               |
           +--------------+                       |               |
           |              |                       |               |
           |   Attacker   |                       |               |
           |              | (D) Attacker Change   |               |
           |              |     QR Code/User Code |               |
           |              |     Context           |               |
           +--------------+                       |               |
                  | (E) User is convinced by the  |               |
                  |     attacker and scans QR code|               |
                  |     or enters User Code       |               |
                  v                               |               |
           +--------------+                       |               |
           |   End User   |                       |               |
           | Authorization|                       |               |
           |    Device    |<--------------------->|               |
           |              |(F) User Authenticates |               |
           |              | and Authorize Access  |               |
           +--------------+                       +---------------+
]]></artwork>
          <t>Figure: Cross-Device Consent Phishing: User-Transferred Session Data Pattern Exploits</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 retrieves a QR code or user code from an Authorization Server.</t>
            </li>
            <li>
              <t>(C) The attacker copies the QR code or user code.</t>
            </li>
            <li>
              <t>(D) 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>(E) 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>(F) The user authenticates to the Authorization Server before granting authorization.</t>
            </li>
            <li>
              <t>(G) 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) which may be used in future exploits.</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 granting 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. The figure below shows an example of such an attack.</t>
          <artwork type="ascii-art"><![CDATA[
                              (C) Backchannel Authorization
             +--------------+     Request           +---------------+
             |  Attacker's  |<--------------------->|               |
             |  Consumption |(F) Grant Authorization| Authorization |
             |  Device      |<--------------------->|     Server    |
             +--------------+                       |               |
               ^                                    |               |
  (B) Attacker |                                    |               |
      Starts   |                                    |               |
      Flow     |                                    |               |
             +--------------+                       |               |
             |              |                       |               |
             |   Attacker   |                       |               |
             |              |                       |               |
             |              |                       |               |
             |              |                       |               |
             +--------------+                       |               |
                    |  (A) Attacker Sends           |               |
                    |       Social Engineering      |               |
                    |       Message to User         |               |
                    |                               |               |
(E)User             v                               |               |
  Authorize  +--------------+                       |               |
  Action +---| Authorization|                       |               |
         |   |    Device    |<--------------------->|               |
         +-->|              |(D) Request User       |               |
             |              |    Authorization      |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure: Cross-Device Consent Phishing: Backchannel-Transferred Session Pattern Exploits</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 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 requests the authorization from the user on the user's device.</t>
            </li>
            <li>
              <t>(E) The user authenticates to the authorization server before granting authorization on their device.</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 providing 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[
                              (C) Backchannel Authorization
             +--------------+     Request           +---------------+
             |  Attacker's  |<--------------------->|               |
             |  Consumption |(G) Grant Authorization| Authorization |
             |  Device      |<--------------------->|     Server    |
             +--------------+                       |               |
               ^       ^                            |               |
  (B) Attacker |       | (F) Attacker Forwards      |               |
      Starts   |       |     Authorization Data     |               |
      Flow     |       |                            |               |
             +--------------+                       |               |
             |              |                       |               |
             |   Attacker   |                       |               |
             |              |                       |               |
             |              |                       |               |
             |              |                       |               |
             +--------------+                       |               |
(A) Attacker    |       ^   (E) User                |               |
    Sends       |       |       Sends               |               |
    Social      |       |       Authorization Data  |               |
    Engineering |       |                           |               |
    Message     |       |                           |               |
                v       |                           |               |
             +--------------+                       |               |
             | Authorization|                       |               |
             |    Device    |<--------------------->|               |
             |              |(D) Send Authorization |               |
             |              |    Data               |               |
             +--------------+                       +---------------+
]]></artwork>
          <t>Figure: Cross-Device Consent Phishing: User-Transferred Authorization Data Pattern Exploits</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 user's Authorization Device (the authorization data may be presented as a QR code, or text message).</t>
            </li>
            <li>
              <t>(E) The user is convinced by the social engineering message received in step (A) and forwards the authorization data (e.g., a 6 digit authorization code) to the attacker.</t>
            </li>
            <li>
              <t>(F) The attacker enters the authorization data (e.g., a 6 digit authorization code) on the Consumption Device.</t>
            </li>
            <li>
              <t>(G) 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 where the 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. In these flows, the user is already authenticated and they request authorization data to transfer a session or obtain some other privilege such as joining a device to a network. The authorization data may be represented as a QR code or text string (e.g., 6 digit authorization code). The attacker then proceeds to exploit the unauthenticated channel by using social engineering techniques to convince the user to send the QR code or user code to the attacker. The attacker then use 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 Cross-Device Session Phishing (CDSP) attacks.</t>
        <artwork type="ascii-art"><![CDATA[
                              (C) Session Transfer
             +--------------+     Request           +---------------+
(B)User  +---| Authorization|---------------------->|               |
   Start |   |   Device     |(D) Session Transfer   |               |
   Flow  |   |              |    Code               | Authorization |
         +-->|              |<----------------------|     Server    |
             +--------------+                       |               |
(A)Attacker    ^          |                         |               |
   Sends Social|          | (E) User sends QR code  |               |
   Engineering |          |     or Session Transfer |               |
   Message     |          v     Code to Attacker    |               |
             +--------------+                       |               |
             |              |                       |               |
             |   Attacker   |                       |               |
             |              |                       |               |
             |              |                       |               |
             |              |                       |               |
             +--------------+                       |               |
(F)Attacker scans   |                               |               |
   QR code or enters|                               |               |
   Session Transfer |                               |               |
   Code             v         (G) Present Session   |               |
             +--------------+     Transfer Code     |               |
             |  Attacker's  |---------------------->|               |
(I)      +---|  Consumption |                       |               |
 Attacker|   |    Device    | (H) Return Session    |               |
 Resumes |   |              |     Context           |               |
 Session +-->|              |<----------------------|               |
             +--------------+                       +---------------+
]]></artwork>
        <t>Figure: Cross-Device Flows: Session Transfer Pattern Exploit</t>
        <ul spacing="normal">
          <li>
            <t>(A) The attacker sends a social engineering message to 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 receive it.</t>
          </li>
          <li>
            <t>(B) The user is authenticated on their Authorization Device and authorizes 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 sends the QR code or session transfer code to the attacker, following the instructions they received in step (A).</t>
          </li>
          <li>
            <t>(F) Once the attacker receives the QR code, they scan it or enter it on their own Consumption Device.</t>
          </li>
          <li>
            <t>(G) The client on the Consumption Device presents the session transfer code to the Authorization Server.</t>
          </li>
          <li>
            <t>(H) The Authorization Server verifies the session transfer code and retrieves the session context information needed to resume the session on the Consumption Device.</t>
          </li>
          <li>
            <t>(I) 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="examples-of-cross-device-flow-exploits">
        <name>Examples of Cross-Device Flow Exploits</name>
        <t>The following examples illustrate these attacks in practical settings and 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 into granting 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>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-illicit-access-to-productivity-services-user-transferred-session-data-pattern">
          <name>Example B2: Illicit Access to Productivity Services (User-Transferred Session Data Pattern)</name>
          <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-illicit-access-to-physical-assets-user-transferred-session-data-pattern">
          <name>Example B3: Illicit Access to Physical Assets (User-Transferred Session Data Pattern)</name>
          <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.1: Illicit Transaction Authorization (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-b42-fake-helpdesk-backchannel-transferred-session-pattern">
          <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 anchor="example-b5">
          <name>Example B5: Illicit Network Join (Session Transfer Pattern Exploit)</name>
          <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-illicit-onboarding-user-transferred-session-data-pattern">
          <name>Example B6: Illicit Onboarding (User-Transferred Session Data Pattern)</name>
          <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 (Session Transfer Pattern Exploit)</name>
          <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-account-takeover-user-transferred-session-data-pattern">
          <name>Example B8: Account Takeover (User-Transferred Session Data Pattern)</name>
          <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-illicit-access-to-administration-capabilities-through-consent-request-overload-backchannel-transferred-session-pattern">
          <name>Example B9: Illicit Access to Administration Capabilities Through Consent Request Overload (Backchannel-Transferred Session Pattern)</name>
          <t>An attacker attempts to access an adminstration 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. 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" and 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 Cross-Device Consent Phishing 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 Cross-Device Consent Phishing 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 are applied whenever implementing a cross-device flow. Every mitigation provides an additional layer of security that makes it harder to initiate the attack, disrupts attacks in progress or reduces 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. There are a couple of ways to establish proximity:</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.</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"/>.</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.</t>
            </li>
            <li>
              <t>Geolocation: Proximity can be established by comparing geo-location 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 users 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.</t>
          <t>Note: There are scenarios that require that an authorization takes place in a different location than the one in which the transaction is authorized. 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 (or lack of proximity) may be an indicator of risk and the system may deploy additional controls (e.g., transaction value limits, transaction velocity limits) or use the proximity information as input to a risk management system.</t>
          <t><strong>Limitations:</strong> Proximity mechanisms make it harder to perform Cross-Device Consent Phishing (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.</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.</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, or incorrectly entering a code). 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="Exploit6"/>.</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.</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 small number of 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.</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 artefacts 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. This includes limiting cross-device flows to specific device types such as intractive 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><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.</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. By limiting protocol initiation to a specific network, the attacker needs to have access to a device on the network.</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.</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.</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 <xref target="example-b1"/>) or initiate a large number of authorization requests (see exploit <xref target="example-b4"/>) 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 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-posession, raise the bar for executing the attack and profiting from exfiltrating tokens. Although a software proof-of-posession key is better than no proof-of-posession 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 and provide out-of-band reinforcement to the user on the context and conditions under which an authorization grant may be requested. For example, if the service provider does not send e-mails with QR codes requesting users to grant authorization, this may be reinforced in marketing messages and anti-fraud awareness campaigns. The service provider MAY also choose to reinforce these user education messages through in-app experiences. In <xref target="PCRSM2023"/>, it is proposed to advise users to verify the trustworthiness of the source of a QR code, for instance by checking that the connection is protected through TLS or by verifying that the URL really 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>It SHOULD be clear to the user how to decline the 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. This prevents the attacker from obtaining a QR code or 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> 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 sophistacted 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 prevent the attacks from being initiated, disrupt attacks once they start or reduce the impact or remediate an attack if it succeeds. When combining one or more of these mitigations the overall security profile of a cross-device flow improves significantly. The following table provides a summary view 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>
          <t>#### Description
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 or made available on the Consumption Device (smart TV) and entered on a second device (e.g., a mobile phone).</t>
          <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 Cross-Device Consent Phishing attack (<xref target="Exploit1"/>, <xref target="Exploit2"/>, <xref target="Exploit3"/>, <xref target="Exploit4"/>, <xref target="Exploit5"/>, <xref target="Exploit6"/>).</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>
          <t>#### Description
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 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"/>.</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="fido2webauthn">
          <name>FIDO2/WebAuthn</name>
          <t>#### Description
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 into 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 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
(#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
(#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
analysed 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, (#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
Cross-Device Consent Phishing (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, (#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 (#user_education), (#request-verification) and
(#request-binding).</t>
          </li>
        </ul>
      </section>
    </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 Cross-Device Consent Phishing (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 and others (please let us know, if you've been mistakenly omitted) 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-specification-1_0-01.html">
          <front>
            <title>OpenID Continuous Access Evaluation Profile 1.0 - draft 01</title>
            <author initials="A." surname="Tulshibagwale" fullname="Atul Tulshibagwale">
              <organization>Google</organization>
            </author>
            <author initials="T." surname="Cappalli" fullname="Tim Cappalli">
              <organization>Microsoft</organization>
            </author>
            <date year="2021" month="June"/>
          </front>
        </reference>
        <reference anchor="SSF" target="https://openid.net/specs/openid-sse-framework-1_0-01.html">
          <front>
            <title>OpenID Shared Signals and Events Framework Specification 1.0</title>
            <author initials="A." surname="Tulshibagwale" fullname="Atul Tulshibagwale">
              <organization>Google</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>
            <date year="2021" month="June"/>
          </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-20250228/fido-client-to-authenticator-protocol-v2.2-ps-20250228.html">
          <front>
            <title>Client to Authenticator Protocol (CTAP)</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="February"/>
          </front>
        </reference>
        <reference anchor="IEEE802154" target="https://standards.ieee.org/standard/802_15_4-2020.html">
          <front>
            <title>IEEE Std 802.15.4-2020: IEEE Standard for Low-Rate Wireless Networks</title>
            <author>
              <organization>Institute of Electrical and Electronics Engineers</organization>
            </author>
            <date year="2020"/>
          </front>
          <seriesInfo name="{&quot;name&quot; =&gt; &quot;IEEE&quot;, &quot;value&quot; =&gt; &quot;802.15.4-2020&quot;}" value=""/>
        </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="Exploit1" 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="Exploit2" 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="Exploit3" 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="Exploit4" 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="Exploit5" 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="Exploit6" 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>
      </references>
    </references>
    <?line 1152?>

<section anchor="document-history">
      <name>Document History</name>
      <t>[[ To be removed from the final specification ]]</t>
      <t>-latest
   * Shepherd feedback: Describe unauthenticated channel.
   * Shepherd feedback: Seperate normative and informative references.
   * Shepherd feedback: Update FIDO/WebAuthn references</t>
      <artwork><![CDATA[
-09    * Affiliation change to allow publication to Datatracker.    * No content changes - re-published to avoid expiry while waiting on shepherd review.

-08    * Editorial updates.

-07
]]></artwork>
      <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>
    </section>
  </back>
  <!-- ##markdown-source:
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
8xz3L9UUvtDG7g/+f1dKnahfzAEA

-->

</rfc>
