Original issue date: August 29, 1995<BR>
Last revised: September 23, 1997<BR>
Updated Copyright statement

<P>

<P>A complete revision history is at the end of this file.

<P>The text of this advisory is taken primarily from AUSCERT advisory AA-95.07, with their permission.

<P>A vulnerability exists in Solaris systems that allows a race condition to be
exploited to gain root access.  The essential problem is that the <I>ps(1)</I>
program maintains a data file in the /tmp directory, and the /tmp directory is
world-writable, allowing users to delete other users' files in /tmp. This
vulnerability affects Solaris 2.x (SunOS 5.x) systems.

<P>An exploit program for this vulnerability has been published. We urge
you to take the actions described in Section III as soon as possible.

<P>We will update this advisory as we receive additional information.
Please check advisory files regularly for updates that relate to your site.

<P><HR>

<P>
<H2>I. Description</H2>

<P>A race condition exists in at least one Solaris 2.x (SunOS 5.x) system
program that can be exploited to gain root access if the user has access
to the temporary files.  Access to temporary files may be obtained if the
permissions on the /tmp and /var/tmp directories are set incorrectly.
The permissions on the /tmp directory are often reset incorrectly by
the system if tmpfs (which is mounting swap as /tmp) is in use.

<P>
<H2>II. Impact</H2>

<P>Users logged in to the system may gain unauthorized root privileges.

<P>
<H2>III. Solution</H2>

<P>
<H3>A. Determine if your system is vulnerable</H3>

<P>To determine if you are running tmpfs, the following command can be
used to verify if the file system for /tmp is swap:

<P>
<PRE>
% /usr/sbin/df -k /tmp
Filesystem          kbytes    used   avail capacity  Mounted on
swap                 28348     12    28336     0%    /tmp
</PRE>
or look in the file /etc/vfstab for the configuration line:
<PRE>
#device     device   mount    FS      fsck    mount     mount
#to mount   to fsck  point    type    pass    at boot   options
swap          -      /tmp     tmpfs     -      yes         -
</PRE>
If either of these two conditions exist, then you are running tmpfs
and the system may automatically reset the permission bits of /tmp at
the next reboot.

<P>To verify if your configuration is currently vulnerable, the
following command may be used:

<P>
<PRE>
% /usr/bin/ls -ld /tmp
drwxrwxrwt   2 root     root       61 Aug 15 12:12 /tmp
</PRE>

<P>If the sticky bit (t) is not set (it will be an x), then the
system is vulnerable.  In addition, we recommend that the owner
and group for /tmp be changed to root and root, respectively.

<P>
<H3>B. Perform the following workarounds</H3>

<P>These workarounds have been verified with Sun Microsystems. Apply
these workarounds until you an install a patch. (Patch information is
in Sec. C. below.)

<P>
<H4>1. Immediate - fix /tmp permissions</H4>

<P>A workaround that takes effect immediately is to set the sticky bit
on the /tmp directory using the following command as root:

<P><PRE>
# /usr/bin/chmod 1777 /tmp
</PRE>

<P>Note that this command must be performed after each reboot if you
are mounting swap as /tmp (using tmpfs).

<P>In addition, the ownership and group membership of the /tmp
directory should be verified using /usr/bin/ls -ld /tmp, and if
incorrect may be reset by:

<P><PRE>
# /usr/bin/chown root /tmp
# /usr/bin/chgrp root /tmp
</PRE>

<P>The AUSCERT UNIX Security Checklist addresses this issue in
Section 5.5.  This section is reproduced in the appendix of this
advisory. The entire AUSCERT checklist may be obtained from these
locations.

<P>Sites outside of Australia should use the ftp.cert.org FTP site.

<P>
<A HREF=ftp://ftp.cert.org/pub/tech_tips/AUSCERT_checklist_1.1>ftp://ftp.cert.org/pub/tech_tips/AUSCERT_checklist_1.1</A><BR>
<A HREF=ftp://ftp.auscert.org.au/pub/auscert/papers/unix_security_checklist_1.1>ftp://ftp.auscert.org.au/pub/auscert/papers/unix_security_checklist_1.1</A>

<P>
<H4>2. Permanent - make the above change to /tmp permissions permanent</H4>

<P>The change noted in item B.1 above will be lost upon
reboot. To make the changes permanent, create the
following script as /etc/init.d/tmpfsfix:
<PRE>
-----------------------------cut here--8<----------------------------
#!/bin/sh

if [ -d /tmp ]
then
   /usr/bin/chmod 1777 /tmp
   /usr/bin/chgrp root /tmp
   /usr/bin/chown root /tmp
fi
------------------------------cut here---8<--------------------------
</PRE>

<P>After creating this file, the following commands should be issued
as root to make the file executable, set appropriate owner and group,
and create the necessary symbolic link to ensure that it is executed
upon reboot appropriately:

<P><PRE>
             # /usr/bin/ln -s /etc/init.d/tmpfsfix /etc/rc2.d/S06tmpfix
             # /usr/bin/chmod 744  /etc/init.d/tmpfsfix
             # /usr/bin/chown root /etc/init.d/tmpfsfix
             # /usr/bin/chgrp sys /etc/init.d/tmpfsfix
             # /bin/rm -f /etc/rc3.d/S79tmpfix
</PRE>

<P>If you have done item B.1 above, you can reboot at your leisure.
Otherwise, reboot your system now. In either case, verify the
permissions of /tmp immediately after your next system reboot.

<P>
<H4>3. Check /var/tmp permissions</H4>

