home *** CD-ROM | disk | FTP | other *** search
/ The Hacker's Encyclopedia 1998 / hackers_encyclopedia.iso / hacking / internet / anonftp.how < prev    next >
Encoding:
Text File  |  2003-06-11  |  23.9 KB  |  594 lines

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