Bugs in the at command - summary

Guy Harris guy at rlgvax.UUCP
Thu Jul 5 08:02:34 AEST 1984


> The problem is that "at" uses the owner of the file to establish
> the uid & gid of the process... Similar things can happen if you allow
> users to "chown" ownership away.

This is a problem on "USG" UNIX (S3, S5, etc.).  Some versions of S3 and
S5 have added "at", and some didn't plug this hole (they probably have
since then - if they didn't, they should!).  The plug was suggested to
me by the same person who pointed out the hole, and is also used in the
S5R2 version of "at".

The setuid bit is sort of a passkey; a setuid program allows you some access
to the privileges of the user owns the program file.  Since "USG"
UNIX allows you to give files away, this requires that the setuid bit be
turned off when a file is given away (by other than the super-user), which
is done.  An "at" file owned by a given user also is similar; if it is
given away, it should not allow the "at" job to have the privileges of the
new user.  The solution is to put the setuid bit on all "at" job files,
and have the "at" daemon require the setuid bit to be on.  If the file is
given away, the setuid bit goes away, and the job is no longer valid.  Any
other software that uses the owner of a file to grant privileges can probably
use the same trick.

	Guy Harris
	{seismo,ihnp4,allegra}!rlgvax!guy



More information about the Comp.unix.wizards mailing list