home *** CD-ROM | disk | FTP | other *** search
/ Peanuts NeXT Software Archives / Peanuts-1.iso / CDROM / FAQs / Security / anonymous-ftp-faq next >
Encoding:
Internet Message Format  |  1996-10-23  |  27.7 KB

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