home *** CD-ROM | disk | FTP | other *** search
/ Danny Amor's Online Library / Danny Amor's Online Library - Volume 1.iso / html / faqs / faq / computer-security / anonymous-ftp-faq next >
Encoding:
Text File  |  1995-07-25  |  23.6 KB  |  583 lines

  1. Subject: computer-security/anonymous-ftp FAQ
  2. Newsgroups: alt.security,comp.security.misc,comp.security.unix,comp.unix.admin,news.answers,comp.answers,alt.answers
  3. From: cklaus@anshar.shadow.net (Christopher Klaus)
  4. Date: Mon, 31 Oct 1994 18:03:57 GMT
  5.  
  6. Archive-name: computer-security/anonymous-ftp-faq
  7. Post-Frequency: monthly
  8. Last-modified: 1994/7/24
  9. Version: 1.4
  10.  
  11.     How to set up a Secure Anonymous FTP Site
  12.  
  13.     The following is a FAQ on setting up a secure FTP Site.  FTP sites
  14. are known for much abuse by transferring illegal files.  They also open many
  15. oppurtunities for intruders to gain access via misconfigured setups.  And
  16. lastly many versions of ftp servers have had security holes.  This FAQ is
  17. intended to clean up this abuse by allowing administrators to go through this
  18. check list of steps to make sure their FTP is correctly configured and that
  19. they are running the most current ftp daemon.
  20.  
  21. This is organized in the following fashion, I am breaking into several parts
  22. as follows:
  23.  
  24. Part 1 - General Description of Setting up an "anonymous" ftp server.
  25. Part 2 - Setting up a chrooted Secure Anonymous ftp server.  
  26. Part 3 - OS Specific needed information and suggestions.
  27. Part 4 - Where to get other FTP daemons
  28. Part 5 - How to Know if your Anonymous FTP Server is secure
  29. Part 6 - Archie
  30. Part 7 - Acknowledgements.
  31.  
  32.  
  33.  
  34.  
  35. Part 1 - General Description of Setting up an "anonymous" ftp server.
  36.  
  37. How do I setup "anonymous" ftp securely?
  38.  
  39. PLEASE READ ALL NOTES AND WARNINGS!!!
  40.  
  41. 1) Create the user ftp in /etc/passwd.  Use a misc group.  The user's home
  42. directory will be ~ftp where ~ftp is the root you wish anonymous users to
  43. see.  Creating this user turns on anonymous ftp.
  44.  
  45. Use an invalid password and user shell for better security. The entry in the
  46. passwd file should look something like:
  47.  
  48.         ftp:*:400:400:Anonymous FTP:/home/ftp:/bin/true
  49.  
  50. 2) Create the home directory ~ftp.  Make the directory owned by root (NOT ftp)
  51. with the same group as ftp.  Thus, owner permissions are for root and group
  52. permissions are for the anonymous users.  Set the permissions for ~ftp to 555
  53. (read, nowrite, execute).
  54.  
  55. *** Some MAN pages recommend making the ~ftp directory owned by ftp.
  56. *** This is a big NO-NO, if you want any type of security on your system.
  57.  
  58.  
  59. 3) Create the directory ~ftp/bin.  This directory is owned by root (group
  60. e.g. wheel) with permissions 111 (noread, nowrite, execute).
  61.  
  62. 4) Copy the program ls into ~ftp/bin.  ls is owned by root with permissions
  63. 111 (noread, nowrite, execute).  Any other commands you put in ~ftp/bin 
  64. should have the same permissions as well.
  65.  
  66. 5)  Make the directory ~ftp/etc.  This directory is owned by root with
  67. permissions 111.
  68.  
  69. 6)  Create from scratch the files /etc/passwd and /etc/group in ~ftp/etc.
  70. These files should be mode 444.  The passwd file should only contain root,
  71. daemon, uucp, and ftp.  The group file must contain ftp's group. Use your
  72. /etc/passwd and /etc/group files as a template for creating passwd and group
  73. files going to ~ftp/etc.  You may even change the user names in this file,
  74. they are used only for 'ls' command.  So for example if all files in your
  75. ~ftp/pub/linux hierarchy will be maintained by a real user 'balon' with
  76. uid=156 you may put 
  77.  
  78.         linux:*:156:120:Kazik Balon::
  79.  
  80. in the ~ftp/etc/passwd file (regardless of his real username).  Leave only
  81. these users who will own files under ftp hierarchy (e.g. root, daemon,
  82. ftp...) and definitely remove *ALL* passwords by replacing them with '*' so
  83. the entry looks like:
  84.  
  85.     root:*:0:0:Ftp maintainer::
  86.     ftp:*:400:400: Anonymous ftp::
  87.  
  88.     For more security, you can just remove ~ftp/etc/passwd and
  89. ~ftp/etc/group (the effect is that ls -l will not show the directories' group
  90. names).  Wuarchive ftp daemon (and some others) have some extensions based on
  91. the contents of the group/passwd files, so read the appropriate documentation.
  92.  
  93. 7)  Make the directory ~ftp/pub.  This directory is owned by you and has the
  94. same group as ftp with permissions 555.  On most systems (like SunOS) you may
  95. want to make this directory 2555, ie. set-group-id, in order to create new
  96. files with the same group ownership.
  97.  
  98.  
  99. Files are left here for public distribution. All folders inside ~ftp/pub
  100. should have the same permissions as 555.
  101.  
  102. *** Neither the home directory (~ftp) nor any directory below it should be
  103. owned by ftp!  No files should be owned by ftp either.  Modern ftp daemons
  104. support all kinds of useful commands, such as chmod, that allow outsiders to
  105. undo your careful permission settings.  They also have configuration options
  106. like the following (WuFTP) to disable them:
  107.  
  108. # all the following default to "yes" for everybody
  109. delete          no      guest,anonymous         # delete permission?
  110. overwrite       no      guest,anonymous         # overwrite permission?
  111. rename          no      guest,anonymous         # rename permission?
  112. chmod           no      anonymous               # chmod permission?
  113. umask           no      anonymous               # umask permission?
  114.  
  115.  
  116. 8) If you wish to have a place for anonymous users to leave files, create
  117. the directory ~ftp/pub/incoming.  This directory is owned  by root with
  118. permissions 733.  Do a 'chmod +t ~ftp/pub/incoming'.  The ftp daemon will
  119. normally not allow an anonymous user to overwrite an existing file, but a
  120. normal user of the system would be able to delete anything.  By setting the
  121. mode to '1733' you prevent this from happening.  In wuftpd you may configure
  122. the daemon to create new files with permissions '600' owned by root or any
  123. other user.  Many  times, incoming directories are abused by exchanging pirated
  124. and pornographic material.  Abusers often create hidden directories there for
  125. this purpose.  Making the incoming directory unreadable by anonymous ftp helps
  126. to some extent.  With ordinary ftp severs there is no way to prevent
  127. directories being created in incoming. The WUarchive ftp server can limit
  128. uploads to certain directories and can restrict characters used in file names
  129. like this:
  130.  
  131. # specify the upload directory information
  132. upload  /var/spool/ftp  *       no
  133. upload  /var/spool/ftp  /incoming       yes     ftp     staff   0600    nodirs
  134.  
  135. # path filters                                                                                  # path-filter...
  136. path-filter  anonymous  /etc/msgs/pathmsg  ^[-A-Za-z0-9_\.]*$  ^\.  ^-
  137. path-filter  guest      /etc/msgs/pathmsg  ^[-A-Za-z0-9_\.]*$  ^\.  ^-
  138.  
  139. Suggestion: Create an extra file-system for your ftp-area (or at least for
  140. your incoming-area) to prevent a denial-of-service attack by filling your
  141. disk with garbage (inside your incoming directory).
  142.  
  143.     If you have wuftpd you may want to add some ftp extensions like
  144. compression/decompression 'on the fly' or creation of tar files for the
  145. directory hierarchies.  Get the appropriate sources (gzip, gnutar, compress),
  146. compile them and link statically, put in the ~ftp/bin directory and edit the
  147. appropriate file containing the definitions of the allowed conversions.
  148. /usr/bin/tar is already statically-linked.  You may wish to use gnu tar
  149. anyway.
  150.  
  151. Gary Mills wrote a small program to support the following:
  152. I got compress from ftp.uu.net, in the root directory, I believe, and compiled
  153. it.  To do tar and compress, I wrote a tiny program called `pipe', and
  154. statically-linked it. My /etc/ftpconversions file looks like this:
  155.  
  156. #strip prefix:strip postfix:addon prefix:addon postfix:external command:
  157. #types:options:description
  158.  :.Z:  :  :/bin/compress -d -c %s:T_REG|T_ASCII:O_UNCOMPRESS:UNCOMPRESS
  159.  :-z:  :  :/bin/compress -d -c %s:T_REG|T_ASCII:O_UNCOMPRESS:UNCOMPRESS
  160.  :  :  :.Z:/bin/compress -c %s:T_REG:O_COMPRESS:COMPRESS
  161.  :  :  :.tar:/bin/tar cf - %s:T_REG|T_DIR:O_TAR:TAR
  162.  :  :  :.tar.Z:/bin/pipe /bin/tar cf - %s | /bin/compress -c:T_REG|T_DIR:O_COMPRESS|O_TAR:TAR+COMPRESS
  163.  :  :  :.tar:/bin/gtar -c -f - %s:T_REG|T_DIR:O_TAR:TAR
  164.  :  :  :.tar.Z:/bin/gtar -c -Z -f - %s:T_REG|T_DIR:O_COMPRESS|O_TAR:TAR+COMPRESS
  165.  :  :  :.tar.gz:/bin/gtar -c -z -f - %s:T_REG|T_DIR:O_COMPRESS|O_TAR:TAR+GZIP
  166.  
  167. Here it is:
  168. -----------------8<-------------cut---------------
  169. /* pipe.c: exec two commands in a pipe */
  170.  
  171. #define NULL (char *)0
  172. #define MAXA 16
  173.  
  174. main(argc, argv) int argc; char *argv[]; {
  175.     char *av1[MAXA], *av2[MAXA];
  176.     int i, n, p[2], cpid;                                                         
  177.     i = 0; n = 0;
  178.     while ( ++i < argc && n < MAXA ) {
  179.         if ( *argv[i] == '|' && *(argv[i]+1) == '\0' ) break;
  180.         av1[n++] = argv[i];
  181.     }
  182.     if ( n == 0 ) uexit();
  183.     av1[n] = NULL;
  184.     n = 0;
  185.     while ( ++i < argc && n < MAXA )
  186.       av2[n++] = argv[i];
  187.     if ( n == 0 ) uexit();
  188.     av2[n] = NULL;
  189.     if ( pipe(p) != 0 ) exit(1);
  190.     if ( ( cpid = fork() ) == (-1) ) exit(1);
  191.     else if ( cpid == 0 ) {
  192.         (void)close(p[0]);
  193.         (void)close(1);
  194.         (void)dup(p[1]);
  195.         (void)close(p[1]);
  196.         (void)execv(av1[0], av1);
  197.         _exit(127);
  198.     }
  199.     else {
  200.         (void)close(p[1]);
  201.         (void)close(0);
  202.         (void)dup(p[0]);
  203.         (void)close(p[0]);
  204.         (void)execv(av2[0], av2);
  205.         _exit(127);                                                                   }
  206.     /*NOTREACHED*/
  207. }
  208.  
  209. uexit() {
  210.     (void)write(2, "Usage: pipe <command> | <command>\n", 34);
  211.     exit(1);
  212. }
  213.  
  214.  
  215.  
  216. 9) Other things to do:
  217.  
  218. as root:     touch ~ftp/.rhosts ~ftp/.forward
  219.              chmod 400 ~ftp/.rhosts ~ftp/.forward
  220.  
  221. ie. make these files zero-length and owned by root.
  222.  
  223. Due to the last /bin/mail bugs in SunOS:
  224.  
  225.         touch /usr/spool/mail/ftp; chmod 400 /usr/spool/mail/ftp
  226.  
  227. Consider an email-alias for the ftp-admin(s) to provide an email-address for
  228. problems-reports.
  229.  
  230. If you are mounting some disks from other machines (or even your own) to the
  231. ~ftp hierarchy, mount it read-only. The correct entry for the /etc/fstab (on
  232. the host with ftpd) is something like:
  233.  
  234. other:/u1/linux /home/ftp/pub/linux nfs ro,noquota,nosuid,intr,bg 1 0
  235.  
  236. This mounts under /home/ftp/pub/linux the disk from host 'other' with no     
  237. quota, no 'suid' programs (just in case), interruptible (in case 'other' 
  238. goes down) and 'bg' - so if 'other' is down when you reboot it will not stop
  239. you trying to mount /home/ftp/pub/linux all over again.                      
  240.  
  241.  
  242.  
  243. Part 2 - Setting up a chrooted Secure Anonymous ftp server.
  244.  
  245. This part was contributed by Marcus J Ranum <mjr@tis.com>
  246.  
  247. Steps
  248. -----
  249.  
  250. 1) Build a statically linked version of ftpd and put it in ~ftp/bin.
  251.         Make sure it's owned by root.
  252.  
  253. 2) Build a statically linked version of /bin/ls if you'll need one.
  254.         Put it in ~ftp/bin. If you are on a Sun, and need to build
  255.         one, there's a ported version of the BSD net2 ls command
  256.         for SunOs on ftp.tis.com: pub/firewalls/toolkit/patches/ls.tar.Z
  257.         Make sure it's owned by root.
  258.  
  259. 3) Chown ~ftp to root and make it mode 755     THIS IS VERY IMPORTANT
  260.  
  261. 4) Set up copies of ~ftp/etc/passwd and ~ftp/etc/group just as you would                  normally, EXCEPT make 'ftp's home directory '/'   -- make sure
  262.         they are owned by root.
  263.  
  264. 5) Write a wrapper to kick ftpd off and install it in /etc/inetd.conf
  265.         The wrapper should look something like: (assuming ~ftp = /var/ftp)
  266.  
  267. main()
  268. {
  269.         if(chdir("/var/ftp")) {
  270.                 perror("chdir /var/ftp");
  271.                 exit(1);
  272.         }
  273.         if(chroot("/var/ftp")) {
  274.                 perror("chroot /var/ftp");
  275.                 exit(1);
  276.         }
  277.         /* optional: seteuid(FTPUID); */
  278.         execl("/bin/ftpd","ftpd","-l",(char *)0);
  279.         perror("exec /bin/ftpd");
  280.         exit(1);
  281. }
  282.  
  283. Options:
  284.         You can use 'netacl' from the toolkit or tcp_wrappers to achieve
  285.         the same effect.
  286.  
  287.         We use 'netacl' to switch so that a few machines that connect to
  288.         the FTP service *don't* get chrooted first. This makes transferring
  289.         files a bit less painful.
  290.         You may also wish to take your ftpd sources and find all the places
  291.         where it calls seteuid() and remove them, then have the wrapper do
  292.         a setuid(ftp) right before the exec. This means that if someone
  293.         knows a hole that makes them "root" they still won't be. Relax and
  294.         imagine how frustrated they will be.
  295.  
  296.         If you're hacking ftpd sources, I suggest you turn off a bunch of
  297.         the options in ftpcmd.y by unsetting the "implemented" flag in
  298.         ftpcmd.y. This is only practical if your FTP area is read-only.
  299.  
  300. 6) As usual, make a pass through the FTP area and make sure that the files
  301.         are in correct modes and that there's nothing else in there that
  302.         can be executed.
  303.  
  304. 7) Note, now, that your FTP area's /etc/passwd is totally separated from
  305.         your real /etc/passwd. This has advantages and disadvantages.
  306.  
  307. 8) Some stuff may break, like syslog, since there is no /dev/log. Either
  308.         build a version of ftpd with a UDP-based syslog() routine or
  309.         run a second syslogd based on the BSD Net2 code, that maintains
  310.         a unix-domain socket named ~ftp/dev/log with the -p flag.
  311.  
  312. REMEMBER:
  313.         If there is a hole in your ftpd that lets someone get "root"
  314.         access they can do you some damage even chrooted. It's just
  315.         lots harder. If you're willing to hack some code, making the
  316.         ftpd run without permissions is a really good thing. The
  317.         correct operation of your hacked ftpd can be verified by
  318.         connecting to it and (while it's still at the user prompt)
  319.         do a ps-axu and verify that it's not running as root.                     
  320.  
  321.  
  322. Part 3 - OS Specific needed information and suggestions.
  323.  
  324.  
  325. Older SVR2 and SVR3 system, RTU 6.0 (Masscomp, now Concurrent Real Time UNIX),
  326. AT&T 3B1 and 3B2 machines - May need dev/tcp:
  327.  
  328. [dev/tcp]
  329.  
  330. These ftpd implementations may require a ~ftp/dev/tcp in order for anonymous
  331. ftp to work.  
  332.  
  333. You have to create a character special device with the appropriate major and
  334. minor device numbers. The appropriate major and minor numbers of ~ftp/dev/tcp
  335. are what the major and minor numbers of /dev/tcp are.
  336.  
  337. The ~ftp/dev is a directory and ~ftp/dev/tcp is a character special device. 
  338. Make them owned and grouped by root. Permissions for ~ftp/dev is root
  339. read/write/exec and other & group read and exec. The permissions for
  340. ~ftp/dev/tcp is root read/write, other & group read.
  341.  
  342.  
  343.  
  344. HPUX
  345.  
  346. [Logging] If you're using HP's native ftpd, the line in /etc/inetd.conf
  347. should execute ftpd -l, which does extra logging.
  348.  
  349.  
  350. SunOS
  351.  
  352. [Libraries] To set up SunOS to use its shared dynamic libraries, follow these
  353. steps:
  354.  
  355. 1) Create the directory ~ftp/usr.  This directory is owned by root with
  356. permissions 555.
  357.  
  358. 2) Create the directory ~ftp/usr/lib.  This directory is owned by root with
  359. permissions 555. 
  360.  
  361. 3) Copy the runtime loader ld.so into ~ftp/usr/lib for use by ls.  ld.so is
  362. owned by root with permissions 555. 
  363.  
  364. 4) Copy the latest version of the shared C library, libc.so.* into
  365. ~ftp/usr/lib for use by ls.  
  366.  
  367. libc.so.* is owned by root with permissions 555.
  368.  
  369. ***4.1.2(or above) users: you also need to copy  /usr/lib/libdl.so.* to
  370. ~ftp/lib.
  371.  
  372. 5) Create the directory ~ftp/dev.  This directory is owned by root with
  373. permissions 111.
  374.  
  375. 6) ~ftp/dev/zero is needed by the runtime loader.  Move into the directory
  376. ~ftp/dev and create it with the command: 
  377.  
  378.     mknod zero c 3 12
  379.  
  380. chown ~ftp/dev/zero to root.  Make sure it's readable.
  381.  
  382. ***For novices: WARNING!! Don't try to copy /dev/zero to ~ftp/dev/zero!!
  383. This is an endless file of zeroes and it will completely fill your filesystem!
  384.  
  385. 7) If you want to have the local time showing when people connect, create the
  386. directory ~ftp/usr/share/lib/zoneinfo and copy
  387. /usr/share/lib/zoneinfo/localtime
  388.  
  389. 8) If you are bothered by the need for copying your libraries so that you can
  390. use Sun's 'ls', which is dynamically linked, you can try to get a statically
  391. linked copy of 'ls' instead.  The CD-ROM that contains Sun's OS has a
  392. statically-linked version of ls.  In this case, you can dispense with steps
  393. #6-8.
  394.  
  395. Statically linked versions may be available from the following sources:
  396.  
  397.     If you want a statically linked "ls" get the GNU fileutils off a
  398. archive site near you and statically link it. 
  399.  
  400. [Logging] Sun's standard ftpd logs *all* password information.  To correct it,
  401. install patch:
  402.  
  403. 101640-03       SunOS 4.1.3: in.ftpd logs password info when -d option is
  404. used.   
  405.  
  406. In /etc/inetd.conf find the line that starts with "ftp".  At the
  407. end of that line, it should read "in.ftpd".  Change that to "in.ftpd -dl". 
  408. In /etc/syslog.conf, add a line that looks like:              
  409.                        
  410. daemon.*                               /var/adm/daemonlog
  411.  
  412. The information can be separated, such as:
  413.  
  414. daemon.info                                    /var/adm/daemon.info
  415. daemon.debug                                   /var/adm/daemon.debug
  416. daemon.err                                     /var/adm/daemon.err
  417.  
  418.  
  419. Note that the whitespace between the two columns must include at least one
  420. TAB character, not just spaces, or it won't work.  Of course your log file
  421. could be anything you want.  Then, create the logfile (touch
  422. /var/adm/daemonlog should do).  Finally, restart inetd and syslogd, either
  423. individually, or by rebooting the system.  You should be good to go.  If you
  424. do not install the patch, make sure the log file is owned by root and mode
  425. 600, as the ftp daemon will log *everything*, including users' passwords.
  426.  
  427. *** You want to make all logs root only readable for security reasons
  428. *** If a user mistypes his password for his username, it could be compromised
  429. *** if anyone can read the log files.
  430.  
  431.  
  432.  
  433. Part 4 - Where to get other FTP daemons
  434.  
  435. Wuarchive FTP 2.4- A secure FTP daemon that allows improved access-control,
  436. logging, pre-login banners, and is very configurable: 
  437.     Can be ftp'd from ftp.uu.net in "/networking/ftp/wuarchive-ftpd"
  438. directory.  Be certain to verify the checksum information to confirm that you
  439. have retrieved a valid copy. [Warning: Older versions of Wu-FTP are extremely
  440. insecure and in some cases have been trojaned.]
  441.  
  442.                         BSD        SVR4         
  443.      File               Checksum   Checksum    MD5 Digital Signature
  444.      -----------------  --------   ---------   --------------------------------
  445.      wu-ftpd-2.4.tar.Z  38213  181  20337 362  cdcb237b71082fa23706429134d8c32e
  446.      patch_2.3-2.4.Z    09291    8  51092  16  5558a04d9da7cdb1113b158aff89be8f
  447.  
  448.      For DECWRL ftpd, sites can obtain version 5.93 via anonymous FTP
  449.      from gatekeeper.dec.com in the "/pub/misc/vixie" directory.
  450.  
  451.                         BSD        SVR4         
  452.      File               Checksum   Checksum    MD5 Digital Signature
  453.      -----------------  --------   --------- --------------------------------
  454.      ftpd.tar.gz        38443  60  1710 119  ae624eb607b4ee90e318b857e6573500
  455.  
  456.      For BSDI systems, patch 005 should be applied to version 1.1 of
  457.      the BSD/386 software.  You can obtain the patch file via
  458.      anonymous FTP from ftp.bsdi.com in the "/bsdi/patches-1.1"
  459.      directory.
  460.  
  461.                         BSD        SVR4         
  462.      File               Checksum   Checksum    MD5 Digital Signature
  463.      -----------------  --------   ---------   --------------------------------
  464.      BU110-005          35337 272  54935 543   1f454d4d9d3e1397d1eff0432bd383cf
  465.  
  466.  
  467. Public Domain Sources:
  468.    ftp.uu.net            ~ftp/systems/unix/bsd-sources/libexec/ftpd
  469.    gatekeeper.dec.com    ~ftp/pub/DEC/gwtools/ftpd.tar.Z
  470.  
  471.  
  472. Part 5 - How to Know if your Anonymous FTP Server is secure
  473.  
  474. This section is intended for the administrator to go down a small check 
  475. list of things to make sure his server is not easily compromised.
  476.  
  477.   a) Check to make sure your ftp server does not have SITE EXEC command by
  478. telneting to port 21 and typing SITE EXEC.  If your ftp daemon has SITE EXEC
  479. make sure it is the most current version (ie, Wu-FTP 2.4).  In older versions
  480. this allows anyone to gain shell via port 21.
  481.  
  482.   b) Check to make sure no one can log in and make files or directories in the
  483. main directory.  If anyone can log in as anonymous FTP and make files such as
  484. .rhosts and .forward, instant access is granted to any intruder. 
  485.  
  486.   c) Check to make sure the main directory is NOT owned by ftp.  If it is
  487. owned by FTP, an intruder could SITE CHMOD 777 the main directory and then
  488. plant files to give him instant access.  SITE CHMOD command should be removed
  489. because anonymous users do not need any extra priviledges.
  490.  
  491.  d) Check to make sure NO files or directories are owned by ftp. If they are,
  492. it is possible an intruder could replace them with his own trojan versions. 
  493.  
  494.  e) There were several bugs in old daemons, so it is very important to make
  495. sure you are running the most current ftp daemons. 
  496.  
  497.  
  498.  
  499. Part 6 - Archie
  500.  
  501. Searches FTP sites for programs.  Login into these sites as archie
  502. or use client software for faster access.  To get your own anonymous
  503. site added to Archie's search list, e-mail archie-updates@bunyip.com.
  504.  
  505.     archie.ac.il               132.65.20.254    (Israel server)
  506.     archie.ans.net             147.225.1.10     (ANS server, NY (USA))
  507.     archie.au                  139.130.4.6      (Australian Server)
  508.     archie.doc.ic.ac.uk        146.169.11.3     (United Kingdom Server)
  509.     archie.edvz.uni-linz.ac.at 140.78.3.8       (Austrian Server)
  510.     archie.funet.fi            128.214.6.102    (Finnish Server)
  511.     archie.internic.net        198.49.45.10     (AT&T server, NY (USA))
  512.     archie.kr                  128.134.1.1      (Korean Server)
  513.     archie.kuis.kyoto-u.ac.jp  130.54.20.1      (Japanese Server)
  514.     archie.luth.se             130.240.18.4     (Swedish Server)
  515.     archie.ncu.edu.tw          140.115.19.24    (Taiwanese server)
  516.     archie.nz                  130.195.9.4      (New Zealand server)
  517.     archie.rediris.es          130.206.1.2      (Spanish Server)
  518.     archie.rutgers.edu         128.6.18.15      (Rutgers University (USA))
  519.     archie.sogang.ac.kr        163.239.1.11     (Korean Server)
  520.     archie.sura.net            128.167.254.195  (SURAnet server MD (USA))
  521.     archie.sura.net(1526)      128.167.254.195  (SURAnet alt. MD (USA))
  522.     archie.switch.ch           130.59.1.40      (Swiss Server)
  523.     archie.th-darmstadt.de     130.83.22.60     (German Server)
  524.     archie.unipi.it            131.114.21.10    (Italian Server)
  525.     archie.univie.ac.at        131.130.1.23     (Austrian Server)
  526.     archie.unl.edu             129.93.1.14      (U. of Nebraska, Lincoln (USA))
  527.     archie.univ-rennes1.fr                      (French Server)
  528.     archie.uqam.ca             132.208.250.10   (Canadian Server)
  529.     archie.wide.ad.jp          133.4.3.6        (Japanese Server)
  530.  
  531.  
  532.  
  533. Part 7 - Acknowledgements
  534.  
  535. Thanks to the following people for suggestions that help shape this FAQ:
  536.  
  537. Tomasz Surmacz (tsurmacz@asic.ict.pwr.wroc.pl)
  538. Wolfgang Ley (Ley@rz.tu-clausthal.de) 
  539. Russel Street (russells@ccu1.auckland.ac.nz) 
  540. Gary Mills (mills@CC.UManitoba.CA) 
  541. Nicholas Ironmonger (ndi@sam.math.ethz.ch)
  542. Morten Welinder (terra@diku.dk) 
  543. Nick Christenson (npc@minotaur.jpl.nasa.gov) 
  544. Mark Hanning-Lee (markhl@romoe.caltech.edu)
  545. Marcus J Ranum <mjr@tis.com>
  546.  
  547.  
  548.  
  549. Copyright
  550.  
  551. This paper is Copyright (c) 1994
  552.  by Christopher Klaus of Internet Security Systems, Inc.
  553.  
  554.     Permission is hereby granted to give away free copies.  You may 
  555. distribute, transfer, or spread this paper.  You may not pretend that you
  556. wrote it.  This copyright notice must be maintained in any copy made.  
  557.  
  558.  
  559. Disclaimer
  560.  
  561.     The information within this paper may change without notice. Use of
  562. this information constitutes acceptance for use in an AS IS condition.
  563. There are NO warranties with regard to this information. In no event shall
  564. the author be liable for any damages whatsoever arising out of or in
  565. connection with the use or spread of this information.  Any use of this
  566. information is at the user's own risk.
  567.  
  568.  
  569.  
  570. Address of Author
  571.  
  572.     Please send suggestions, updates, and comments to:    
  573.  
  574.     Christopher Klaus <cklaus@shadow.net>
  575.     of Internet Security Systems, Inc. <iss@shadow.net>
  576.  
  577. -- 
  578. Christopher William Klaus  <cklaus@shadow.net>  <iss@shadow.net>
  579. Internet Security Systems, Inc.         Computer Security Consulting
  580. 2209 Summit Place Drive,              Penetration Analysis of Networks
  581. Atlanta,GA 30350-2430. (404)518-0099. Fax: (404)518-0030
  582.  
  583.