mirror of
https://github.com/moparisthebest/xeps
synced 2024-11-10 19:35:08 -05:00
0f6f0ad9eb
Zash reached out to me to ask if extensible IBR could be made compatible with XEP-0401: Easy User Onboarding. While working on a solution to this I decided it would also be nice if it could also allow the user to pick between several flows (eg. "Verify by Phone" vs "Verify by SMS"). After working this up I came to realize that the current version of the spec could not be used to replace XEP-0077 as it is used by XEP-0045 and other XEPs because I wasn't using routeable stanzas that could be sent to components and had no way to discover support other than during stream feature negotation. This patch set turned into an overhaul of the proposal to fix all these problems and move the spec back out of experimental.
460 lines
18 KiB
XML
460 lines
18 KiB
XML
<?xml version='1.0' encoding='UTF-8'?>
|
|
<!DOCTYPE xep SYSTEM 'xep.dtd' [
|
|
<!ENTITY % ents SYSTEM 'xep.ent'>
|
|
%ents;
|
|
<!ENTITY bcp47 "<span class='ref'><link url='http://tools.ietf.org/html/bcp47'>BCP 47</link></span> <note>BCP 47: Tags for Identifying Languages <<link url='http://tools.ietf.org/html/bcp47'>http://tools.ietf.org/html/bcp47</link>>.</note>" >
|
|
]>
|
|
<?xml-stylesheet type='text/xsl' href='xep.xsl'?>
|
|
<xep>
|
|
<header>
|
|
<title>Extensible In-Band Registration</title>
|
|
<abstract>
|
|
This specification defines an XMPP protocol extension for in-band
|
|
registration with instant messaging servers and other services with which an
|
|
XMPP entity may initiate a stream.
|
|
It aims to improve upon the state of the art and replace XEP-0077: In-Band
|
|
Registration by allowing multi-factor registration mechanisms, and account
|
|
recovery.
|
|
</abstract>
|
|
&LEGALNOTICE;
|
|
<number>0389</number>
|
|
<status>Experimental</status>
|
|
<type>Standards Track</type>
|
|
<sig>Standards</sig>
|
|
<approver>Council</approver>
|
|
<dependencies>
|
|
<spec>XMPP Core</spec>
|
|
</dependencies>
|
|
<supersedes>
|
|
<spec>XEP-0077</spec>
|
|
</supersedes>
|
|
<supersededby/>
|
|
<shortname>ibr2</shortname>
|
|
&sam;
|
|
<revision>
|
|
<version>0.3.0</version>
|
|
<date>2020-04-19</date>
|
|
<initials>ssw</initials>
|
|
<remark>
|
|
<ul>
|
|
<li>Move back to experimental.</li>
|
|
<li>Add IQ variant of registration/recovery.</li>
|
|
<li>Allow client to select between multiple flows.</li>
|
|
</ul>
|
|
</remark>
|
|
</revision>
|
|
<revision>
|
|
<version>0.2.0</version>
|
|
<date>2018-10-01</date>
|
|
<initials>XEP Editor (jsc)</initials>
|
|
<remark>Defer due to lack of activity.</remark>
|
|
</revision>
|
|
<revision>
|
|
<version>0.1.0</version>
|
|
<date>2017-03-16</date>
|
|
<initials>XEP Editor (ssw)</initials>
|
|
<remark>
|
|
Move to experimental.
|
|
</remark>
|
|
</revision>
|
|
<revision>
|
|
<version>0.0.2</version>
|
|
<date>2017-02-15</date>
|
|
<initials>ssw</initials>
|
|
<remark>
|
|
<ul>
|
|
<li>Don't allow feature to act as auth.</li>
|
|
<li>Use a more conventional list for challenge type listings.</li>
|
|
</ul>
|
|
</remark>
|
|
</revision>
|
|
<revision>
|
|
<version>0.0.1</version>
|
|
<date>2017-02-08</date>
|
|
<initials>ssw</initials>
|
|
<remark><p>First draft.</p></remark>
|
|
</revision>
|
|
</header>
|
|
<section1 topic='Introduction' anchor='intro'>
|
|
<p>
|
|
Historically, registering with an XMPP service has been difficult.
|
|
Each server either used customized out-of-band registration mechanisms such
|
|
as web forms which were difficult to discover, or they used &xep0077; which
|
|
could easily be abused by spammers to register large numbers of accounts and
|
|
which allowed for only limited extensibility.
|
|
</p>
|
|
<p>
|
|
To solve these issues this specification provides a new in-band registration
|
|
protocol that allows servers to present the user with a series of
|
|
"challenges".
|
|
This allows for both multi-stage proof-of-posession registration flows and
|
|
spam prevention mechanisms such as proof-of-work functions.
|
|
</p>
|
|
</section1>
|
|
<section1 topic='Requirements' anchor='reqs'>
|
|
<ul>
|
|
<li>
|
|
The server MUST be able to present multiple challenges to the client.
|
|
</li>
|
|
<li>
|
|
The server SHOULD be able reduce account registration spam.
|
|
</li>
|
|
<li>
|
|
The server MAY present a challenge that requires the user to complete a
|
|
step out-of-band.
|
|
</li>
|
|
<li>
|
|
A client SHOULD be able to register an account without requiring the user
|
|
to leave the client.
|
|
</li>
|
|
<li>
|
|
A client MUST be able to use the same mechanism to register an account and
|
|
to recover a forgotten password (subject to server policy).
|
|
</li>
|
|
<li>
|
|
A client MUST be able to register with a server as well as external
|
|
components.
|
|
</li>
|
|
</ul>
|
|
</section1>
|
|
<section1 topic='Use Cases' anchor='usecases'>
|
|
<ul>
|
|
<li>
|
|
As a server operator, I want to prevent individual spammers from
|
|
registering many accounts so I require registrants to perform a
|
|
proof-of-work function before registration is completed.
|
|
</li>
|
|
<li>
|
|
As a server operator I want to prevent bots from registering accounts so I
|
|
require that registrants submit a form which requires user interaction.
|
|
</li>
|
|
<li>
|
|
As a user I do not want to lose access to my account if I forget my
|
|
password, so I provide my email and telephone number in response to the
|
|
servers data form.
|
|
</li>
|
|
<li>
|
|
As a server operator I do not want users to accidentally add an incorrect
|
|
recovery address so I send an email with a unique link to the indicated
|
|
account and require that they click the link before registration can
|
|
continue.
|
|
</li>
|
|
<li>
|
|
As a server operator I want to prevent SPIM using a proof-of-posession
|
|
protocol so I present the user with a form asking for a mobile phone
|
|
number and then send a verification code to that number via SMS and show
|
|
another form requesting the verification code.
|
|
</li>
|
|
</ul>
|
|
</section1>
|
|
<section1 topic='Discovering Support' anchor='disco'>
|
|
<section2 topic='Stream Feature'>
|
|
<p>
|
|
If a server supports registering for or recovering an account using
|
|
Extensible IBR, it MUST inform the connecting client when returning stream
|
|
features during the stream negotiation process.
|
|
This is done by including a <register/> element, qualified by the
|
|
'urn:xmpp:register:0' namespace for account registration, or a
|
|
<recovery/> element qualified by the same namespace for account
|
|
recovery.
|
|
The register and recovery features are always voluntary-to-negotiate.
|
|
The registration and recovery features MUST NOT be advertised before
|
|
encryption has been negotiated, eg. using direct TLS or opportunistic TLS.
|
|
They SHOULD be advertised at the same time as the SASL authentication
|
|
feature, meaning that after registration or recovery is completed SASL
|
|
authentication can proceed.
|
|
</p>
|
|
<p>
|
|
For recovery or registration, the server MUST include a list of all
|
|
challenge types which the client may receive during the course of
|
|
registering or recovering an account.
|
|
These are grouped into "flows" and let the client pick a registration
|
|
workflow that only contains challenges which the client supports.
|
|
Each <flow/> element MUST have a unique "id" attribute which is used
|
|
by the client to identify the flow being selected.
|
|
They must also have at least one <name/> element containing a short,
|
|
human readable description of the flow.
|
|
If multiple <name/> elements are present they MUST have unique values
|
|
for the "xml:lang" attribute.
|
|
Clients MAY use the name element to show the different flows to the user and
|
|
ask them to pick between them.
|
|
Each flow must also contain a list of <challenge/> elements
|
|
representing the various challenges that must be completed to complete the
|
|
registration or recovery flow.
|
|
Each <challenge/> element contains a string that uniquely (within the
|
|
given parent element) identifies the type of challenge that will be offered.
|
|
If a flow would offer the same challenge twice (eg. two dataforms asking for
|
|
different data), the challenge SHOULD only be listed once in the flow
|
|
element.
|
|
</p>
|
|
<p>
|
|
For example, a server may advertise a "Verify with SMS" flow and a "Verify
|
|
by Phone Call" flow that both show a dataform asking for a phone number
|
|
and then a second dataform asking for a token provided to the user in a
|
|
text message or phone call depending on which flow the user selects.
|
|
</p>
|
|
<example caption="Host Advertises Stream Features"><![CDATA[
|
|
<stream:features>
|
|
<mechanisms xmlns='urn:xmpp:sasl:0'>
|
|
<mechanism>EXTERNAL</mechanism>
|
|
<mechanism>SCRAM-SHA-1-PLUS</mechanism>
|
|
<mechanism>SCRAM-SHA-1</mechanism>
|
|
<mechanism>PLAIN</mechanism>
|
|
</mechanisms>
|
|
<register xmlns='urn:xmpp:register:0'>
|
|
<flow id="0">
|
|
<name>Verify with SMS</name>
|
|
<challenge>jabber:x:data</challenge>
|
|
</flow>
|
|
<flow id="1">
|
|
<name>Verify by Phone Call</name>
|
|
<challenge>jabber:x:data</challenge>
|
|
</flow>
|
|
<flow id="2">
|
|
<name>Verify with the web</name>
|
|
<challenge>jabber:x:data</challenge>
|
|
<challenge>jabber:x:oob</challenge>
|
|
</flow>
|
|
</register>
|
|
<recovery xmlns='urn:xmpp:register:0'>
|
|
<flow id="0">
|
|
<name>Visit Password Recovery Site</name>
|
|
<challenge>jabber:x:oob</challenge>
|
|
</flow>
|
|
</recovery>
|
|
</stream:features>]]></example>
|
|
</section2>
|
|
<section2 topic='Service Discovery'>
|
|
<p>
|
|
Clients, servers, and other services such as components that support
|
|
Extensible IBR after stream negotiation is complete MUST advertise the
|
|
fact by including a feature of "urn::xmpp:register:0" in response to
|
|
&xep0030; information requests and in their &xep0115; profiles.
|
|
</p>
|
|
<example caption='Disco response'><![CDATA[
|
|
<feature var='urn:xmpp:register:0' />]]></example>
|
|
</section2>
|
|
</section1>
|
|
<section1 topic='Challenges' anchor='challenge'>
|
|
<p>
|
|
A client selects the registration or recovery feature for negotiation by
|
|
replying with an element of the same name and namespace.
|
|
The element MUST contain a <flow> element that MUST have an "id"
|
|
attribute matching one of the flows advertised by the server.
|
|
For example, to select the "Verify by Phone Call" registration flow from
|
|
the previous example, the client would reply with:
|
|
</p>
|
|
<example caption="Client selects a recovery flow"><![CDATA[
|
|
<register xmlns='urn:xmpp:register:0'>
|
|
<flow id="1"/>
|
|
</register>]]></example>
|
|
<p>
|
|
If the client is initiating registration or recovery after a stream has
|
|
already been initiated it uses the same registration element wrapped in an
|
|
IQ of type "set".
|
|
</p>
|
|
<example caption="Client selects a recovery flow after stream negotiation"><![CDATA[
|
|
<iq type="set" id="foo">
|
|
<recovery xmlns='urn:xmpp:register:0'>
|
|
<flow id="0"/>
|
|
</recovery>
|
|
</iq>]]></example>
|
|
<p>
|
|
The server then replies to the IQ or feature selection with a challenge.
|
|
If replying to an IQ, the challenge must be wrapped in an IQ of type
|
|
"result".
|
|
Challenges take the form of a <challenge/> element qualified by the
|
|
'urn:xmpp:register:0' namespace with a 'type' attribute containing the
|
|
challenge type and containing a challenge data payload.
|
|
</p>
|
|
<p>
|
|
Type type of a challenge is a value which identifes what sort of payload a
|
|
client might expect.
|
|
This document defines a type of 'jabber:x:data' which MUST always contain a
|
|
data form (an 'x' element with type 'form') as defined by &xep0004;.
|
|
Other types may be defined in the future.
|
|
For example, a challenge containing a data form might look like the
|
|
following:
|
|
</p>
|
|
<example caption='Host Returns Registration Form to Entity'><![CDATA[
|
|
<challenge xmlns='urn:xmpp:register:0'
|
|
type='jabber:x:data'>
|
|
<x xmlns='jabber:x:data' type='form'>
|
|
<title>Chat Registration</title>
|
|
<instructions>
|
|
Please provide the following information
|
|
to sign up to view our chat rooms!
|
|
</instructions>
|
|
<field type='hidden' var='FORM_TYPE'>
|
|
<value>urn:xmpp:register:0</value>
|
|
</field>
|
|
<field type='text-single' label='Given Name' var='first'/>
|
|
<field type='text-single' label='Family Name' var='last'/>
|
|
<field type='text-single' label='Nickname' var='nick'>
|
|
<required/>
|
|
</field>
|
|
<field type='text-single' label='Recovery Email Address' var='email'>
|
|
<required/>
|
|
</field>
|
|
</x>
|
|
</challenge>
|
|
]]></example>
|
|
<p>
|
|
After a challenge is received, the client replies to the challenge by
|
|
sending a <response/> element qualified by the 'urn:xmpp:register:0'
|
|
namespace or a cancelation as defined later in this document.
|
|
If the client sends a response, it MUST also include a payload defined by
|
|
the specific challenge type.
|
|
In the case of a jabber:x:data challenge, the payload should be a form
|
|
submission as defined by &xep0004; (an 'x' element of type 'submit').
|
|
For instance, to reply to the data form challenge from the previous example
|
|
a client might send:
|
|
</p>
|
|
<example caption='User Submits Registration Form'><![CDATA[
|
|
<response xmlns='urn:xmpp:register:0'>
|
|
<x xmlns='jabber:x:data' type='submit'>
|
|
<field type='hidden' var='FORM_TYPE'>
|
|
<value>urn:xmpp:register:0</value>
|
|
</field>
|
|
<field type='text-single' label='Given Name' var='first'>
|
|
<value>Juliet</value>
|
|
</field>
|
|
<field type='text-single' label='Family Name' var='last'>
|
|
<value>Capulet</value>
|
|
</field>
|
|
<field type='text-single' label='Nickname' var='nick'>
|
|
<value>Jule</value>
|
|
</field>
|
|
<field type='text-single' label='Recovery Email Address' var='email'>
|
|
<value>juliet@capulet.com</value>
|
|
</field>
|
|
</x>
|
|
</response>
|
|
]]></example>
|
|
</section1>
|
|
<section1 topic='Completing Registration or Recovery' anchor='completion'>
|
|
<p>
|
|
If after receiving a challenge or response a client or server does not wish
|
|
to continue registration or recovery, it may send an empty <cancel/>
|
|
element qualified by the 'urn:xmpp:register:0' namespace.
|
|
This informs the client or server that registration is complete.
|
|
This is the same as submitting a data form of type 'cancel' in response to a
|
|
data form challenge.
|
|
</p>
|
|
<example caption='User Cancels Registration or Recovery'><![CDATA[
|
|
<cancel xmlns='urn:xmpp:register:0'/>]]></example>
|
|
<p>
|
|
If the IQ based registration or recovery flow is being used and the server
|
|
wishes to cancel the flow, it MAY respond to any IQ from the client with the
|
|
cancel element and type "result".
|
|
</p>
|
|
<example caption='Server cancels rquest'><![CDATA[
|
|
<iq type="result" id="bar">
|
|
<cancel xmlns='urn:xmpp:register:0'/>
|
|
</iq>]]></example>
|
|
<p>
|
|
If the client successfully completes all required challenges during stream
|
|
negotiation the server MUST return an empty <success/> element
|
|
qualified by the 'urn:xmpp:register:0' namespace, at which point it may
|
|
continue with the stream negotiation process.
|
|
If the server needs more information, for example, in the previous challenge
|
|
the user entered an email and now the server wishes to ask for a code that
|
|
was sent to that email, the server MAY send another challenge.
|
|
</p>
|
|
<example caption='Server indicates success during steam negotiation'><![CDATA[
|
|
<success xmlns='urn:xmpp:register:0'/>]]></example>
|
|
<p>
|
|
If the IQ based flow is being used and the server wishes to indicate success
|
|
it sends an empty IQ response of type "result".
|
|
</p>
|
|
<example caption='Server indicates success after stream negotation'><![CDATA[
|
|
<iq type="result" id="bar" />]]></example>
|
|
</section1>
|
|
<section1 topic='Internationalization Considerations' anchor='i18n'>
|
|
<p>
|
|
When providing instructions in a data form, or in the name element of a
|
|
registration or recovery flow, the server SHOULD use the language specified
|
|
in the XML stream's current xml:lang, or the closest language for which the
|
|
server has a translation (eg. based on mutual intelligibility between
|
|
scripts and languages).
|
|
</p>
|
|
<p>
|
|
For more information about language tags and matching, see &bcp47;.
|
|
</p>
|
|
</section1>
|
|
<section1 topic='Security Considerations' anchor='security'>
|
|
<p>
|
|
Servers that allow in-band registration need to take measures to prevent
|
|
abuse.
|
|
Common techniques to prevent spam registrations include displaying CAPTCHAs
|
|
or requiring proof-of-posession of a valid email address or telephone number
|
|
by sending a unique code (e.g. an HMAC that can later be verified as having
|
|
originated at the server) to the users email and requiring that they enter
|
|
the code before continuing.
|
|
Servers that do not take such measures risk being black listed by other
|
|
servers in the network.
|
|
</p>
|
|
</section1>
|
|
<section1 topic='IANA Considerations' anchor='iana'>
|
|
<p>This document requires no interaction with &IANA;.</p>
|
|
</section1>
|
|
<section1 topic='XMPP Registrar Considerations' anchor='registrar'>
|
|
<section2 topic='Protocol Namespaces' anchor='registrar-ns'>
|
|
<p>This specification defines the following XML namespace:</p>
|
|
<ul>
|
|
<li>urn:xmpp:register:0</li>
|
|
</ul>
|
|
<p>
|
|
Upon advancement of this specification from a status of Experimental to a
|
|
status of Draft, the ®ISTRAR; shall add the foregoing namespace to the
|
|
registry located at &STREAMFEATURES;, as described in Section 4 of
|
|
&xep0053;.
|
|
</p>
|
|
</section2>
|
|
<section2 topic='IBR Challenge Types Registry' anchor='registrar-challenges'>
|
|
<p>
|
|
The XMPP Registrar shall maintain a registry of IBR challenge types.
|
|
Challenge types defined within the XEP series MUST be registered with the
|
|
XMPP Registrar.
|
|
</p>
|
|
®PROCESS;
|
|
<code><![CDATA[
|
|
<challenge>
|
|
<name>The name of the challenge type.</name>
|
|
<desc>A natural-language summary of the challenge.</desc>
|
|
<payloaddoc>
|
|
The document in which the IBR challenge payload is specified.
|
|
</payloaddoc>
|
|
<doc>
|
|
The doucment in which the IBR challenge itself is specified (may be the same
|
|
as <payloaddoc/>).
|
|
</doc>
|
|
</challenge>]]></code>
|
|
<p>
|
|
For an example registration, see the next section.
|
|
</p>
|
|
</section2>
|
|
<section2 topic='Challenge Types' anchor='registrar-ibrchallenges'>
|
|
<p>This specification defines the following IBR challenge types:</p>
|
|
<ul>
|
|
<li>jabber:x:data</li>
|
|
</ul>
|
|
<p>
|
|
Upon advancement of this specification from a status of Experimental to a
|
|
status of Draft, the ®ISTRAR; shall add the following definition to the
|
|
IBR challenge types registry, as described in this document:
|
|
</p>
|
|
<code><![CDATA[
|
|
<challenge>
|
|
<name>Data Forms Challenge</name>
|
|
<desc>Requests that the client fill out an XEP-0004 data form.</desc>
|
|
<payloaddoc>XEP-0004</payloaddoc>
|
|
<doc>TODO: Insert this document once it is assigned a number</doc>
|
|
</profile>]]></code>
|
|
</section2>
|
|
<section2 topic='Namespace Versioning' anchor='registrar-versioning'>
|
|
&NSVER;
|
|
</section2>
|
|
</section1>
|
|
</xep>
|