<?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-rfc2629 version 1.5.26 (Ruby 2.6.8) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-dekok-radext-deprecating-radius-04" category="std" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.13.0 -->
  <front>
    <title abbrev="Deprecating RADIUS">Deprecating Insecure Practices in RADIUS</title>
    <seriesInfo name="Internet-Draft" value="draft-dekok-radext-deprecating-radius-04"/>
    <author initials="A." surname="DeKok" fullname="Alan DeKok">
      <organization>FreeRADIUS</organization>
      <address>
        <email>aland@freeradius.org</email>
      </address>
    </author>
    <date year="2023" month="September" day="27"/>
    <area>Internet</area>
    <workgroup>RADEXT Working Group</workgroup>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>RADIUS crypto-agility was first mandated as future work by RFC 6421.  The outcome of that work was the publication of RADIUS over TLS (RFC 6614) and RADIUS over DTLS (RFC 7360) as experimental documents.  Those transport protocols have been in wide-spread use for many years in a wide range of networks.  They have proven their utility as replacements for the previous UDP (RFC 2865) and TCP (RFC 6613) transports.  With that knowledge, the continued use of insecure transports for RADIUS has serious and negative implications for privacy and security.</t>
      <t>This document formally deprecates using the User Datagram Protocol (UDP) and of the Transmission Control Protocol (TCP) as transport protocols for RADIUS. These transports are permitted inside of secure networks, but their use in secure networks is still discouraged.  For all other environments, the use of secure transports such as IPsec or TLS is mandated.  We also discuss additional security issues with RADIUS deployments, and give recommendations for practices which increase security and privacy.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-dekok-radext-deprecating-radius/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        RADEXT Working Group mailing list (<eref target="mailto:radext@ietf.org"/>),
        which is archived at <eref target="https://mailarchive.ietf.org/arch/browse/radext/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/freeradius/deprecating-radius.git"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>The RADIUS protocol <xref target="RFC2865"/> was first standardized in 1997, though its roots go back much earlier to 1993.  The protocol uses MD5 <xref target="RFC1321"/> to sign some packets types, and to obfuscate certain attributes such as User-Password.  As originally designed, Access-Request packets were entirely unauthenticated, and could be trivially spoofed as discussed in <xref target="RFC3579"/> Section 4.3.2.  In order to prevent such spoofing, that specification defined the Message-Authenticator attribute (<xref target="RFC3579"/> Section 3.2) which allowed for packets to carry a signature based on HMAC-MD5.</t>
      <t>The state of MD5 security was discussed in <xref target="RFC6151"/>, which led to the state of RADIUS security being reviewed in <xref target="RFC6421"/> Section 3.  The outcome of that review was the remainder of <xref target="RFC6421"/>, which created crypto-agility requirements for RADIUS.</t>
      <t>RADIUS was historically secured with IPSec, as described in <xref target="RFC3579"/> Section 4.2:</t>
      <ul empty="true">
        <li>
          <t>To address the security vulnerabilities of RADIUS/EAP,