<P>We recommend that you also check and correct the /var/tmp
directory.  Note that this directory is not usually mounted as
tmpfs, so it normally would not be subject to automatic resetting
of its permission bits on reboot.

<P>
<PRE>
% /usr/bin/ls -ld /var/tmp
drwxrwxrwt   2 root     root      512 Aug 15 11:35 /var/tmp
</PRE>

<P>
<H3>C. Install a vendor patch</H3>

<P>On September 20, 1995, Sun Microsystems, Inc., provided the following
information in their advisory.

<P><HR>
<CENTER>
Begin Text provided by vendor
</CENTER>
<H3>II. Announcement of patches for Solaris 2.x &quot;ps_data&quot; vulnerability</H3>
<H4>A. Patch list</H4>

<P>We have produced patches for the versions of SunOS shown below.

<P>
<PRE>
   OS version      Patch ID    Patch File Name
   ----------      ---------   ---------------
   5.3             101545-02   101545-02.tar.Z
   5.4             102711-01   102711-01.tar.Z
   5.4_x86         102712-01   102712-01.tar.Z
</PRE>

<P>
<H4>B. Patch notes</H4>
1. SunOS 4.1.x systems are not affected by this bug.
2. The fix has been applied to the upcoming version of Solaris.

<P>
<H3>III. Checksum Table</H3>

<P>In the checksum table we show the BSD and SVR4 checksums and MD5
digital signatures for the compressed tar archives.

<P>
<PRE>
   File            BSD          SVR4        MD5
   Name            Checksum     Checksum    Digital Signature
   --------------- -----------  ----------  --------------------------------
   101545-02.tar.Z 41218    77  47754  153  A8FB866780E7207D26CF16210BCFDC83
   102711-01.tar.Z 17256    69  20376  138  98A449372C5ABBDB7C37B08BFE0E6ED7
   102712-01.tar.Z 29867    68  56717  136  E324004BB8C09990B2790CB5D29D3AF5
</PRE>

<P>The checksums shown above are from the BSD-based checksum
(on 4.1.x, /bin/sum;  on Solaris 2.x, /usr/ucb/sum) and from
the SVR4 version on Solaris 2.x (/usr/bin/sum).

<P>
<CENTER>End Text provided by vendor</CENTER>
<HR>

<P>
<H2>Appendix: Excerpt from AUSCERT UNIX Security Checklist (Version 1.1)  5.5  File Permissions</H2>
<UL>
<LI>ENSURE that the permissions of /etc/utmp are set to 644.
<LI>ENSURE that the permissions of /etc/sm and /etc/sm.bak are set to
2755.
<LI>ENSURE that the permissions of /etc/state are set to 644.
<LI>ENSURE that the permissions of /etc/motd and /etc/mtab are set to 644.
<LI>ENSURE that the permissions of /etc/syslog.pid are set to 644.
<BR>[<B>NOTE:</B> this may be reset each time you restart syslog.]
<LI>DO consider removing read access to files that users do not need to
access.
<LI>ENSURE that the kernel (e.g., /vmunix) is owned by root, has group set
        to 0 (wheel on SunOS) and permissions set to 644.<BR>
<LI>ENSURE that /etc, /usr/etc, /bin, /usr/bin, /sbin, /usr/sbin, /tmp and
/var/tmp are owned by root and that the sticky-bit is set on /tmp and
on /var/tmp (see G.14).  Refer to the AUSCERT Advisory AA-95:05 (see
A.1).
<LI>ENSURE that there are no unexpected world writable files or
directories on your system.
<BR>See G.15 for example commands to find group and world writable files
and directories.
<LI>CHECK that files which have the SUID or SGID bit enabled, should have
it enabled (see G.16).
<LI>ENSURE the umask value for each user is set to something sensible
like 027 or 077.
(Refer to section E.1 for a shell script to check this).
<LI>ENSURE all files in /dev are special files.
<UL>Special files are identified with a letter in the first position
of the permissions bits.  See G.17 for a command to find files in
/dev which are not special files or directories.
<BR><B>Note:</B> Some systems have directories and a shell script in /dev
which may be legitimate.  Please check the manual pages for more
information.</UL>
<LI>ENSURE that there are no unexpected special files outside /dev.
See G.18 for a command to find any block special or character
special files.
</UL>

<P><HR>

<P>The CERT Coordination Center staff thanks AUSCERT, the Australian response
team, for their permission to reuse text from their advisory AA-95.07 and
for their cooperation and assistance.
<HR>

<P>
<H2>UPDATES</H2>

<P>If anyone has trouble retrieving the electronic file CA-95.09.Solaris.ps.vul,
they should use the file name CA-95.09.Solaris-ps.vul.

<!--#include virtual="/include/footer_nocopyright.html" -->
<P>Copyright 1995, 1996 Carnegie Mellon University.</P>

<HR>

Revision History
<PRE>
Sep. 23, 1997  Updated copyright statement
Aug. 30, 1996  Information previously in the README was inserted
                into the advisory. Updated version number of AUSCERT checklist
                and the appendix.
Sep. 20, 1995  Sec. III.A.1 - corrected the command and explanation for
                checking your configuration.
               Sec. III.B.1 - corrected commands for verifying ownership and
                group membership.
               Sec. III.B.2 - replaced this section, which was incorrect.
               Sec. III.B.3 - replaced the text and command.
               Sec. III.C - added this section, which contains Sun patch
                information.
               Appendix - corrected item 10.
               Updates section - added a note about the file name.
</PRE>