<?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-05" 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-05"/>
    <author initials="A." surname="DeKok" fullname="Alan DeKok">
      <organization>FreeRADIUS</organization>
      <address>
        <email>aland@freeradius.org</email>
      </address>
    </author>
    <date year="2023" month="October" day="23"/>
    <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>
        <li>05 - Rework title to deprecating "insecure practices".  Clarifications based on WG feedback.</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:
H4sIAItgNmUAA+1963IbV5LmfzxFDRUbTbYBSqSoi9Wx3qEp2ua2JXFFej0T
c9koAAdAWYUqTFWBFO3wPss+yz7Z5v3kKRRo7WzH/Fr/6KaAwqlzyZPXLzMn
k8moK7oyvMnehk0TZnlXVMvsqmrDbNuE7LrJZ10xC21WVNnH87dXP92M8um0
CXfpD+SreT2r8jUMNm/yRTeZh0/1p0mTz8Nn/Ic9jh8V23by7MVo1HZ5Nf8f
eVlX8LOu2YZRsWnor7Y7ffbs62eno7wJ+RuYUxeaKnSj++UbfN/lP9xmP9fN
J3z990293Yw+3cenJm9xBiN435us7eajdjtdF21b1NXtwwbedHV5+91otCne
ZPDfk2yWV9m2DVneNPlDdlgssrwss4fQHmV1k63ydpWtQhNGWdbVszf4BfzZ
1k3XhEX7hoaYh0W+LbsWntDvH9b8Nf5zlG+7Vd28GY0msJfw4fkx7OBf60/w
IO/ZeQmT0I/qBlb5XROC7GyWhXVelG9gXrBff7+Ab3gTj+HJ0aiqmzVs7V14
A09+e3F9cgZ79N3F65NXZ/AB/HX6+uWLN/zny7PTE/nz9bOzM5hRUS387+GL
k+f2zOnZ8+f656sXX7+x8V7GP1/Ln89fvNIHXpy80gdevHj9TN998kLHfXl6
oj97+fLkefzzTP/8+pV++ur5SxrhavL2uAjdQmmqK9vJpv2kX3X1Om8n9SZU
TZ2vgTD0i1/qFg6iravJZrPBH4Z8Qz+G/8dnLt/+9PHD+Tv8E/6TC3EQ5lsc
54A/1fPL+D8+M3mEP+RNtCdu/+EWKGPVdZv2zdOn8iQdV5Z9uL58j2+8ev99
76UfYPYfZfbZhypky7Ke5mX2czH5rsiAsu+B5h+b0s9FE8rQttm38L75FKgF
KKss8moWvmCa9/Aufvh4Vq+fur18Cj/4+eq7qx8/XPSmfD4DXpF3Aeh6XsN1
KWu85nWV3RfdSiY+q6sqACu5K7qHx2Z/wI/rjA/2T9lmfH9/fF9MFgVu7dN5
0c7qu9BM6KOn9L8TnRD8/ub6w4fvdned33qzqesF8hN4X/bdtspw864b+Kx7
dM7nwDWq7GILu93MJ9+GsvyCectRyi3Gzc4bYLVwdE9Pn52ePH32+umzM1gA
zL+VeR2vunWJi7h8f3N5/eHmtreKC+DWxA/f3Uwufji/fmzSNwF4/KZuuz+e
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
9J/A+JPJJMM/R/8HFEvFyOLtAAA=

-->

</rfc>