implementations of this specification SHOULD support IPsec
(RFC2401) along with IKE (RFC2409) for key management.  IPsec ESP
(RFC2406) with non-null transform SHOULD be supported, and IPsec
ESP with a non-null encryption transform and authentication
support SHOULD be used to provide per-packet confidentiality,
authentication, integrity and replay protection.  IKE SHOULD be
used for key management.</t>
        </li>
      </ul>
      <t>The use of IPSec allowed RADIUS to be sent privately, and securely, across the Internet.  However, experience showed that TLS was in many ways simpler for implementations and deployment than IPSec.  While IPSec required operating system support, TLS was an application-space library.  This difference, coupled with the wide-spread adoption of TLS for HTTPS ensures that it was often easier for applications to use TLS than IPSec.</t>
      <t>RADIUS/TLS <xref target="RFC6614"/> and RADIUS/DTLS <xref target="RFC7360"/> were then defined in order to meet the crypto-agility requirements of <xref target="RFC6421"/>.  RADIUS/TLS has been in wide-spread use for about a decade, including eduroam <xref target="EDUROAM"/>, and more recently OpenRoaming <xref target="OPENROAMING"/> and <xref target="I-D.tomas-openroaming"/>.  RADIUS/DTLS has seen less use across the public Internet, but it nonetheless has multiple implementations.</t>
      <t>As of the writing of this specification, RADIUS/UDP is still widely used, even though it depends on MD5 and "ad hoc" constructions for security.  While MD5 has been broken, it is a testament to the design of RADIUS that there have been (as yet) no attacks on RADIUS Authenticator signatures which are stronger than brute-force.</t>
      <t>However, the problems with MD5 means that if a someone can view unencrypted RADIUS traffic, even a hobbyist attacker can crack all possible RADIUS shared secrets of eight characters or less.  Such attacks can also result in compromise of all passwords carried in the User-Password attribute.</t>
      <t>Even if a stronger packet signature method was used as in <xref target="RFC6218"/>, it would not fully address the issues with RADIUS.  Most information in RADIUS is sent in clear-text, and only a few attributes are hidden via obfuscation methods which rely on more "ad hoc" MD5 constructions.  The privacy implications of this openness are severe.</t>
      <t>Any observer of non-TLS RADIUS traffic is able to obtain a substantial amount of personal identifiable information (PII) about users.  The observer can tell who is logging in to the network, what devices they are using, where they are logging in from, and their approximate location (usually city).  With location-based attributes as defined in <xref target="RFC5580"/>, a users location may be determined to within 15 or so meters outdoors, and with "meter-level accuracy indoors" <xref target="WIFILOC"/>.  An observer can also use RADIUS accounting packets to determine how long a user is online, and to track a summary of their total traffic (upload and download totals).</t>
      <t>When RADIUS/UDP is used across the public Internet, the location of individuals can potentially be tracked in real-time (usually 10 minute intervals), to within 15 meters.  Their devices can be identified, and tracked.  Any passwords they send via the User-Password attribute can be be compromised.  Even using CHAP-Password offers minimal protection, as the cost of cracking the underlying password is similar to the cost of cracking the shared secret.  MS-CHAP (<xref target="RFC2433"/> and <xref target="RFC2759"/>) is significantly worse for security, as it can be trivially cracked with minimal resources even if the shared secret is not known (<xref target="ms-chap"/>).</t>
      <t>The implications for security and individual safety are large, and negative.</t>
      <t>These issues are only partly mitigated when the authentication methods carried within RADIUS define their own processes for increased security and privacy.  For example, some authentication methods such EAP-TLS, EAP-TTLS, etc. allow for User-Name privacy and for more secure transport of passwords via the use of TLS.  The use of MAC address randomization can limit device information identification to a particular manufacturer, instead of to a unique device.</t>
      <t>However, these authentication methods are not always used, or are not always available.  Even if these methods were used ubiquitously, they do not protect all of the information which is publicly available over RADIUS/UDP or RADIUS/TCP transports.  And even when TLS-based EAP methods are used, implementations have historically often skipped certificate validation, leading to password compromise (<xref target="SPOOFING"/>).  In many cases, users were not even aware that the server certificate was incorrect or spoofed, which meant that there was no way for the user to detect that anything was wrong.  Their passwords were simply handed to a spoofed server, with little possibility for the user to take any action to stop it.</t>
      <t>It is no longer acceptable for RADIUS to rely on MD5 for security.  It is no longer acceptable to send device or location information in clear text across the wider INternet.  This document therefore deprecates insecure uses of RADIUS, and mandates the use of secure TLS-based transport layers.  We also discuss related security issues with RADIUS, and give many recommendations for practices which increase security and privacy.</t>
      <section anchor="simply-using-ipsec-or-tls-is-not-enough">
        <name>Simply using IPSec or TLS is not enough</name>
        <t>The use of a secure transport such as IPSec or TLS ensures complete privacy and security for all RADIUS traffic.  An observer is limited to knowing rough activity levels of a client or server.  That is, an observer can tell if there are a few users on a NAS, or many users on a NAS.  All other information is hidden from all observers.  However, it is not enough to say "use IPSec" and then move on to other issues.  There are many issues which can only be addressed via an informed approach.</t>
        <t>For example it is possible for an attacker to record the session traffic, and later crack the TLS session key or IPSec parameters.  This attack could comprise all traffic sent over that connection, including EAP session keys.  If the cryptographic methods provide forward secrecy (<xref target="RFC7525"/> Section 6.3), then breaking one session provides no information about other sessions.  As such, it is RECOMMENDED that all cryptographic methods used to secure RADIUS conversations provide forward secrecy.  While forward secrecy will not protect individual sessions from attack, it will prevent attack on one session from being leveraged to attack other, unrelated, sessions.</t>
        <t>AAA servers should minimize the impact of such attacks by using a total throughput (recommended) or time based limit before replacing the session keys.  The session keys can be replaced though a process of either rekeying the existing connection, or by opening a new connection and deprecating the use of the original connection.  Note that if the original connection if closed before a new connection is open, it can cause spurious errors in a proxy environment.</t>
        <t>The final attack possible in a AAA system is where one party in a AAA conversation is compromised or run by a malicious party.  This attack is made more likely by the extensive use of RADIUS proxy forwarding chains.  In that situation, every RADIUS proxy has full visibility into, and control over, the traffic it transports.  The solution here is to minimize the number of proxies involved, such as by using Dynamic Peer Discovery (<xref target="RFC7585"/>.</t>
        <t>There are many additional issues on top of simply adding a secure transport. The rest of this document addresses those issues in detail.</t>
      </section>
      <section anchor="overview">
        <name>Overview</name>
        <t>The rest of this document begins a summary of issues with RADIUS, and shows just how trivial it is to crack RADIUS/UDP security.  We then mandate the use of secure transport, and describe what that requirement means in practice.  We give recommendations on how current systems can be migrated to using TLS.  We give suggestions for increasing the security of existing RADIUS transports, including a discussion of the authentication protocols carried within RADIUS.  We conclude with privacy and security considerations.</t>
        <t>As IPSec has been discussed previously in the context of RADIUS, we do not discuss it in detail to it here, other than to say it is an acceptable solution for securing RADIUS traffic.  As the bulk of the current efforts are focused on TLS, this document likewise focuses on TLS.  However, all of the issues raised here about the RADIUS protocol also apply to IPSec transport.</t>
        <t>While this document tries to be comprehensive, it is necessarily imperfect.  There may be issues which should have been included, but which were missed due to oversight or accident.  Any reader should be aware that there are good practices which are perhaps not documented here, and bad behaviors which are likewise not forbidden.</t>
        <t>There is also a common tendency to suggest that a particular practice is "allowed" by a specification, simply because the specification does not forbid that practice.  This belief is wrong.  That is, a behavior which is not mentioned in the specification cannot honestly be said to be "permitted" or "allowed" by that specification.  Instead, the correct description for such behaviors is that they are not forbidden.  In many cases, documents such as <xref target="RFC5080"/> are written to both correct errors in earlier documents, and to address harmful behaviors have been seen in practice.</t>
        <t>By their very nature, documents include a small number of permitted, required, and/or forbidden behaviors.  There are a much larger set of behaviors which are undefined.  That is, behaviors which are neither permitted nor forbidden.  Those behaviors may be good or bad, independent of what the specification says.</t>
        <t>Outside of published specifications, there is also a large set of common practices and behaviors which have grown organically over time, but which have not been written into a specification.  These practices have been found to be valuable by implementers and administrators.  Deviations from these practices generally result in instabilities and incompatibilities between systems.  As a result, implementers should exercise caution when creating new behaviors which have not previously been seen in the industry.  Such behaviors are likely to be wrong.</t>
        <t>It is RECOMMENDED that implementations follow widely accepted practices which have been proven to work, even if those practices are not written down in a public specification.  Failure to follow common industry practices usually results in interoperability failures.</t>
      </section>
    </section>
    <section anchor="terminology">
      <name>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>
      <ul spacing="normal">
        <li>RADIUS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>The Remote Authentication Dial-In User Service protocol, as defined in <xref target="RFC2865"/>, <xref target="RFC2865"/>, and <xref target="RFC5176"/> among others.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/UDP</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over the User Datagram Protocol as define above.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/TCP</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over the Transport Control Protocol <xref target="RFC6613"/></t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/TLS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over the Transport Layer Security protocol <xref target="RFC6614"/></t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>RADIUS/DTLS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>RADIUS over the Datagram Transport Layer Security protocol  <xref target="RFC7360"/></t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>TLS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>the Transport Layer Security protocol.  Generally when we refer to TLS in this document, we are referring to RADIUS/TLS and/or RADIUS/DTLS.</t>
        </li>
      </ul>
      <ul spacing="normal">
        <li>NAS</li>
      </ul>
      <ul empty="true">
        <li>
          <t>Network Access Server, which is a RADIUS client.</t>
        </li>
      </ul>
    </section>
    <section anchor="overview-of-issues-with-radius">
      <name>Overview of issues with RADIUS</name>
      <t>There are a large number of issues with RADIUS.   The most serious is that RADIUS sends most information "in the clear", with obvious privacy implications.</t>
      <t>Further, MD5 has been broken for over a decade, as summarized in <xref target="RFC6151"/>.  For traffic sent across the Internet, no protocol should depend on MD5 for security.  Even if MD5 was not broken, computers have gotten substantially faster in the past thirty years.  This speed increase makes it possible for the average hobbyist to perform brute-force attacks to crack even seemingly complex shared secrets.</t>
      <t>We address each of these issues in detail below.</t>
      <section anchor="information-is-sent-in-clear-text">
        <name>Information is sent in Clear Text</name>
        <t>Other than a few attributes such as User-Password, all RADIUS traffic is sent "in the clear".  The resulting data exposure has a large number of privacy issues.  We refer to <xref target="RFC6973"/>, and specifically to Section 5 of that document for detailed discussion.  RADIUS/UDP and RADIUS/TCP are vulnerable to all of the issues raised by <xref target="RFC6973"/>.</t>
        <t>There are clear privacy and security information with sending user identifiers, and user locations <xref target="RFC5580"/> in clear-text across the Internet.  As such, the use of clear-text protocols across insecure networks is no longer acceptable.</t>
      </section>
      <section anchor="md5-has-been-broken">
        <name>MD5 has been broken</name>
        <t>Attacks on MD5 are summarized in part in <xref target="RFC6151"/>. While there have not been many new attacks in the decade since <xref target="RFC6151"/> was published, that does not mean that further attacks do not exist.  It is more likely that no one is looking for new attacks.</t>
        <t>It is reasonable to expect that new research can further break MD5, but also that such research may not be publicly available.</t>
      </section>
      <section anchor="complexity-of-cracking-radius-shared-secrets">
        <name>Complexity of cracking RADIUS shared secrets</name>
        <t>The cost of cracking a a shared secret can only go down over time as computation becomes cheaper.  The issue is made worse because of the way MD5 is used to sign RADIUS packets.  The attacker does not have to calculate the hash over the entire packet, as the hash prefix can be calculated once, and then cached.  The attacker can then begin the attack with that hash prefix, and brute-force only the shared secret portion.</t>
        <t>At the time of writing this document, an "off the shelf" commodity computer can calculate at least 100M MD5 hashes per second.  If we limit shared secrets to upper/lowercase letters, numbers, and a few "special" characters, we have 64 possible characters for shared secrets.  Which means that for 8-character secrets, there are 2^48 possible combinations.</t>
        <t>The result is that using consumer-grade machine, it takes approximately 32 days to brute-force the entire 8 octet / 64 character space for shared secrets.  The problem is even worse when graphical processing units (GPUs) are used. A high-end GPU is capable of performing more than 64 billion hashes per second.  At that rate, the entire 8 character space described above can be searched in approximately 90 minutes.</t>
        <t>This is an attack which is feasible today for a hobbyist. Increasing the size of the character set raises the cost of cracking, but not enough to be secure.  Increasing the character set to 93 characters means that the hobbyist using a GPU could search the entire 8 character space in about a day.</t>
        <t>Increasing the length of the shared secret has a larger impact on the cost of cracking.  For secrets ten characters long, one GPU can search a 64-character space in about six months, and a 93 character space would take approximately 24 years.</t>
        <t>This brute-force attack is also trivially parallelizable.  Nation-states have sufficient resources to deploy hundreds to thousands of systems dedicated to these attacks.  That realization means that a "time to crack" of 24 years is simply expensive, but is not particularly difficult.  A thousand commodity CPUs are enough to reduce the crack time from 24 years to a little over a week.</t>
        <t>Whether the above numbers are precise, or only approximate is immaterial.  These attacks will only get better over time.  The cost to crack shared secrets will only go down over time.</t>
        <t>Even worse, administrators do not always derive shared secrets from secure sources of random numbers.  The "time to crack" numbers given above are the absolute best case, assuming administrators follow best practices for creating secure shared secrets.  For shared secrets created manually by a person, the search space is orders of magnitude smaller than the best case outlined above.  Rather than brute-forcing all possible shared secrets, an attacker can create a local dictionary which contains common or expected values for the shared secret.  Where the shared secret used by an administrator is in the dictionary, the cost of the attack can drop by multiple orders of magnitude.</t>
        <t>It should be assumed that a hobbyist attacker with modest resource can crack most shared secrets created by people in minutes, if not seconds.</t>
        <t>Despite the ease of attacking MD5, it is still a common practice for some "cloud" and other RADIUS providers to send RADIUS/UDP packets over the Internet "in the clear".  It is also common practice for administrators to use "short" shared secrets, and to use shared secrets created by a person, or derived from a limited character set.  Theses practice are easy to implement and follow, but they are highly insecure and SHOULD NOT be used.</t>
        <t>Further requirements in shared secrets are given below in <xref target="shared-secrets"/>.</t>
      </section>
      <section anchor="tunnel-coa">
        <name>Tunnel-Password and CoA-Request packets</name>
        <t>There are a number of security problems with the Tunnel-Password attribute, at least in CoA-Request and Disconnect-Request packets.  A full explanation requires a review of the relevant specifications.</t>
        <t><xref target="RFC5176"/> Section 2.3 describes how to calculate the Request Authenticator field for these packets:</t>
        <artwork><![CDATA[
Request Authenticator

   In Request packets, the Authenticator value is a 16-octet MD5
   [RFC1321] checksum, called the Request Authenticator.  The
   Request Authenticator is calculated the same way as for an
   Accounting-Request, specified in [RFC2866].
]]></artwork>
        <t>Where <xref target="RFC2866"/> Section 3 says:</t>
        <artwork><![CDATA[
   The NAS and RADIUS accounting server share a secret.  The Request
   Authenticator field in Accounting-Request packets contains a one-
   way MD5 hash calculated over a stream of octets consisting of the
   Code + Identifier + Length + 16 zero octets + request attributes +
   shared secret (where + indicates concatenation).  The 16 octet MD5
   hash value is stored in the Authenticator field of the
   Accounting-Request packet.
]]></artwork>
        <t>Taken together, these definitions mean that for CoA-Request packets, all attribute obfuscation is calculated with the Reply Authenticator being all zeroes.  In contrast for Access-Request packets, the Request Authenticator is mandated there to be 16 octets of random data.  This difference has negative impacts on security.</t>
        <t>For Tunnel-Password, <xref target="RFC5176"/> Section 3.6 allows it to appear in CoA-Request packets:</t>
        <artwork><![CDATA[
   ...
   Change-of-Authorization Messages
   
   Request   ACK      NAK   #   Attribute
   ...
   0+        0        0    69   Tunnel-Password (Note 5)
   ...
   (Note 5) When included within a CoA-Request, these attributes
   represent an authorization change request.  Where tunnel attributes
   are included within a successful CoA-Request, all existing tunnel
   attributes are removed and replaced by the new attribute(s).
]]></artwork>
        <t>However, <xref target="RFC2868"/> Section 3.5 says that Tunnel-Password is encrypted with the Request Authenticator:</t>
        <artwork><![CDATA[
   Call the shared secret S, the pseudo-random 128-bit Request
   Authenticator (from the corresponding Access-Request packet) R,
]]></artwork>
        <t>The assumption that the Request Authenticator is random data is true for Access-Request packets.  That assumption is not true for CoA-Request packets.</t>
        <t>That is, when the Tunnel-Password attribute is used in CoA-Request packets, the only source of randomness in the obfuscation is the salt, as defined in <xref target="RFC2868"/> Section 3.5;</t>
        <artwork><![CDATA[
 Salt
   The Salt field is two octets in length and is used to ensure the
   uniqueness of the encryption key used to encrypt each instance of
   the Tunnel-Password attribute occurring in a given Access-Accept
   packet.  The most significant bit (leftmost) of the Salt field
   MUST be set (1).  The contents of each Salt field in a given
   Access-Accept packet MUST be unique.
]]></artwork>
        <t>This chain of unfortunate definitions means that there is only 15 bits of entropy in the Tunnel-Password obfuscation (plus the secret).  It is not known if this limitation makes it sufficiently easy for an attacker to determine the contents of the Tunnel-Password.  However, such limited entropy cannot be a good thing, and it is one more reason to deprecate RADIUS/UDP.</t>
        <t>Due to the above issues, implementations and new specifications SHOULD NOT permit obfuscated attributes to be used in CoA-Request or Disconnect-Request packets.</t>
      </section>
    </section>
    <section anchor="all-short-shared-secrets-have-been-compromised">
      <name>All short Shared Secrets have been compromised</name>
      <t>Unless RADIUS packets are sent over a secure network (IPsec, TLS, etc.), administrators SHOULD assume that any shared secret of 8 characters or less has been immediately compromised.  Administrators SHOULD assume that any shared secret of 10 characters or less has been compromised by an attacker with significant resources.  Administrators SHOULD also assume that any private information (such as User-Password) which depends on such shared secrets has also been compromised.</t>
      <t>In conclusion, if a User-Password, or CHAP-Password, or MS-CHAP password has been sent over the Internet via RADIUS/UDP or RADIUS/TCP in the last decade, you should assume that underlying password has been compromised.</t>
    </section>
    <section anchor="deprecating-insecure-transports">
      <name>Deprecating Insecure transports</name>
      <t>The solution to an insecure protocol which uses thirty year-old cryptography is to deprecate the use insecure cryptography, and to mandate modern cryptographic transport.</t>
      <section anchor="deprecating-udp-and-tcp-as-transports">
        <name>Deprecating UDP and TCP as transports</name>
        <t>RADIUS/UDP and RADIUS/TCP MUST NOT be used outside of secure networks.  A secure network is one which is known to be safe from eavesdroppers, attackers, etc.  For example, if IPsec is used between two systems, then those systems may use RADIUS/UDP or RADIUS/TCP over the IPsec connection.</t>
        <t>Similarly, RADIUS/UDP and RADIUS/TCP could be used in secure management networks.  However, administrators should not assume that such uses are always secure.  An attacker who breaks into a key system could use that access to view RADIUS traffic, and thus be able to attack it.  Similarly, a network misconfiguration could result in the RADIUS traffic being sent over an insecure network.</t>
        <t>Neither the RADIUS client nor the RADIUS server would be aware of any network misconfiguration (e.g. such as could happen with IPSec).  Neither the RADIUS client nor the RADIUS server would be aware of any attacker snooping on RADIUS/UDP or RADIUS/TCP traffic.</t>
        <t>In contrast, when TLS is used, the RADIUS endpoints are aware of all security issues, and can enforce any necessary security policies.</t>
        <t>Using RADIUS/UDP and RADIUS/TCP in any environment is therefore NOT RECOMMENDED.</t>
      </section>
      <section anchor="mandating-secure-transports">
        <name>Mandating Secure transports</name>
        <t>All systems sending RADIUS packets outside of secure networks MUST use either IPSec, RADIUS/TLS, or RADIUS/DTLS. It is RECOMMENDED, for operational and security reasons that RADIUS/TLS or RADIUS/DTLS are preferred over IPSec.</t>
        <t>Unlike (D)TLS, use of IPSec means that applications are generally unaware of transport-layer security. Any problem with IPSec such as configuration issues, negotiation or re-keying problems are typically  presented to the RADIUS servers as 100% packet loss.  These issues may occur at any time, independent of any changes to a RADIUS application using that transport.  Further, network misconfigurations which remove all security are completely transparent to the RADIUS application: packets can be sent over an insecure link, and the RADIUS server is unaware of the failure of the security layer.</t>
        <t>In contrast, (D)TLS gives the RADIUS application completely knowledge and control over transport-layer security.  The failure cases around (D)TLS are therefore often clearer, easier to diagnose and faster to resolve than failures in IPSec.   For example, a failed TLS connection may return a "connection refused" error to the application, or any one of many TLS errors indicating which exact part of the TLS conversion failed during negotiation.</t>
      </section>
      <section anchor="crypto-agility">
        <name>Crypto-Agility</name>
        <t>The crypto-agility requirements of <xref target="RFC6421"/> are addressed in <xref target="RFC6614"/> Appendix C, and in Section 10.1 of <xref target="RFC7360"/>.  For clarity, we repeat the text of <xref target="RFC7360"/> here, with some minor modifications to update references, but not content.</t>
        <t>Section 4.2 of <xref target="RFC6421"/> makes a number of recommendations about security properties of new RADIUS proposals.  All of those recommendations are satisfied by using TLS or DTLS as the transport layer.</t>
        <t>Section 4.3 of <xref target="RFC6421"/> makes a number of recommendations about backwards compatibility with RADIUS.  <xref target="RFC7360"/> Section 3 addresses these concerns in detail.</t>
        <t>Section 4.4 of <xref target="RFC6421"/> recommends that change control be ceded to the IETF, and that interoperability is possible.  Both requirements are satisfied.</t>
        <t>Section 4.5 of <xref target="RFC6421"/> requires that the new security methods apply to all packet types.  This requirement is satisfied by allowing TLS and DTLS to be used for all RADIUS traffic.  In addition, <xref target="RFC7360"/> Section 3, addresses concerns about documenting the transition from legacy RADIUS to crypto-agile RADIUS.</t>
        <t>Section 4.6 of <xref target="RFC6421"/> requires automated key management.  This requirement is satisfied by using TLS or DTLS key management.</t>
        <t>We can now finalize the work began in <xref target="RFC6421"/>.  This document updates <xref target="RFC2865"/> et al. to state that any new RADIUS specification MUST NOT introduce new "ad hoc" cryptographic primitives to sign packets as was done with the Request / Response Authenticator, or to obfuscate attributes as was done with User-Password and Tunnel-Password.  That is, RADIUS-specific cryptographic methods existing as of the publication of this document can continue to be used for historical compatibility.  However, all new cryptographic work in the RADIUS protocol is forbidden.</t>
        <t>We recognize that RADIUS/UDP will still be in use for many years, and that new standards may require some modicum of privacy.  As a result, it is a difficult choice to forbid the use of these constructs.  If an attack is discovered which breaks RADIUS/UDP (e.g. by allowing attackers to forge Request Authenticators or Response Authenticators, or by allowing attackers to de-obfuscate User-Password), the solution would be to simply deprecate the use of RADIUS/UDP entirely.  It would not be acceptable to design new cryptographic primitives in an attempt to "secure" RADIUS/UDP.</t>
        <t>All new security and privacy requirements in RADIUS MUST be provided by a secure transport layer such as TLS or IPSec.  As noted above, simply using IPsec is not always enough, as the use (or not) of IPsec is unknown to the RADIUS application.</t>
        <t>The restriction forbidding new cryptographic work in RADIUS does not apply to the data being transported in RADIUS attributes.  For example, a new authentication protocol could use new cryptographic methods, and would be permitted to be transported in RADIUS.  This protocol could be a new EAP method, or it could use updates to TLS. In those cases, RADIUS serves as a transport layer for the authentication method.  The authentication data is treated as opaque data for the purposes of Access-Request, Access-Challenge, etc. packets.  There would be no need for RADIUS to define any new cryptographic methods in order to transport this data.</t>
        <t>Similarly, new specifications MAY define new attributes which use the obfuscation methods for User-Password as defined in <xref target="RFC2865"/> Section 5.2, or for Tunnel-Password as defined in <xref target="RFC2868"/> Section 3.5.  However, due to the issues noted above in <xref target="tunnel-coa"/>, the Tunnel-Password obfuscation method MUST NOT be used for packets other than Access-Request, Access-Challenge, and Access-Accept.  If the attribute needs to be send in another type of packet, then the protocol design is likely wrong, and needs to be revisited.  It is again a difficult choice to forbid certain uses of the Tunnel-Password obfuscation method, but we believe that doing so is preferable to allowing sensitive data to be obfuscated with less security than the original design intent.</t>
      </section>
    </section>
    <section anchor="migration-path-and-recommendations">
      <name>Migration Path and Recommendations</name>
      <t>We recognize that it is difficult to upgrade legacy devices with new cryptographic protocols and user interfaces.  The problem is made worse because the volume of RADIUS devices which are in use.  The exact number is unknown, and can only be approximated.  Our best guess is that at the time of this writing, there could be in the order of hundreds of thousands, if not millions of RADIUS/UDP devices in daily use.</t>
      <t>We therefore need to define a migration path to using secure transports.  We give a a number of migration steps which could be done independently.  We recommend increased entropy for shared secrets.  We also mandate the use of Message-Authenticator in all Access-Request packets for RADIUS/UDP and RADIUS/TCP.  Finally, where <xref target="RFC6614"/> Section 2.3 makes support for TLS-PSK optional, we suggest that RADIUS/TLS and RADIUS/DTLS implementations SHOULD support TLS-PSK.</t>
      <section anchor="shared-secrets">
        <name>Shared Secrets</name>
        <t><xref target="RFC2865"/> Section 3 says:</t>
        <ul empty="true">
          <li>
            <t>It is preferred that the secret be at least 16
octets.  This is to ensure a sufficiently large range for the
secret to provide protection against exhaustive search attacks.
The secret MUST NOT be empty (length 0) since this would allow
packets to be trivially forged.</t>
          </li>
        </ul>
        <t>This recommendation is no longer adequate, so we strengthen it here.</t>
        <t>RADIUS implementations MUST support shared secrets of at least 32 octets, and SHOULD support shared secrets of 64 octets.  Implementations MUST warn administrators that the shared secret is insecure if it is 10 octets or less in length.</t>
        <t>Administrators SHOULD use shared secrets of at least 24 octets, generated using a source of secure random numbers.   Any other practice is likely to lead to compromise of the shared secret, user information, and possibly of the entire network.</t>
        <t>Creating secure shared secrets is not difficult.  One solution is to use a simple script given below.  While the script is not portable to all possible systems, the intent here is to document a concise and simple method for creating secrets which are secure, and humanly manageable.</t>
        <ul empty="true">
          <li>
            <t>#!/usr/bin/env perl
use MIME::Base32;
use Crypt::URandom();
print join('-', unpack("(A4)*", lc encode_base32(Crypt::URandom::urandom(12)))), "\n";</t>
          </li>
        </ul>
        <t>This script reads 96 bits of random data from a secure source, encodes it in Base32, and then makes it easier for people to work with.  The generated secrets are of the form "2nw2-4cfi-nicw-3g2i-5vxq".  This form of secret will be accepted by all implementation which supports at least 24 octets for shared secrets.</t>
        <t>Given the simplicity of creating strong secrets, there is no excuse for using weak shared secrets with RADIUS.  The management overhead of dealing with complex secrets is less than the management overhead of dealing with compromised networks.</t>
        <t>Over all, the security analysis of shared secrets is similar to that for TLS-PSK.  It is therefore RECOMMENDED that implementors manage shared secrets with same the practices which are recommended for TLS-PSK, as defined in <xref target="RFC8446"/> Section E.7 and <xref target="RFC9257"/> Section 4.</t>
        <t>On a practical node, RADIUS implementers SHOULD provide tools for administrators which can create and manage secure shared secrets.  The cost to do so is minimal for implementors.  Providing such a tool can further enable and motivate administrators to use secure practices.</t>
      </section>
      <section anchor="message-authenticator">
        <name>Message-Authenticator</name>
        <t>The Message-Authenticator attribute was defined in <xref target="RFC3579"/> Section 3.2.  The "Note 1" paragraph at the bottom of <xref target="RFC3579"/> Section 3.2 required that Message-Authenticator be added to Access-Request packets when the EAP-Message as present, and suggested that it should be present in a few other situations.   Experience has shown that these recommendations are inadequate.</t>
        <t>Some RADIUS clients never use the Message-Authenticator attribute, even for the situations where the <xref target="RFC3579"/> text suggests that it should be used.  When the Message-Authenticator attribute is missing from Access-Request packets, it is often possible to trivially forge or replay those packets.</t>
        <t>For example, an Access-Request packet containing CHAP-Password but which is missing Message-Authenticator can be trivially forged.  If an attacker sees one packet such packet, it is possible to replace the CHAP-Password and CHAP-Challenge (or Request Authenticator) with values chosen by the attacker.  The attacker can then perform brute-force attacks on the RADIUS server in order to test passwords.</t>
        <t>This document therefore requires that RADIUS clients MUST include the Message-Authenticator in all Access-Request packets when UDP or TCP transport is used.</t>
        <t>In contrast, when TLS-based transports are used, the Message-Authenticator attribute serves no purpose, and can be omitted, even when the Access-Request packet contains an EAP-Message attribute.  Servers receiving Access-Request packets over TLS-based transports SHOULD NOT silently discard a packet if it is missing a Message-Authenticator attribute.  However, if the Message-Authenticator attribute is present, it still MUST be validated as discussed in <xref target="RFC7360"/> and <xref target="RFC3579"/>.</t>
      </section>
      <section anchor="recommending-tls-psk">
        <name>Recommending TLS-PSK</name>
        <t>Given the insecurity of RADIUS/UDP, the absolute minimum acceptable security is to use strong shared secrets.  However, administrator overhead for TLS-PSK is not substantially higher than for shared secrets, and TLS-PSK offers significantly increased security and privacy.</t>
        <t>It is therefore RECOMMENDED that implementations support TLS-PSK.  In some cases TLS-PSK is preferable to certificates.  It may be difficult for RADIUS clients to upgrade all of their interfaces to support the use of certificates, and TLS-PSK more closely mirrors the historical use of shared secrets, with similar operational considerations.</t>
        <t>Implementation and operational considerations for TLS-PSK are given in <xref target="I-D.ietf-radext-tls-psk"/>, and we do not repeat them here.</t>
      </section>
    </section>
    <section anchor="increasing-the-security-of-radius">
      <name>Increasing the Security of RADIUS</name>
      <t>While we still permit the use of UDP and TCP transports in secure environments, there are opportunities for increasing the security of RADIUS when those transport protocols are used.  The amount of personal identifiable information sent in packets should be minimized.  Information about the size, structure, and nature of the visited network should be omitted or anonymized.  The choice of authentication method also has security and privacy impacts.</t>
      <t>The recommendations here for increasing the security of RADIUS transports also applies when TLS is used.  TLS transports protect the RADIUS packets from observation by from third-parties.  However, TLS does not hide the content of RADIUS packets from intermediate proxies, such as ones uses in a roaming environment.  As such, the best approach to minimizing the information sent to proxies is to minimize the number of proxies which see the RADIUS traffic.</t>
      <t>Implementers and administrators need to be aware of all of these issues, and then make the best choice for their local network which balances their requirements on privacy, security, and cost.  Any security approach based on a simple "checklist" of "good / bad" practices is likely to result in decreased security, as compared to an end-to-end approach which is based on understanding the issues involved.</t>
      <section anchor="minimizing-personal-identifiable-information">
        <name>Minimizing Personal Identifiable Information</name>
        <t>One approach to increasing RADIUS privacy is to minimize the amount of PII which is sent in packets.  Implementers of RADIUS products and administrators of RADIUS systems SHOULD ensure that only the minimum necessary PII is sent in RADIUS.</t>
        <t>Where possible, identities should be anonymized (e.g. <xref target="RFC7542"/> Section 2.4).  The use of anonymized identities means that the the Chargeable-User-Identifier <xref target="RFC4372"/> should also be used.  Further discussion on this topic is below.</t>
        <t>Device information SHOULD be either omitted, or randomized.  e.g. MAC address randomization could be used on end-user devices.  The details behind this recommendation are the subject of ongoing research and development.  As such, we do not offer more specific recommendations here.</t>
        <t>Information about the visited network SHOULD be replaced or anonymized before packets are proxied outside of the local organization.  The attribute Operator-NAS-Identifier <xref target="RFC8559"/> can be used to anonymize information about NASes in the local network.</t>
        <t>Location information (<xref target="RFC5580"/> SHOULD either be omitted, or else it SHOULD be limited to the broadest possible information, such as country code. For example, <xref target="I-D.tomas-openroaming"/> says:</t>
        <ul empty="true">
          <li>
            <t>All OpenRoaming ANPs MUST support signalling of location information</t>
          </li>
        </ul>
        <t>This location information is required to include at the minimum the country code.  We suggest the country code SHOULD also be the maximum amount of location information which is sent over third-party networks.</t>
        <section anchor="chargeable-user-identity">
          <name>Chargeable-User-Identity</name>
          <t>Where the Chargeable-User-Identity (CUI) <xref target="RFC4372"/> is used, it SHOULD be unique per session.  This practice will help to maximize user privacy, as it will be more difficult to track users across multiple sessions.  Due to additional constraints which we will discuss below, we cannot require that the CUI change for every session.</t>
          <t>What we can do is to require that the home server MUST provide a unique CUI for each combination of user and visited network.  That is, if the same user visits multiple networks, the home server MUST provide different CUIs to each visited network for that user.  The CUI MAY be the same across multiple sessions for that user on one particular network.  The CUI MAY be the same for multiple devices used by that user on one particular network.</t>
          <t>We note that the MAC address is likely the same across multiple user sessions on one network.  Therefore changing the CUI offers little additional benefit, as the user can still be tracked by the unchanging MAC address.  Never the less, we believe that having a unique CUI per session can be useful, because there is ongoing work on increasing user privacy by allowing more MAC address randomization.  If we were to recommend that the CUI remain constant across multiple sessions, that would in turn negate much of the effort being put into MAC address randomization.</t>
          <t>One reason to have a constant CUI value for a user (or user devices) on one network is that network access providers may need to enforce limits on simultaneous logins.  Network providers may also need to correlate user behavior across multiple sessions in order to track and prevent abuse.  Both of these requirements are impossible if the CUI changes for every user session.</t>
          <t>The result is that there is a trade-off between user privacy and the needs of the local network.  While perfect user privacy is an admirable goal, perfect user privacy may also allow anonymous users to abuse the visited network.  The network would then likely simply refuse to provide network access.  Users may therefore have to accept some limitations on privacy, in order to obtain network access.</t>
          <t>We spend some time here in order to give recommendations for creating and managing of CUI.  We believe that these recommendations will help implementers satisfy the preceding requirements, while not imposing undue burden on the implementations.</t>
          <t>In general, the simplest way to track CUIs long term is to associate the CUI to user identity in some kind of cache or database.  This association could be created at the tail end of the authentication process, and before any accounting packets were received.  This association should generally be discarded after a period of time if no accounting packets are received.  If accounting packets are received, the CUI to user association should then be tracked along with the normal accounting data.</t>
          <t>The above method for tracking CUI works no matter how the CUI is generated.  If the CUI can be unique per session, or it could be tied to a particular user identity across a long period of time.  The same CUI could also be associated with multiple devices.</t>
          <t>Where the CUI is not unique for each session, the only minor issue is the cost of the above method is that the association is stored on a per-session basis when there is no need for that to be done.  Storing the CUI per session means that is it possible to arbitrarily change how the CUI is calculated, with no impact on anything else in the system.  Designs such as this which decouple unrelated architectural elements are generally worth the minor extra cost.</t>
          <t>For creating the CUI, that process should be done in a way which is scalable and efficient.  For a unique CUI per user, implementers SHOULD create a value which is unique both to the user, and to the visited network.  There is no reason to use the same CUI for multiple visited networks, as that would enable the tracking of a user across multiple networks.</t>
          <t>Before suggesting a method for creating the CUI, we note that <xref target="RFC4372"/> Section 2.1 defines the CUI as being of data type 'string' (<xref target="RFC8044"/> Section 3.5).  <xref target="RFC4372"/> Section 2.1 further suggests that the value of the CUI is interpreted as an opaque token, similar to the Class attribute (<xref target="RFC2865"/> Section 5.25).  Some organizations create CUI values which use the Network Access Identifier (NAI) format as defined in <xref target="RFC7542"/>.  This format can allow the home network to be identified to the visited network, where the User-Name does not contain a realm.  Such formats SHOULD NOT be used unless all parties involved have agreed to this behavior.</t>
          <t>The CUI SHOULD be created via a construct similar to what is given below, where "+" indicates concatenation:</t>
          <artwork><![CDATA[
CUI = HASH(visited network data + user identifier + key)
]]></artwork>
          <t>This construct has the following conceptual parameters.</t>
          <ul empty="true">
            <li>
              <t>HASH</t>
              <ul empty="true">
                <li>
                  <t>A cryptographic hash function.</t>
                </li>
              </ul>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t>visited network data</t>
              <ul empty="true">
                <li>
                  <t>Data which identifies the visited network.</t>
                  <t>This data could be the Operator-Name attribute (<xref target="RFC5580"/> Section 4.1).</t>
                </li>
              </ul>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t>user identifier</t>
              <ul empty="true">
                <li>
                  <t>The site-local user identifier.  For tunnelled EAP methods such as PEAP or TTLS, this could be the user identity which is sent inside of the TLS tunnel.</t>
                </li>
              </ul>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t>key</t>
              <ul empty="true">
                <li>
                  <t>A secret known only to the local network.  The key is generally a large random string.  It is used to help prevent dictionary attacks on the CUI.</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>Where the CUI needs to be constant across multiple user sessions or devices, the key can be a static value.  It is generated once by the home network, and then stored for use in further CUI derivations.</t>
          <t>Where the CUI needs to be unique per session, the above derivation SHOULD still be used, except that the "key" value will instead be a random number which is different for each session.  Using such a design again decouples the CUI creation from any requirement that it is unique per session, or constant per user.  That decision can be changed at any time, and the only piece which needs to be updated is the derivation of the "key" field.  In contrast, if the CUI is generated completely randomly per session, then it may be difficult for a system to later change that behavior to allow the CUI to be constant for a particular user.</t>
          <t>If an NAI format is desired, the hash output can be converted to printable text, truncated if necessary to meet length limitations, and then an "@" character and a realm can be appended to it.  The resulting text string is then in NAI form.</t>
          <t>We note that the above recommendation is not invertible.  That is, given a particular CUI, it is not possible to determine which visited network or user identifier was used to create it.  If it is necessary to use the CUI to determine which user is associated with it, the local network still needs to store the full set of CUI values which are associated with each user.</t>
          <t>If this tracking is too complex for a local network, it is possible to create the CUI via an invertible encryption process as follows:</t>
          <artwork><![CDATA[
CUI = ENCRYPT(key, visited network data + user identifier)
]]></artwork>
          <t>This construct has the following conceptual parameters.</t>
          <ul empty="true">
            <li>
              <t>ENCRYPT</t>
              <ul empty="true">
                <li>
                  <t>A cryptographically secure encryption function</t>
                </li>
              </ul>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t>key</t>
              <ul empty="true">
                <li>
                  <t>The encryption key.  Note that the same key must not be used for more both hashing and encryption.</t>
                </li>
              </ul>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t>visited network data</t>
              <ul empty="true">
                <li>
                  <t>Data which identifies the visited network.</t>
                  <t>This data could be the Operator-Name attribute (<xref target="RFC5580"/> Section 4.1).</t>
                </li>
              </ul>
            </li>
          </ul>
          <ul empty="true">
            <li>
              <t>user identifier</t>
              <ul empty="true">
                <li>
                  <t>The site-local user identifier.  For tunnelled EAP methods such as PEAP or TTLS, this could be the user identity which is sent inside of the TLS tunnel.</t>
                </li>
              </ul>
            </li>
          </ul>
          <t>However, the use of a hash-based method is RECOMMENDED.</t>
          <t>In short, the intent is for CUI to leak as little information as possible, and ideally be different for every session.  However, business agreements, legal requirements, etc. may mandate different behavior.  The intention of this section is not to mandate complete CUI privacy, but instead to clarify the trade-offs between CUI privacy and business realities.</t>
        </section>
      </section>
      <section anchor="user-password-and-proxying">
        <name>User-Password and Proxying</name>
        <t>The design of RADIUS means that when proxies receive Access-Request packets, the clear-text contents of the User-Password attribute are visible to the proxy.  Despite various claims to the contrary, the User-Password attribute is never sent "in the clear" over the network.  Instead, the password is protected by TLS (RADIUS/TLS) or via the obfuscation methods defined in <xref target="RFC2865"/> Section 5.2.  However, the nature of RADIUS means that each proxy must first undo the password obfuscation of <xref target="RFC2865"/>, and then re-do it when sending the outbound packet.  As such, the proxy has the clear-text password visible to it, and stored in its application memory.</t>
        <t>It is therefore possible for every intermediate proxy to snoop and record all user identities and passwords which they see.  This exposure is most problematic when the proxies are administered by an organization other than the one which operates the home server.  Even when all of the proxies are operated by the same organization, the existence of clear-text passwords on multiple machines is a security risk.</t>
        <t>It is therefore NOT RECOMMENDED for organizations to send User-Password attributes in packets which are sent outside of the local organization.  If RADIUS proxying is necessary, another authentication method SHOULD be used.</t>
        <t>Client and server implementations SHOULD use programming techniques to securely wipe passwords from memory when they are no longer needed.</t>
        <t>Organizations MAY still use User-Password attributes within their own systems, for reasons which we will explain in the next section.</t>
      </section>
      <section anchor="password-visibility-and-storage">
        <name>Password Visibility and Storage</name>
        <t>Some organizations may desire to increase the security of their network by using alternate authentication methods such as CHAP or MS-CHAP, instead of PAP.  These attempts are largely misguided.  If simple password-based methods must be used, in almost all situations, the security of the network as a whole is increased by using PAP in preference to CHAP or MS-CHAP.  The reason is found through a simple risk analysis, which we explain in more detail below.</t>
        <t>When PAP is used, any compromise of a system which sees the User-Password will result in that password leaking.  In contrast, when CHAP or MS-CHAP is used, those methods do not share the password, but instead a hashed transformation of it.  That hash output is in theory secure from attackers.  However, the hashes used (MD5 and MD4 respectively) are decades old, have been broken, and are known to be insecure.  Any security analysis which makes the claim that "User-Password insecure because it is protected with MD5" ignores the fact that the CHAP-Password attribute is constructed through substantially similar methods.</t>
        <t>The difference between the two constructs is that the CHAP-Password depends on the hash of a visible Request Authenticator (or CHAP-Challenge) and the users password, while the obfuscated User-Password depends on the same Request Authenticator, and on the RADIUS shared secret.  For an attacker, the difference between the two calculations is minimal.  They can both be attacked with similar amounts of effort.</t>
        <t>Further, any security analysis can not stop with the wire protocol.  It must include all related systems which are affected by the choice of authentication methods.  In this case, the most important piece of the system affected by these choices is the database which stores the passwords.</t>
        <t>When PAP is used, the information stored in the database can be salted, and/or hashed in a form is commonly referred to as being in "crypt"ed form.  The incoming clear-text password then undergoes the "crypt" transformation, and the two "crypt"ed passwords are compared.  The passwords in the database are stored securely at all times, and any compromise of the database results in the disclosure of minimal information to an attacker.  That is, the attacker cannot easily obtain the clear-text passwords from the database compromise.</t>
        <t>The process for CHAP and MS-CHAP is inverted from the process for PAP.  Using similar terminology as above for illustrative purposes, the "crypt"ed passwords are sent to the server.  The server must obtain the clear-text (or NT hashed) password from the database, and then perform the "crypt" operation on the password from the database. The two "crypt"ed passwords are then compared as was done with PAP.  This inverted process has substantial and negative impacts on security.</t>
        <t>When PAP is used, passwords are stored in clear-text only ephemerally in the memory of an application which receives and then verifies the password.  Any compromise of that application results in the exposure of a small number of passwords which are visible at the time of compromise.  If the compromise is undetected for an extended period of time, the number of exposed passwords would of course increase.</t>
        <t>However, when CHAP or MS-CHAP are used, all of passwords are stored in clear-text in the database, all of the time.  The database contents might be encrypted, but the decryption keys are necessarily accessible to the application which reads that database.  Any compromise of the application means that the entire database can be immediately read and exfiltrated as a whole.  The attacker then has complete access to all user identities, and all associated clear-text passwords.</t>
        <t>The result is that when the system as a whole is taken into account, the risk of password compromise is less with PAP than with CHAP or MS-CHAP.  It is therefore RECOMMENDED that administrators use PAP in preference to CHAP or MS-CHAP.</t>
      </section>
      <section anchor="ms-chap">
        <name>MS-CHAP</name>
        <t>MS-CHAP (v1 in <xref target="RFC2433"/> and v2 in <xref target="RFC2759"/>) has major design flaws, and should not be used outside of a secure tunnel.  As MS-CHAPv1 is not normally used, the discussion in this section will focus on MS-CHAPv2.</t>
        <t>Recent developments demonstrate just how easy it is to attack MS-CHAPv2 exchanges, and obtain the "NT-hash" version of the password (<xref target="SENSEPOST"/>).  The attack relies on a vulnerability in the protocol design in <xref target="RFC2759"/> Section 8.4.  In that section, the response to the MS-CHAP challenge is calculated via three DES operations, which are based on the 16-octet NT-Hash form of the password.  However, the DES operation requires 7 octet keys, so the 16-octet NT-Hash cannot be divided evenly into the 21 octets of keys required for the DES operation.</t>
        <t>The solution in <xref target="RFC2759"/> Section 8.4 is to use the first 7 octets of the NT-Hash for the first DES key, the next 7 octets for the second DES key, leaving only 2 octets for the final DES key.  The final DES key is padded with zeros.  This construction means that an attacker who can observe the MS-CHAP2 exchange only needs to perform 2^16 DES operations in order to determine the final 2 octets of the original NT-Hash.</t>
        <t>If the attacker has a database which correlates known passwords to NT-Hashes, then those two octets can be used as an index into that database, which returns a subset of candidate hashes.  Those hashes are then checked via brute-force operations to see if they match the original MS-CHAPv2 data.</t>
        <t>This process lowers the complexity of cracking MS-CHAP by nearly five orders of magnitude as compared to a brute-force attack.  The attack has been demonstrated against databases containing tens to hundreds of millions of passwords.  On a consumer-grade machine, the time required for such an attack to succeed is on the order of tens of milliseconds.</t>
        <t>While this attack does require a database of known passwords, such databases are easy to find online, or to create locally from generator functions.  Passwords created manually by people are notoriously predictable, and are highly likely to be found in a database of known passwords.  In the extreme case of strong passwords, they will not be found in the database, and the attacker is still required to perform a brute-force dictionary search.</t>
        <t>The result is that MS-CHAPv2 SHOULD be considered in most situations as being equivalent in security and privacy to PAP.  It offers little benefit over PAP, and has many drawbacks as discussed here, and in the previous section.</t>
        <t>There is one situation where MS-CHAP is significantly worse than PAP; where the MS-CHAP data is sent over the network in the clear.  When the MS-CHAP data is not protected by TLS, it is visible to everyone who can observe the RADIUS traffic.  Attackers who can see the MS-CHAP traffic can therefore obtain the underlying NT-Hash with essentially zero effort, as compared to cracking the RADIUS shared secret.</t>
        <t>This document therefore mandates that MS-CHAP authentication data carried in RADIUS MUST NOT be sent in situations where the MS-CHAP data is visible to an observer.  That is, MS-CHAP authentication MUST NOT be sent over RADIUS/UDP or RADIUS/TCP</t>
      </section>
      <section anchor="eap">
        <name>EAP</name>
        <t>If more complex authentication methods are needed, there are a number of EAP methods which can be used.  These methods variously allow for the use of certificates (EAP-TLS), or passwords (EAP-TTLS <xref target="RFC5281"/>, PEAP <xref target="I-D.josefsson-pppext-eap-tls-eap"/>)) and EAP-pwd <xref target="RFC5931"/>.</t>
        <t>Where it is necessary to use intermediate proxies such as with eduroam <xref target="EDUROAM"/> and OpenRoaming <xref target="OPENROAMING"/>, it is RECOMMENDED to use EAP instead of PAP, CHAP, or MS-CHAP.  If passwords are used, they can be can be protected via TLS-based EAP methods such as EAP-TTLS or PEAP.  Passwords can also be omitted entirely from being sent over the network, as with EAP-TLS <xref target="RFC9190"/> or EAP-pwd <xref target="RFC5931"/>.</t>
        <t>We also note that the TLS-based EAP methods which transport passwords also hide the passwords from intermediate RADIUS proxies.  However, for the home authentication server, those EAP methods are still subject to the analysis above about PAP versus CHAP, along with the issues of storing passwords in a database.</t>
      </section>
      <section anchor="eliminating-proxies">
        <name>Eliminating Proxies</name>
        <t>The best way to avoid compromise of proxies is to eliminate proxies entirely.  The use of dynamic peer discovery (<xref target="RFC7585"/>) means that the number of intermediate proxies is minimized.</t>
        <t>However, the server on the visited network still acts as a proxy between the NAS and the home network.  As a result, all of the above analysis still applies when <xref target="RFC7585"/> peer discovery is used.</t>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>The primary focus of this document is addressing privacy and security considerations for RADIUS.</t>
      <t>Deprecating insecure transport for RADIUS, and requiring secure transport means that personally identifying information is no longer sent "in the clear".  As noted earlier in this document, such information can include MAC addresses, user identifiers, and user locations.</t>
      <t>In addition, this document suggests ways to increase privacy by minimizing the use and exchange of PII.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>The primary focus of this document is addressing security and privacy considerations for RADIUS.</t>
      <t>Deprecating insecure transport for RADIUS, and requiring secure transport means that many historical security issues with the RADIUS protocol no longer apply, or their impact is minimized.</t>
      <t>We reiterate the discussion above, that any security analysis must be done on the system as a whole.  It is not enough to put an expensive lock on the front door of a house while leaving the window next to it open, and then declare the house to be "secure". Any approach to security based on a simple checklist is at best naive, more truthfully is deeply misleading, and at worst such practices will serve to decrease security.</t>
      <t>Implementers and administrators need to be aware of the issues raised in this document.  They can then make the best choice for their local network which balances their requirements on privacy, security, and cost.</t>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>There are no IANA considerations in this document.</t>
      <t>RFC Editor: This section may be removed before final publication.</t>
    </section>
    <section anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Thanks to the many reviewers and commenters for raising topics to discuss, and for providing insight into the issues related to increasing the security of RADIUS.  In no particular order, thanks to Margaret Cullen, Alexander Clouter, and Josh Howlett.</t>
    </section>
    <section anchor="changelog">
      <name>Changelog</name>
      <ul spacing="normal">
        <li>01 - added more discussion of IPSec, and move TLS-PSK to its own document,</li>
        <li>02 - Added text on Increasing the Security of Insecure Transports</li>
        <li>03 - add text on CUI.  Add notes on PAP vs CHAP security</li>
        <li>04 - add text on security of MS-CHAP.  Rearrange and reword many sections for clarity.</li>
      </ul>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="BCP14" target="https://www.rfc-editor.org/info/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="RFC2865" target="https://www.rfc-editor.org/info/rfc2865">
          <front>
            <title>Remote Authentication Dial In User Service (RADIUS)</title>
            <author fullname="C. Rigney" initials="C." surname="Rigney"/>
            <author fullname="S. Willens" initials="S." surname="Willens"/>
            <author fullname="A. Rubens" initials="A." surname="Rubens"/>
            <author fullname="W. Simpson" initials="W." surname="Simpson"/>
            <date month="June" year="2000"/>
            <abstract>
              <t>This document describes a protocol for carrying authentication, authorization, and configuration information between a Network Access Server which desires to authenticate its links and a shared Authentication Server. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2865"/>
          <seriesInfo name="DOI" value="10.17487/RFC2865"/>
        </reference>
        <reference anchor="RFC6421" target="https://www.rfc-editor.org/info/rfc6421">
          <front>
            <title>Crypto-Agility Requirements for Remote Authentication Dial-In User Service (RADIUS)</title>
            <author fullname="D. Nelson" initials="D." role="editor" surname="Nelson"/>
            <date month="November" year="2011"/>
            <abstract>
              <t>This memo describes the requirements for a crypto-agility solution for Remote Authentication Dial-In User Service (RADIUS). This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6421"/>
          <seriesInfo name="DOI" value="10.17487/RFC6421"/>
        </reference>
        <reference anchor="RFC8044" target="https://www.rfc-editor.org/info/rfc8044">
          <front>
            <title>Data Types in RADIUS</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="January" year="2017"/>
            <abstract>
              <t>RADIUS specifications have used data types for two decades without defining them as managed entities. During this time, RADIUS implementations have named the data types and have used them in attribute definitions. This document updates the specifications to better follow established practice. We do this by naming the data types defined in RFC 6158, which have been used since at least the publication of RFC 2865. We provide an IANA registry for the data types and update the "RADIUS Attribute Types" registry to include a Data Type field for each attribute. Finally, we recommend that authors of RADIUS specifications use these types in preference to existing practice. This document updates RFCs 2865, 3162, 4072, 6158, 6572, and 7268.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8044"/>
          <seriesInfo name="DOI" value="10.17487/RFC8044"/>
        </reference>
        <reference anchor="RFC2119" target="https://www.rfc-editor.org/info/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="RFC8174" target="https://www.rfc-editor.org/info/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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC1321" target="https://www.rfc-editor.org/info/rfc1321">
          <front>
            <title>The MD5 Message-Digest Algorithm</title>
            <author fullname="R. Rivest" initials="R." surname="Rivest"/>
            <date month="April" year="1992"/>
            <abstract>
              <t>This document describes the MD5 message-digest algorithm. The algorithm takes as input a message of arbitrary length and produces as output a 128-bit "fingerprint" or "message digest" of the input. This memo provides information for the Internet community. It does not specify an Internet standard.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1321"/>
          <seriesInfo name="DOI" value="10.17487/RFC1321"/>
        </reference>
        <reference anchor="RFC2433" target="https://www.rfc-editor.org/info/rfc2433">
          <front>
            <title>Microsoft PPP CHAP Extensions</title>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <author fullname="S. Cobb" initials="S." surname="Cobb"/>
            <date month="October" year="1998"/>
            <abstract>
              <t>The Point-to-Point Protocol (PPP) provides a standard method for transporting multi-protocol datagrams over point-to-point links. PPP defines an extensible Link Control Protocol and a family of Network Control Protocols (NCPs) for establishing and configuring different network-layer protocols. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2433"/>
          <seriesInfo name="DOI" value="10.17487/RFC2433"/>
        </reference>
        <reference anchor="RFC2759" target="https://www.rfc-editor.org/info/rfc2759">
          <front>
            <title>Microsoft PPP CHAP Extensions, Version 2</title>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <date month="January" year="2000"/>
            <abstract>
              <t>This document describes version two of Microsoft's PPP CHAP dialect (MS-CHAP-V2). MS-CHAP-V2 is similar to, but incompatible with, MS-CHAP version one (MS-CHAP-V1). This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2759"/>
          <seriesInfo name="DOI" value="10.17487/RFC2759"/>
        </reference>
        <reference anchor="RFC2866" target="https://www.rfc-editor.org/info/rfc2866">
          <front>
            <title>RADIUS Accounting</title>
            <author fullname="C. Rigney" initials="C." surname="Rigney"/>
            <date month="June" year="2000"/>
            <abstract>
              <t>This document describes a protocol for carrying accounting information between a Network Access Server and a shared Accounting Server. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2866"/>
          <seriesInfo name="DOI" value="10.17487/RFC2866"/>
        </reference>
        <reference anchor="RFC2868" target="https://www.rfc-editor.org/info/rfc2868">
          <front>
            <title>RADIUS Attributes for Tunnel Protocol Support</title>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <author fullname="D. Leifer" initials="D." surname="Leifer"/>
            <author fullname="A. Rubens" initials="A." surname="Rubens"/>
            <author fullname="J. Shriver" initials="J." surname="Shriver"/>
            <author fullname="M. Holdrege" initials="M." surname="Holdrege"/>
            <author fullname="I. Goyret" initials="I." surname="Goyret"/>
            <date month="June" year="2000"/>
            <abstract>
              <t>This document defines a set of RADIUS (Remote Authentication Dial In User Service) attributes designed to support the provision of compulsory tunneling in dial-up networks. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2868"/>
          <seriesInfo name="DOI" value="10.17487/RFC2868"/>
        </reference>
        <reference anchor="RFC3579" target="https://www.rfc-editor.org/info/rfc3579">
          <front>
            <title>RADIUS (Remote Authentication Dial In User Service) Support For Extensible Authentication Protocol (EAP)</title>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="P. Calhoun" initials="P." surname="Calhoun"/>
            <date month="September" year="2003"/>
            <abstract>
              <t>This document defines Remote Authentication Dial In User Service (RADIUS) support for the Extensible Authentication Protocol (EAP), an authentication framework which supports multiple authentication mechanisms. In the proposed scheme, the Network Access Server (NAS) forwards EAP packets to and from the RADIUS server, encapsulated within EAP-Message attributes. This has the advantage of allowing the NAS to support any EAP authentication method, without the need for method- specific code, which resides on the RADIUS server. While EAP was originally developed for use with PPP, it is now also in use with IEEE 802. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3579"/>
          <seriesInfo name="DOI" value="10.17487/RFC3579"/>
        </reference>
        <reference anchor="RFC5176" target="https://www.rfc-editor.org/info/rfc5176">
          <front>
            <title>Dynamic Authorization Extensions to Remote Authentication Dial In User Service (RADIUS)</title>
            <author fullname="M. Chiba" initials="M." surname="Chiba"/>
            <author fullname="G. Dommety" initials="G." surname="Dommety"/>
            <author fullname="M. Eklund" initials="M." surname="Eklund"/>
            <author fullname="D. Mitton" initials="D." surname="Mitton"/>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>This document describes a currently deployed extension to the Remote Authentication Dial In User Service (RADIUS) protocol, allowing dynamic changes to a user session, as implemented by network access server products. This includes support for disconnecting users and changing authorizations applicable to a user session. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5176"/>
          <seriesInfo name="DOI" value="10.17487/RFC5176"/>
        </reference>
        <reference anchor="RFC5580" target="https://www.rfc-editor.org/info/rfc5580">
          <front>
            <title>Carrying Location Objects in RADIUS and Diameter</title>
            <author fullname="H. Tschofenig" initials="H." role="editor" surname="Tschofenig"/>
            <author fullname="F. Adrangi" initials="F." surname="Adrangi"/>
            <author fullname="M. Jones" initials="M." surname="Jones"/>
            <author fullname="A. Lior" initials="A." surname="Lior"/>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <date month="August" year="2009"/>
            <abstract>
              <t>This document describes procedures for conveying access-network ownership and location information based on civic and geospatial location formats in Remote Authentication Dial-In User Service (RADIUS) and Diameter.</t>
              <t>The distribution of location information is a privacy-sensitive task. Dealing with mechanisms to preserve the user's privacy is important and is addressed in this document. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5580"/>
          <seriesInfo name="DOI" value="10.17487/RFC5580"/>
        </reference>
        <reference anchor="RFC6151" target="https://www.rfc-editor.org/info/rfc6151">
          <front>
            <title>Updated Security Considerations for the MD5 Message-Digest and the HMAC-MD5 Algorithms</title>
            <author fullname="S. Turner" initials="S." surname="Turner"/>
            <author fullname="L. Chen" initials="L." surname="Chen"/>
            <date month="March" year="2011"/>
            <abstract>
              <t>This document updates the security considerations for the MD5 message digest algorithm. It also updates the security considerations for HMAC-MD5. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6151"/>
          <seriesInfo name="DOI" value="10.17487/RFC6151"/>
        </reference>
        <reference anchor="RFC6218" target="https://www.rfc-editor.org/info/rfc6218">
          <front>
            <title>Cisco Vendor-Specific RADIUS Attributes for the Delivery of Keying Material</title>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <author fullname="T. Zhang" initials="T." surname="Zhang"/>
            <author fullname="J. Walker" initials="J." surname="Walker"/>
            <author fullname="J. Salowey" initials="J." surname="Salowey"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines a set of vendor-specific RADIUS Attributes designed to allow both the secure transmission of cryptographic keying material and strong authentication of any RADIUS message. These attributes have been allocated from the Cisco vendor-specific space and have been implemented by multiple vendors. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6218"/>
          <seriesInfo name="DOI" value="10.17487/RFC6218"/>
        </reference>
        <reference anchor="RFC6613" target="https://www.rfc-editor.org/info/rfc6613">
          <front>
            <title>RADIUS over TCP</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="May" year="2012"/>
            <abstract>
              <t>The Remote Authentication Dial-In User Server (RADIUS) protocol has, until now, required the User Datagram Protocol (UDP) as the underlying transport layer. This document defines RADIUS over the Transmission Control Protocol (RADIUS/TCP), in order to address handling issues related to RADIUS over Transport Layer Security (RADIUS/TLS). It permits TCP to be used as a transport protocol for RADIUS only when a transport layer such as TLS or IPsec provides confidentiality and security. This document defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6613"/>
          <seriesInfo name="DOI" value="10.17487/RFC6613"/>
        </reference>
        <reference anchor="RFC6614" target="https://www.rfc-editor.org/info/rfc6614">
          <front>
            <title>Transport Layer Security (TLS) Encryption for RADIUS</title>
            <author fullname="S. Winter" initials="S." surname="Winter"/>
            <author fullname="M. McCauley" initials="M." surname="McCauley"/>
            <author fullname="S. Venaas" initials="S." surname="Venaas"/>
            <author fullname="K. Wierenga" initials="K." surname="Wierenga"/>
            <date month="May" year="2012"/>
            <abstract>
              <t>This document specifies a transport profile for RADIUS using Transport Layer Security (TLS) over TCP as the transport protocol. This enables dynamic trust relationships between RADIUS servers. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6614"/>
          <seriesInfo name="DOI" value="10.17487/RFC6614"/>
        </reference>
        <reference anchor="RFC6973" target="https://www.rfc-editor.org/info/rfc6973">
          <front>
            <title>Privacy Considerations for Internet Protocols</title>
            <author fullname="A. Cooper" initials="A." surname="Cooper"/>
            <author fullname="H. Tschofenig" initials="H." surname="Tschofenig"/>
            <author fullname="B. Aboba" initials="B." surname="Aboba"/>
            <author fullname="J. Peterson" initials="J." surname="Peterson"/>
            <author fullname="J. Morris" initials="J." surname="Morris"/>
            <author fullname="M. Hansen" initials="M." surname="Hansen"/>
            <author fullname="R. Smith" initials="R." surname="Smith"/>
            <date month="July" year="2013"/>
            <abstract>
              <t>This document offers guidance for developing privacy considerations for inclusion in protocol specifications. It aims to make designers, implementers, and users of Internet protocols aware of privacy-related design choices. It suggests that whether any individual RFC warrants a specific privacy considerations section will depend on the document's content.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6973"/>
          <seriesInfo name="DOI" value="10.17487/RFC6973"/>
        </reference>
        <reference anchor="RFC7360" target="https://www.rfc-editor.org/info/rfc7360">
          <front>
            <title>Datagram Transport Layer Security (DTLS) as a Transport Layer for RADIUS</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="September" year="2014"/>
            <abstract>
              <t>The RADIUS protocol defined in RFC 2865 has limited support for authentication and encryption of RADIUS packets. The protocol transports data in the clear, although some parts of the packets can have obfuscated content. Packets may be replayed verbatim by an attacker, and client-server authentication is based on fixed shared secrets. This document specifies how the Datagram Transport Layer Security (DTLS) protocol may be used as a fix for these problems. It also describes how implementations of this proposal can coexist with current RADIUS systems.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7360"/>
          <seriesInfo name="DOI" value="10.17487/RFC7360"/>
        </reference>
        <reference anchor="I-D.ietf-radext-tls-psk" target="https://datatracker.ietf.org/doc/html/draft-ietf-radext-tls-psk-03">
          <front>
            <title>RADIUS and TLS-PSK</title>
            <author fullname="Alan DeKok" initials="A." surname="DeKok">
              <organization>FreeRADIUS</organization>
            </author>
            <date day="24" month="August" year="2023"/>
            <abstract>
              <t>   This document gives implementation and operational considerations for
   using TLS-PSK with RADIUS/TLS (RFC6614) and RADIUS/DTLS (RFC7360).

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-radext-tls-psk-03"/>
        </reference>
        <reference anchor="I-D.tomas-openroaming" target="https://datatracker.ietf.org/doc/html/draft-tomas-openroaming-00">
          <front>
            <title>WBA OpenRoaming Wireless Federation</title>
            <author fullname="Bruno Tomas" initials="B." surname="Tomas">
              <organization>Wireless Broadband Alliance, Inc.</organization>
            </author>
            <author fullname="Mark Grayson" initials="M." surname="Grayson">
              <organization>Cisco Systems</organization>
            </author>
            <author fullname="Necati Canpolat" initials="N." surname="Canpolat">
              <organization>Intel Corporation</organization>
            </author>
            <author fullname="Betty A. Cockrell" initials="B. A." surname="Cockrell">
              <organization>SingleDigits</organization>
            </author>
            <author fullname="Sri Gundavelli" initials="S." surname="Gundavelli">
              <organization>Cisco Systems</organization>
            </author>
            <date day="14" month="June" year="2023"/>
            <abstract>
              <t>   This document describes the Wireless Broadband Alliance's OpenRoaming
   system.  The OpenRoaming architectures enables a seamless onboarding
   experience for devices connecting to access networks that are part of
   the federation of access networks and identity providers.  The
   primary objective of this document is to describe the protocols that
   form the foundation for this architecture, enabling providers to
   correctly configure their equipment to support interoperable
   OpenRoaming signalling exchanges.  In addition, the topic of
   OpenRoaming has been raised in different IETF working groups, and
   therefore a secondary objective is to assist those discussions by
   describing the federation organization and framework.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tomas-openroaming-00"/>
        </reference>
        <reference anchor="I-D.josefsson-pppext-eap-tls-eap" target="https://datatracker.ietf.org/doc/html/draft-josefsson-pppext-eap-tls-eap-10">
          <front>
            <title>Protected EAP Protocol (PEAP) Version 2</title>
            <author fullname="Ashwin Palekar" initials="A." surname="Palekar">
              <organization>Microsoft Corporation</organization>
            </author>
            <author fullname="Simon Josefsson" initials="S." surname="Josefsson">
              <organization>Extundo</organization>
            </author>
            <author fullname="Daniel Simon" initials="D." surname="Simon">
              <organization>Microsoft Corporation</organization>
            </author>
            <author fullname="Glen Zorn" initials="G." surname="Zorn">
              <organization>Cisco Systems</organization>
            </author>
            <date day="21" month="October" year="2004"/>
            <abstract>
              <t>The Extensible Authentication Protocol (EAP) provides support for
   multiple authentication methods. This document defines the Protected
   Extensible Authentication Protocol (PEAP) Version 2, which provides
   an encrypted and authenticated tunnel based on transport layer
   security (TLS) that encapsulates EAP authentication mechanisms.
   PEAPv2 uses TLS to protect against rogue authenticators, protect
   against various attacks on the confidentiality and integrity of the
   inner EAP method exchange and provide EAP peer identity privacy.
   PEAPv2 also provides support for chaining multiple EAP mechanisms,
   cryptographic binding between authentications performed by inner EAP
   mechanisms and the tunnel, exchange of arbitrary parameters (TLVs),
   and fragmentation and reassembly.
              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-josefsson-pppext-eap-tls-eap-10"/>
        </reference>
        <reference anchor="EDUROAM" target="https://eduroam.org">
          <front>
            <title>eduroam</title>
            <author initials="" surname="eduroam" fullname="eduroam">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="OPENROAMING" target="https://wballiance.com/openroaming/">
          <front>
            <title>OpenRoaming: One global Wi-Fi network</title>
            <author initials="W. B." surname="Alliance" fullname="Wireless Broadband Alliance">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="WIFILOC" target="https://www.wi-fi.org/discover-wi-fi/wi-fi-location">
          <front>
            <title>Accurate indoor location with Wi-Fi connectivity</title>
            <author initials="W.-F." surname="Alliance" fullname="Wi-Fi Alliance">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="SPOOFING" target="https://networkradius.com/articles/2021/08/04/wifi-spoofing.html">
          <front>
            <title>Wi-Fi Spoofing for Fun and Profit</title>
            <author initials="A." surname="Cudbard-Bell" fullname="Arran Cudbard-Bell">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="SENSEPOST" target="https://github.com/sensepost/assless-chaps">
          <front>
            <title>Cracking MS-CHAP</title>
            <author initials="" surname="Sensepost" fullname="Sensepost">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC7525" target="https://www.rfc-editor.org/info/rfc7525">
          <front>
            <title>Recommendations for Secure Use of Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS)</title>
            <author fullname="Y. Sheffer" initials="Y." surname="Sheffer"/>
            <author fullname="R. Holz" initials="R." surname="Holz"/>
            <author fullname="P. Saint-Andre" initials="P." surname="Saint-Andre"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>Transport Layer Security (TLS) and Datagram Transport Layer Security (DTLS) are widely used to protect data exchanged over application protocols such as HTTP, SMTP, IMAP, POP, SIP, and XMPP. Over the last few years, several serious attacks on TLS have emerged, including attacks on its most commonly used cipher suites and their modes of operation. This document provides recommendations for improving the security of deployed services that use TLS and DTLS. The recommendations are applicable to the majority of use cases.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7525"/>
          <seriesInfo name="DOI" value="10.17487/RFC7525"/>
        </reference>
        <reference anchor="RFC7585" target="https://www.rfc-editor.org/info/rfc7585">
          <front>
            <title>Dynamic Peer Discovery for RADIUS/TLS and RADIUS/DTLS Based on the Network Access Identifier (NAI)</title>
            <author fullname="S. Winter" initials="S." surname="Winter"/>
            <author fullname="M. McCauley" initials="M." surname="McCauley"/>
            <date month="October" year="2015"/>
            <abstract>
              <t>This document specifies a means to find authoritative RADIUS servers for a given realm. It is used in conjunction with either RADIUS over Transport Layer Security (RADIUS/TLS) or RADIUS over Datagram Transport Layer Security (RADIUS/DTLS).</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7585"/>
          <seriesInfo name="DOI" value="10.17487/RFC7585"/>
        </reference>
        <reference anchor="RFC5080" target="https://www.rfc-editor.org/info/rfc5080">
          <front>
            <title>Common Remote Authentication Dial In User Service (RADIUS) Implementation Issues and Suggested Fixes</title>
            <author fullname="D. Nelson" initials="D." surname="Nelson"/>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="December" year="2007"/>
            <abstract>
              <t>This document describes common issues seen in Remote Authentication Dial In User Service (RADIUS) implementations and suggests some fixes. Where applicable, ambiguities and errors in previous RADIUS specifications are clarified. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5080"/>
          <seriesInfo name="DOI" value="10.17487/RFC5080"/>
        </reference>
        <reference anchor="RFC8446" target="https://www.rfc-editor.org/info/rfc8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9257" target="https://www.rfc-editor.org/info/rfc9257">
          <front>
            <title>Guidance for External Pre-Shared Key (PSK) Usage in TLS</title>
            <author fullname="R. Housley" initials="R." surname="Housley"/>
            <author fullname="J. Hoyland" initials="J." surname="Hoyland"/>
            <author fullname="M. Sethi" initials="M." surname="Sethi"/>
            <author fullname="C. A. Wood" initials="C. A." surname="Wood"/>
            <date month="July" year="2022"/>
            <abstract>
              <t>This document provides usage guidance for external Pre-Shared Keys (PSKs) in Transport Layer Security (TLS) 1.3 as defined in RFC 8446. It lists TLS security properties provided by PSKs under certain assumptions, then it demonstrates how violations of these assumptions lead to attacks. Advice for applications to help meet these assumptions is provided. This document also discusses PSK use cases and provisioning processes. Finally, it lists the privacy and security properties that are not provided by TLS 1.3 when external PSKs are used.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9257"/>
          <seriesInfo name="DOI" value="10.17487/RFC9257"/>
        </reference>
        <reference anchor="RFC7542" target="https://www.rfc-editor.org/info/rfc7542">
          <front>
            <title>The Network Access Identifier</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <date month="May" year="2015"/>
            <abstract>
              <t>In order to provide inter-domain authentication services, it is necessary to have a standardized method that domains can use to identify each other's users. This document defines the syntax for the Network Access Identifier (NAI), the user identifier submitted by the client prior to accessing resources. This document is a revised version of RFC 4282. It addresses issues with international character sets and makes a number of other corrections to RFC 4282.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7542"/>
          <seriesInfo name="DOI" value="10.17487/RFC7542"/>
        </reference>
        <reference anchor="RFC4372" target="https://www.rfc-editor.org/info/rfc4372">
          <front>
            <title>Chargeable User Identity</title>
            <author fullname="F. Adrangi" initials="F." surname="Adrangi"/>
            <author fullname="A. Lior" initials="A." surname="Lior"/>
            <author fullname="J. Korhonen" initials="J." surname="Korhonen"/>
            <author fullname="J. Loughney" initials="J." surname="Loughney"/>
            <date month="January" year="2006"/>
            <abstract>
              <t>This document describes a new Remote Authentication Dial-In User Service (RADIUS) attribute, Chargeable-User-Identity. This attribute can be used by a home network to identify a user for the purpose of roaming transactions that occur outside of the home network. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4372"/>
          <seriesInfo name="DOI" value="10.17487/RFC4372"/>
        </reference>
        <reference anchor="RFC8559" target="https://www.rfc-editor.org/info/rfc8559">
          <front>
            <title>Dynamic Authorization Proxying in the Remote Authentication Dial-In User Service (RADIUS) Protocol</title>
            <author fullname="A. DeKok" initials="A." surname="DeKok"/>
            <author fullname="J. Korhonen" initials="J." surname="Korhonen"/>
            <date month="April" year="2019"/>
            <abstract>
              <t>RFC 5176 defines Change-of-Authorization (CoA) and Disconnect Message (DM) behavior for RADIUS. RFC 5176 also suggests that proxying these messages is possible, but it does not provide guidance as to how that is done. This specification updates RFC 5176 to correct that omission for scenarios where networks use realm-based proxying as defined in RFC 7542. This specification also updates RFC 5580 to allow the Operator-Name attribute in CoA-Request and Disconnect-Request packets.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8559"/>
          <seriesInfo name="DOI" value="10.17487/RFC8559"/>
        </reference>
        <reference anchor="RFC5281" target="https://www.rfc-editor.org/info/rfc5281">
          <front>
            <title>Extensible Authentication Protocol Tunneled Transport Layer Security Authenticated Protocol Version 0 (EAP-TTLSv0)</title>
            <author fullname="P. Funk" initials="P." surname="Funk"/>
            <author fullname="S. Blake-Wilson" initials="S." surname="Blake-Wilson"/>
            <date month="August" year="2008"/>
            <abstract>
              <t>EAP-TTLS is an EAP (Extensible Authentication Protocol) method that encapsulates a TLS (Transport Layer Security) session, consisting of a handshake phase and a data phase. During the handshake phase, the server is authenticated to the client (or client and server are mutually authenticated) using standard TLS procedures, and keying material is generated in order to create a cryptographically secure tunnel for information exchange in the subsequent data phase. During the data phase, the client is authenticated to the server (or client and server are mutually authenticated) using an arbitrary authentication mechanism encapsulated within the secure tunnel. The encapsulated authentication mechanism may itself be EAP, or it may be another authentication protocol such as PAP, CHAP, MS-CHAP, or MS-CHAP-V2. Thus, EAP-TTLS allows legacy password-based authentication protocols to be used against existing authentication databases, while protecting the security of these legacy protocols against eavesdropping, man-in-the-middle, and other attacks. The data phase may also be used for additional, arbitrary data exchange. This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5281"/>
          <seriesInfo name="DOI" value="10.17487/RFC5281"/>
        </reference>
        <reference anchor="RFC5931" target="https://www.rfc-editor.org/info/rfc5931">
          <front>
            <title>Extensible Authentication Protocol (EAP) Authentication Using Only a Password</title>
            <author fullname="D. Harkins" initials="D." surname="Harkins"/>
            <author fullname="G. Zorn" initials="G." surname="Zorn"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This memo describes an Extensible Authentication Protocol (EAP) method, EAP-pwd, which uses a shared password for authentication. The password may be a low-entropy one and may be drawn from some set of possible passwords, like a dictionary, which is available to an attacker. The underlying key exchange is resistant to active attack, passive attack, and dictionary attack. This document is not an Internet Standards Track specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5931"/>
          <seriesInfo name="DOI" value="10.17487/RFC5931"/>
        </reference>
        <reference anchor="RFC9190" target="https://www.rfc-editor.org/info/rfc9190">
          <front>
            <title>EAP-TLS 1.3: Using the Extensible Authentication Protocol with TLS 1.3</title>
            <author fullname="J. Preuß Mattsson" initials="J." surname="Preuß Mattsson"/>
            <author fullname="M. Sethi" initials="M." surname="Sethi"/>
            <date month="February" year="2022"/>
            <abstract>
              <t>The Extensible Authentication Protocol (EAP), defined in RFC 3748, provides a standard mechanism for support of multiple authentication methods. This document specifies the use of EAP-TLS with TLS 1.3 while remaining backwards compatible with existing implementations of EAP-TLS. TLS 1.3 provides significantly improved security and privacy, and reduced latency when compared to earlier versions of TLS. EAP-TLS with TLS 1.3 (EAP-TLS 1.3) further improves security and privacy by always providing forward secrecy, never disclosing the peer identity, and by mandating use of revocation checking when compared to EAP-TLS with earlier versions of TLS. This document also provides guidance on authentication, authorization, and resumption for EAP-TLS in general (regardless of the underlying TLS version used). This document updates RFC 5216.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9190"/>
          <seriesInfo name="DOI" value="10.17487/RFC9190"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAKSKFGUAA+1963IbV5Lmfz5FDR0bTbYBSqQoWVbHeoeW5Da3LYlr0uuZ
