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

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