home *** CD-ROM | disk | FTP | other *** search
/ Chaos Computer Club 1997 February / cccd_beta_feb_97.iso / contrib / cert / ca9509 < prev    next >
PGP Signed Message  |  1997-02-28  |  14KB  |  317 lines

  1. -----BEGIN PGP SIGNED MESSAGE-----
  2.  
  3. =============================================================================
  4. CERT(sm) Advisory CA-95:09                 
  5. Original issue date: August 29, 1995
  6. Last revised: August 30, 1996
  7.               Information previously in the README was inserted
  8.               into the advisory. Updated version number of AUSCERT checklist
  9.               and the appendix.
  10.  
  11.               A complete revision history is at the end of this file.
  12.                     
  13. Topic: Solaris ps Vulnerability
  14. - -----------------------------------------------------------------------------
  15.  
  16.                The text of this advisory is taken primarily 
  17.            from AUSCERT advisory AA-95.07, with their permission.  
  18.  
  19. A vulnerability exists in Solaris systems that allows a race condition to be
  20. exploited to gain root access.  The essential problem is that the ps(1)
  21. program maintains a data file in the /tmp directory, and the /tmp directory is
  22. world-writable, allowing users to delete other users' files in /tmp. This
  23. vulnerability affects Solaris 2.x (SunOS 5.x) systems. 
  24.  
  25. An exploit program for this vulnerability has been published. We urge
  26. you to take the actions described in Section III as soon as possible.
  27.  
  28. We will update this advisory as we receive additional information.
  29. Please check advisory files regularly for updates that relate to your site.
  30.  
  31. - ------------------------------------------------------------------------------
  32. I.   Description
  33.  
  34.      A race condition exists in at least one Solaris 2.x (SunOS 5.x) system
  35.      program that can be exploited to gain root access if the user has access
  36.      to the temporary files.  Access to temporary files may be obtained if the
  37.      permissions on the /tmp and /var/tmp directories are set incorrectly. 
  38.      The permissions on the /tmp directory are often reset incorrectly by
  39.      the system if tmpfs (which is mounting swap as /tmp) is in use.
  40.  
  41. II.  Impact
  42.  
  43.      Users logged in to the system may gain unauthorized root privileges.
  44.      
  45. III. Solution
  46.      
  47.      A. Determine if your system is vulnerable
  48.  
  49.         To determine if you are running tmpfs, the following command can be
  50.         used to verify if the file system for /tmp is swap:
  51.  
  52.           % /usr/sbin/df -k /tmp
  53.           Filesystem          kbytes    used   avail capacity  Mounted on
  54.           swap                 28348     12    28336     0%    /tmp
  55.  
  56.         or look in the file /etc/vfstab for the configuration line:
  57.  
  58.           #device     device   mount    FS      fsck    mount     mount
  59.           #to mount   to fsck  point    type    pass    at boot   options
  60.           swap          -      /tmp     tmpfs     -      yes         -
  61.  
  62.         If either of these two conditions exist, then you are running tmpfs
  63.         and the system may automatically reset the permission bits of /tmp at
  64.         the next reboot.
  65.  
  66.          To verify if your configuration is currently vulnerable, the
  67.          following command may be used:
  68.  
  69.               % /usr/bin/ls -ld /tmp
  70.               drwxrwxrwt   2 root     root       61 Aug 15 12:12 /tmp
  71.  
  72.          If the sticky bit (t) is not set (it will be an x), then the
  73.          system is vulnerable.  In addition, we recommend that the owner
  74.          and group for /tmp be changed to root and root, respectively.
  75.  
  76.  
  77.      B. Perform the following workarounds
  78.  
  79.         These workarounds have been verified with Sun Microsystems. Apply
  80.         these workarounds until you an install a patch. (Patch information is
  81.         in Sec. C. below.)
  82.  
  83.         1. Immediate - fix /tmp permissions
  84.  
  85.            A workaround that takes effect immediately is to set the sticky bit
  86.            on the /tmp directory using the following command as root:
  87.  
  88.              # /usr/bin/chmod 1777 /tmp
  89.  
  90.            Note that this command must be performed after each reboot if you
  91.            are mounting swap as /tmp (using tmpfs).
  92.  
  93.           In addition, the ownership and group membership of the /tmp
  94.           directory should be verified using /usr/bin/ls -ld /tmp, and if
  95.           incorrect may be reset by:
  96.  
  97.              # /usr/bin/chown root /tmp
  98.              # /usr/bin/chgrp root /tmp
  99.  
  100.            The AUSCERT UNIX Security Checklist addresses this issue in
  101.            Section 5.5.  This section is reproduced in the appendix of this
  102.            advisory. The entire AUSCERT checklist may be obtained from these
  103.            locations.
  104.           
  105.            Sites outside of Australia should use the info.cert.org FTP site.
  106.  
  107.        ftp://info.cert.org/pub/tech_tips/AUSCERT_checklist_1.1
  108.        ftp://ftp.auscert.org.au/pub/auscert/papers/unix_security_checklist_1.1
  109.  
  110.         2. Permanent - make the above change to /tmp permissions permanent
  111.  
  112.                 The change noted in item B.1 above will be lost upon
  113.                 reboot. To make the changes permanent, create the
  114.                 following script as /etc/init.d/tmpfsfix:
  115.  
  116.           -----------------------------cut here--8<----------------------------
  117.           #!/bin/sh
  118.  
  119.           if [ -d /tmp ]
  120.           then
  121.              /usr/bin/chmod 1777 /tmp
  122.              /usr/bin/chgrp root /tmp
  123.              /usr/bin/chown root /tmp
  124.           fi
  125.           ------------------------------cut here---8<--------------------------
  126.  
  127.           After creating this file, the following commands should be issued
  128.           as root to make the file executable, set appropriate owner and group,
  129.           and create the necessary symbolic link to ensure that it is executed
  130.           upon reboot appropriately:
  131.  
  132.              # /usr/bin/ln -s /etc/init.d/tmpfsfix /etc/rc2.d/S06tmpfix
  133.              # /usr/bin/chmod 744  /etc/init.d/tmpfsfix
  134.              # /usr/bin/chown root /etc/init.d/tmpfsfix
  135.              # /usr/bin/chgrp sys /etc/init.d/tmpfsfix
  136.              # /bin/rm -f /etc/rc3.d/S79tmpfix
  137.  
  138.           If you have done item B.1 above, you can reboot at your leisure.
  139.           Otherwise, reboot your system now. In either case, verify the
  140.           permissions of /tmp immediately after your next system reboot.
  141.  
  142.        3. Check /var/tmp permissions
  143.  
  144.           We recommend that you also check and correct the /var/tmp
  145.           directory.  Note that this directory is not usually mounted as
  146.           tmpfs, so it normally would not be subject to automatic resetting
  147.           of its permission bits on reboot.
  148.  
  149.            % /usr/bin/ls -ld /var/tmp
  150.              drwxrwxrwt   2 root     root      512 Aug 15 11:35 /var/tmp
  151.  
  152.     C. Install a vendor patch
  153.  
  154.        On September 20, 1995, Sun Microsystems, Inc., provided the following
  155.        information in their advisory.
  156.  
  157. - ---------------------------------------------------------------------------
  158.             Begin Text provided by vendor
  159.  
  160. II. Announcement of patches for Solaris 2.x "ps_data" vulnerability
  161.  
  162.     A. Patch list
  163.  
  164.     We have produced patches for the versions of SunOS shown below.
  165.  
  166.          OS version      Patch ID    Patch File Name
  167.          ----------      ---------   --------------- 
  168.          5.3             101545-02   101545-02.tar.Z
  169.          5.4             102711-01   102711-01.tar.Z
  170.          5.4_x86         102712-01   102712-01.tar.Z
  171.  
  172.     B. Patch notes
  173.  
  174.     1. SunOS 4.1.x systems are not affected by this bug.
  175.  
  176.     2. The fix has been applied to the upcoming version of Solaris.
  177.  
  178.  
  179. III. Checksum Table
  180.  
  181.     In the checksum table we show the BSD and SVR4 checksums and MD5
  182.     digital signatures for the compressed tar archives.
  183.  
  184.    File            BSD          SVR4        MD5
  185.    Name            Checksum     Checksum    Digital Signature
  186.    --------------- -----------  ----------  --------------------------------
  187.    101545-02.tar.Z 41218    77  47754  153  A8FB866780E7207D26CF16210BCFDC83
  188.    102711-01.tar.Z 17256    69  20376  138  98A449372C5ABBDB7C37B08BFE0E6ED7
  189.    102712-01.tar.Z 29867    68  56717  136  E324004BB8C09990B2790CB5D29D3AF5
  190.  
  191.    The checksums shown above are from the BSD-based checksum
  192.    (on 4.1.x, /bin/sum;  on Solaris 2.x, /usr/ucb/sum) and from
  193.    the SVR4 version on Solaris 2.x (/usr/bin/sum).
  194.  
  195.             End Text provided by vendor
  196. - ---------------------------------------------------------------------------
  197.  
  198. ..............................................................................
  199. Appendix: Excerpt from AUSCERT UNIX Security Checklist (Version 1.1)
  200.  5.5  File Permissions 
  201.    *    ENSURE that the permissions of /etc/utmp are set to 644.
  202.    *    ENSURE that the permissions of /etc/sm and /etc/sm.bak are set to
  203.         2755.
  204.    *    ENSURE that the permissions of /etc/state are set to 644.
  205.    *    ENSURE that the permissions of /etc/motd and /etc/mtab are set to 644.
  206.    *    ENSURE that the permissions of /etc/syslog.pid are set to 644.
  207.             [NOTE: this may be reset each time you restart syslog.]
  208.    *    DO consider removing read access to files that users do not need to 
  209.         access.
  210.    *    ENSURE that the kernel (e.g., /vmunix) is owned by root, has group set
  211.  
  212.         to 0 (wheel on SunOS) and permissions set to 644.
  213.    *    ENSURE that /etc, /usr/etc, /bin, /usr/bin, /sbin, /usr/sbin, /tmp and
  214.          /var/tmp are owned by root and that the sticky-bit is set on /tmp and
  215.         on /var/tmp (see G.14).  Refer to the AUSCERT Advisory AA-95:05 (see 
  216.          A.1).
  217.    *    ENSURE that there are no unexpected world writable files or 
  218.         directories on your system.  
  219.         See G.15 for example commands to find group and world writable files
  220.         and directories.                           
  221.    *    CHECK that files which have the SUID or SGID bit enabled, should have
  222.         it enabled (see G.16).
  223.    *    ENSURE the umask value for each user is set to something sensible 
  224.         like 027 or 077. 
  225.         (Refer to section E.1 for a shell script to check this).
  226.    *    ENSURE all files in /dev are special files.
  227.             Special files are identified with a letter in the first position
  228.             of the permissions bits.  See G.17 for a command to find files in 
  229.             /dev which are not special files or directories.
  230.             Note: Some systems have directories and a shell script in /dev
  231.             which may be legitimate.  Please check the manual pages for more 
  232.             information.
  233.    *    ENSURE that there are no unexpected special files outside /dev.
  234.         See G.18 for a command to find any block special or character
  235.         special files.
  236.  
  237. - ----------------------------------------------------------------------------
  238. The CERT Coordination Center staff thanks AUSCERT, the Australian response
  239. team, for their permission to reuse text from their advisory AA-95.07 and 
  240. for their cooperation and assistance.
  241. - ----------------------------------------------------------------------------
  242.  
  243. If you believe that your system has been compromised, contact the CERT
  244. Coordination Center or your representative in the Forum of Incident
  245. Response and Security Teams (FIRST).
  246.  
  247. If you wish to send sensitive incident or vulnerability information to
  248. CERT staff by electronic mail, we strongly advise that the email be
  249. encrypted.  The CERT Coordination Center can support a shared DES key, PGP
  250. (public key available via anonymous FTP on info.cert.org), or PEM (contact
  251. CERT staff for details).
  252.  
  253. Internet email: cert@cert.org
  254. Telephone: +1 412-268-7090 (24-hour hotline)
  255.            CERT personnel answer 8:30 a.m.-5:00 p.m. EST(GMT-5)/EDT(GMT-4),
  256.            and are on call for emergencies during other hours.
  257. Fax: +1 412-268-6989
  258.  
  259. Postal address:  CERT Coordination Center
  260.                  Software Engineering Institute
  261.                  Carnegie Mellon University
  262.                  Pittsburgh, PA 15213-3890
  263.                  USA
  264.  
  265. CERT advisories and bulletins are posted on the USENET newsgroup
  266. comp.security.announce. If you would like to have future advisories and
  267. bulletins mailed to you or to a mail exploder at your site, please send mail
  268. to cert-advisory-request@cert.org.
  269.  
  270. Past CERT publications, information about FIRST representatives, and
  271. other information related to computer security are available for anonymous
  272. FTP from info.cert.org. 
  273.  
  274. This material may be reproduced and distributed without permission provided it
  275. is used for noncommercial purposes, and the CERT Coordination Center and
  276. AUSCERT are acknowledged.
  277.  
  278. CERT is a service mark of Carnegie Mellon University.
  279.  
  280. =============================================================================
  281. UPDATES
  282.  
  283. If anyone has trouble retrieving the electronic file CA-95:09.Solaris.ps.vul,
  284. they should use the file name CA-95:09.Solaris-ps.vul.
  285.  
  286.  
  287. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  288. Revision history
  289.  
  290. Aug. 30, 1996  Information previously in the README was inserted
  291.                 into the advisory. Updated version number of AUSCERT checklist
  292.                 and the appendix.
  293. Sep. 20, 1995  Sec. III.A.1 - corrected the command and explanation for
  294.                 checking your configuration.
  295.                Sec. III.B.1 - corrected commands for verifying ownership and
  296.                 group membership.
  297.                Sec. III.B.2 - replaced this section, which was incorrect.
  298.                Sec. III.B.3 - replaced the text and command.
  299.                Sec. III.C - added this section, which contains Sun patch
  300.                 information.
  301.                Appendix - corrected item 10.
  302.                Updates section - added a note about the file name.
  303.  
  304.  
  305.  
  306.  
  307.  
  308. -----BEGIN PGP SIGNATURE-----
  309. Version: 2.6.2
  310.  
  311. iQCVAwUBMiS5XXVP+x0t4w7BAQGZjQP+JrrejhcSiirhSD/v8jimMcKTlI5OJwx7
  312. 2gIhsUeJ/mUP5nbWLySxMh9HTu3VaBacl79eS07ospL671fJmuysU87WdlLhLjwt
  313. PvkbY2KBwOsV9KoaotHcV5Hlw6ZfQyKVhDJrtIlILLmR6UNwYRhPeWqZEmnchWps
  314. Bclz1zVmZeo=
  315. =OyXc
  316. -----END PGP SIGNATURE-----
  317.