mMtGASgQ1SpUYaoKpGiH91n2WfbJNr+8nJOnUKC1sx3za/2jmwIKp84lT16/
zJxOpwd92VfFq+xNsWmLed6X9W12WXfFfNsW2VWbz/tyXnRZWWc/Xry5/On6
IJ/N2uIu/YF+tWjmdb6mwRZtvuyni+Jj83Ha5oviE/4RHsdH5babPj0/OOj6
vF78j7xqavpZ326Lg3LT8l9df/b06ddPzw7ytshf0Zz6oq2L/uD+9hXe9/Yf
brKfm/YjXv/nttluDj7ex6embzCDA3rfq6zrFwfddrYuu65s6puHDb3p8u3N
dwcHm/JVRv99kc3zOtt2RZa3bf6QHZXLLK+q7KHojrOmzVZ5t8pWRVscZFnf
zF/hC/qza9q+LZbdKx5iUSzzbdV39IR9/7CWr/HPg3zbr5r21cHBlPaSPrw4
oR38S/ORHpQ9u6hoEvZR09Iqv2uLQnc2y4p1XlavaF60X3+/pG9kE0/oyYOD
umnXtLV3xSt68tvXV6fntEffvX55+tU5fUB/nb188fyV/Pni/OxU/3z59Pyc
ZlTWS/97+uL0WXjm7PzZM/vzq+dfvwrjvYh/vtQ/nz3/yh54fvqVPfD8+cun
9u7T5zbui7NT+9mLF6fP4p/n9ufXX9mnXz17wSNcTt+clEW/NJrqq2666T7a
V32zzrtpsynqtsnXRBj2xV+bjg6ia+rpZrPBD4t8wz+m/8czb9/89OOHi3f4
k/7TC3FYLLYY51A+tfPL5D85M31EPpRNDE/c/MMNUcaq7zfdqydP9Ek+riz7
cPX2Pd54+f7Pg5d+oNn/qLPPPtRFdls1s7zKfi6n35UZUfY90fxjU/q5bIuq
6LrsW3rfYkbUQpRVlXk9Lz5jmvf0Lnn4ZN6sn7i9fEI/+Pnyu8sfPrweTPli
Trwi7wui60VD16VqcM2bOrsv+5VOfN7UdUGs5K7sHx6b/aE8bjM+3D/lMOP7
+5P7crossbVPFmU3b+6KdsofPeH/ndqE6PfXVx8+fLe76/LW603TLMFP6H3Z
d9s6w+ZdtfRZ/+icL4hr1NnrLe12u5h+W1TVZ8xbj1JvMTY7b4nV0tE9OXt6
dvrk6csnT89pATT/Tud1surXFRbx9v3126sP1zeDVbwmbs388N319PX3F1eP
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
K1d0lXGQm8B3dTqdZnB1HPwf/d18pILtAAA=

-->

</rfc>
