Vulnerability Note VU#10277

Various shells create temporary files insecurely when using << operator

Original Release date: 02 Jul 2001 | Last revised: 24 Apr 2007

Overview

sh uses /tmp files of a predictable name in creating files for input redirection using the << operator.

Description

When performing the "<<" redirection, /bin/sh creates a temporary file in /tmp with a name based on the process id, writes subsequent input out to that file, and then closes the file before re-opening it as the standard input of the command to be executed. At no stage are the results of the creat(), write(), or open() calls checked for an error status.

Impact

It is possible for another user to alter what is read from this file.

  • If the sticky bit is not set on /tmp, the file can be simply removed, and a new file created in its place
  • If the sticky bit is set, then it is possible to guess what the file will be called and create it before /bin/sh does (the creat() call performed by the shell does not result in an open() call with O_EXCL set) and hence it is possible to maintain a handle on the underlying file.
  • If a fifo is created in place of the temporary file it is particularly easy to insert an extra command into the input transparently, and without having to worry about ensuring the bug is exploited during the narrow window of time in which it occurs.
Even without reading, creating this file may block the execution of commands using the << operator.
It may also be possible to create a symbolic link named as the temporary file and pointed to any other file on the system writable by the user of the shell, which may lead to corruption of the file to which the link is pointed.

Solution

Apply vendor patches; see the Systems Affected section below.

Avoid the use of << operator in cron jobs and similar administration scripts.

Systems Affected

VendorStatusDate NotifiedDate Updated
Apple Computer, Inc.Vulnerable14 May 200124 Apr 2007
Berkeley Software Design, Inc.Not Vulnerable14 May 200124 Apr 2007
Compaq Computer CorporationVulnerable14 May 200124 Apr 2007
Data GeneralUnknown14 May 200124 Apr 2007
Debian LinuxUnknown14 May 200124 Apr 2007
DECVulnerable14 May 200124 Apr 2007
FreeBSD, Inc.Vulnerable20 Nov 200024 Apr 2007
FujitsuUnknown14 May 200124 Apr 2007
Hewlett-Packard CompanyVulnerable14 May 200124 Apr 2007
IBM CorporationVulnerable14 May 200124 Apr 2007
Mandriva, Inc.Vulnerable20 Nov 200024 Apr 2007
NEC CorporationUnknown14 May 200124 Apr 2007
NetBSDUnknown14 May 200124 Apr 2007
NeXTUnknown14 May 200124 Apr 2007
OpenBSDNot Vulnerable30 Oct 200024 Apr 2007
View More »

CVSS Metrics (Learn More)

Group Score Vector
Base N/A N/A
Temporal N/A N/A
Environmental N/A N/A

References

Credit

The original discoverer of this vul was Gordon Irlam of the Univeristy of Adelaide, Australia.

This document was written by James T. Ellis, modified by Tim Shimeall to reflect 2001 reporting

Other Information

  • CVE IDs: CVE-2000-1134
  • Date Public: 17 Jul 91
  • Date First Published: 02 Jul 2001
  • Date Last Updated: 24 Apr 2007
  • Severity Metric: 1.73
  • Document Revision: 19

Feedback

If you have feedback, comments, or additional information about this vulnerability, please send us email.

This product is provided subject to the Notification as indicated here: http://www.us-cert.gov/legal.html#notify

Document Feedback

Was this document helpful?   Yes   |   Somewhat   |  No