rfc2245.txt
上传用户:ycwykj01
上传日期:2007-01-04
资源大小:1819k
文件大小:10k
源码类别:

网络编程

开发平台:

Unix_Linux

  1. Network Working Group                                          C. Newman
  2. Request for Comments: 2245                                      Innosoft
  3. Category: Standards Track                                  November 1997
  4.                         Anonymous SASL Mechanism
  5. Status of this Memo
  6.    This document specifies an Internet standards track protocol for the
  7.    Internet community, and requests discussion and suggestions for
  8.    improvements.  Please refer to the current edition of the "Internet
  9.    Official Protocol Standards" (STD 1) for the standardization state
  10.    and status of this protocol.  Distribution of this memo is unlimited.
  11. Copyright Notice
  12.    Copyright (C) The Internet Society (1997).  All Rights Reserved.
  13. Abstract
  14.    It is common practice on the Internet to permit anonymous access to
  15.    various services.  Traditionally, this has been done with a plain
  16.    text password mechanism using "anonymous" as the user name and
  17.    optional trace information, such as an email address, as the
  18.    password.  As plaintext login commands are not permitted in new IETF
  19.    protocols, a new way to provide anonymous login is needed within the
  20.    context of the SASL [SASL] framework.
  21. 1. Conventions Used in this Document
  22.    The key words "MUST", "MUST NOT", "SHOULD", "SHOULD NOT", and "MAY"
  23.    in this document are to be interpreted as defined in "Key words for
  24.    use in RFCs to Indicate Requirement Levels" [KEYWORDS].
  25. 2. Anonymous SASL mechanism
  26.    The mechanism name associated with anonymous access is "ANONYMOUS".
  27.    The mechanism consists of a single message from the client to the
  28.    server.  The client sends optional trace information in the form of a
  29.    human readable string.  The trace information should take one of
  30.    three forms: an Internet email address, an opaque string which does
  31.    not contain the '@' character and can be interpreted by the system
  32.    administrator of the client's domain, or nothing.  For privacy
  33.    reasons, an Internet email address should only be used with
  34.    permission from the user.
  35. Newman                      Standards Track                     [Page 1]
  36. RFC 2245                Anonymous SASL Mechanism           November 1997
  37.    A server which permits anonymous access will announce support for the
  38.    ANONYMOUS mechanism, and allow anyone to log in using that mechanism,
  39.    usually with restricted access.
  40.    The formal grammar for the client message using Augmented BNF [ABNF]
  41.    follows.
  42.    message         = [email / token]
  43.    TCHAR           = %x20-3F / %x41-7E
  44.                      ;; any printable US-ASCII character except '@'
  45.    email           = addr-spec
  46.                      ;; as defined in [IMAIL], except with no free
  47.                      ;; insertion of linear-white-space, and the
  48.                      ;; local-part MUST either be entirely enclosed in
  49.                      ;; quotes or entirely unquoted
  50.    token           = 1*255TCHAR
  51. 3. Example
  52.    Here is a sample anonymous login between an IMAP client and server.
  53.    In this example, "C:" and "S:" indicate lines sent by the client and
  54.    server respectively.  If such lines are wrapped without a new "C:" or
  55.    "S:" label, then the wrapping is for editorial clarity and is not
  56.    part of the command.
  57.    Note that this example uses the IMAP profile [IMAP4] of SASL.  The
  58.    base64 encoding of challenges and responses, as well as the "+ "
  59.    preceding the responses are part of the IMAP4 profile, not part of
  60.    SASL itself.  Newer profiles of SASL will include the client message
  61.    with the AUTHENTICATE command itself so the extra round trip below
  62.    (the server response with an empty "+ ") can be eliminated.
  63.    In this example, the user's opaque identification token is "sirhc".
  64.         S: * OK IMAP4 server ready
  65.         C: A001 CAPABILITY
  66.         S: * CAPABILITY IMAP4 IMAP4rev1 AUTH=CRAM-MD5 AUTH=ANONYMOUS
  67.         S: A001 OK done
  68.         C: A002 AUTHENTICATE ANONYMOUS
  69.         S: +
  70.         C: c2lyaGM=
  71.         S: A003 OK Welcome, trace information has been logged.
  72. Newman                      Standards Track                     [Page 2]
  73. RFC 2245                Anonymous SASL Mechanism           November 1997
  74. 4. Security Considerations
  75.    The anonymous mechanism grants access to information by anyone.  For
  76.    this reason it should be disabled by default so the administrator can
  77.    make an explicit decision to enable it.
  78.    If the anonymous user has any write privileges, a denial of service
  79.    attack is possible by filling up all available space.  This can be
  80.    prevented by disabling all write access by anonymous users.
  81.    If anonymous users have read and write access to the same area, the
  82.    server can be used as a communication mechanism to anonymously
  83.    exchange information.  Servers which accept anonymous submissions
  84.    should implement the common "drop box" model which forbids anonymous
  85.    read access to the area where anonymous submissions are accepted.
  86.    If the anonymous user can run many expensive operations (e.g., an
  87.    IMAP SEARCH BODY command), this could enable a denial of service
  88.    attack.  Servers are encouraged to limit the number of anonymous
  89.    users and reduce their priority or limit their resource usage.
  90.    If there is no idle timeout for the anonymous user and there is a
  91.    limit on the number of anonymous users, a denial of service attack is
  92.    enabled.  Servers should implement an idle timeout for anonymous
  93.    users.
  94.    The trace information is not authenticated so it can be falsified.
  95.    This can be used as an attempt to get someone else in trouble for
  96.    access to questionable information.  Administrators trying to trace
  97.    abuse need to realize this information may be falsified.
  98.    A client which uses the user's correct email address as trace
  99.    information without explicit permission may violate that user's
  100.    privacy.  Information about who accesses an anonymous archive on a
  101.    sensitive subject (e.g., sexual abuse) has strong privacy needs.
  102.    Clients should not send the email address without explicit permission
  103.    of the user and should offer the option of supplying no trace token
  104.    -- thus only exposing the source IP address and time.  Anonymous
  105.    proxy servers could enhance this privacy, but would have to consider
  106.    the resulting potential denial of service attacks.
  107.    Anonymous connections are susceptible to man in the middle attacks
  108.    which view or alter the data transferred.  Clients and servers are
  109.    encouraged to support external integrity and encryption mechanisms.
  110.    Protocols which fail to require an explicit anonymous login are more
  111.    susceptible to break-ins given certain common implementation
  112.    techniques.  Specifically, Unix servers which offer user login may
  113. Newman                      Standards Track                     [Page 3]
  114. RFC 2245                Anonymous SASL Mechanism           November 1997
  115.    initially start up as root and switch to the appropriate user id
  116.    after an explicit login command.  Normally such servers refuse all
  117.    data access commands prior to explicit login and may enter a
  118.    restricted security environment (e.g., the Unix chroot function) for
  119.    anonymous users.  If anonymous access is not explicitly requested,
  120.    the entire data access machinery is exposed to external security
  121.    attacks without the chance for explicit protective measures.
  122.    Protocols which offer restricted data access should not allow
  123.    anonymous data access without an explicit login step.
  124. 5. References
  125.    [ABNF] Crocker, D. and P. Overell, "Augmented BNF for Syntax
  126.    Specifications: ABNF", RFC 2234, November 1997.
  127.    [IMAIL] Crocker, D., "Standard for the Format of Arpa Internet Text
  128.    Messages", STD 11, RFC 822, August 1982.
  129.    [IMAP4] Crispin, M., "Internet Message Access Protocol - Version
  130.    4rev1", RFC 2060, December 1996.
  131.    [KEYWORDS] Bradner, S., "Key words for use in RFCs to Indicate
  132.    Requirement Levels", RFC 2119, March 1997.
  133.    [SASL] Myers, J., "Simple Authentication and Security Layer (SASL)",
  134.    RFC 2222, October 1997.
  135. 6. Author's Address
  136.    Chris Newman
  137.    Innosoft International, Inc.
  138.    1050 Lakes Drive
  139.    West Covina, CA 91790 USA
  140.    Email: chris.newman@innosoft.com
  141. Newman                      Standards Track                     [Page 4]
  142. RFC 2245                Anonymous SASL Mechanism           November 1997
  143. 7.  Full Copyright Statement
  144.    Copyright (C) The Internet Society (1997).  All Rights Reserved.
  145.    This document and translations of it may be copied and furnished to
  146.    others, and derivative works that comment on or otherwise explain it
  147.    or assist in its implementation may be prepared, copied, published
  148.    and distributed, in whole or in part, without restriction of any
  149.    kind, provided that the above copyright notice and this paragraph are
  150.    included on all such copies and derivative works.  However, this
  151.    document itself may not be modified in any way, such as by removing
  152.    the copyright notice or references to the Internet Society or other
  153.    Internet organizations, except as needed for the purpose of
  154.    developing Internet standards in which case the procedures for
  155.    copyrights defined in the Internet Standards process must be
  156.    followed, or as required to translate it into languages other than
  157.    English.
  158.    The limited permissions granted above are perpetual and will not be
  159.    revoked by the Internet Society or its successors or assigns.
  160.    This document and the information contained herein is provided on an
  161.    "AS IS" basis and THE INTERNET SOCIETY AND THE INTERNET ENGINEERING
  162.    TASK FORCE DISCLAIMS ALL WARRANTIES, EXPRESS OR IMPLIED, INCLUDING
  163.    BUT NOT LIMITED TO ANY WARRANTY THAT THE USE OF THE INFORMATION
  164.    HEREIN WILL NOT INFRINGE ANY RIGHTS OR ANY IMPLIED WARRANTIES OF
  165.    MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
  166. Newman                      Standards Track                     [Page 5]