home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3240 < prev    next >
Text File  |  1991-04-25  |  982b  |  27 lines

  1. Newsgroups: alt.sources
  2. From: peltz@cerl.uiuc.edu (Steve Peltz)
  3. Subject: Re: sux, an enhancer for su
  4. Message-ID: <1991Apr25.174534.13912@ux1.cso.uiuc.edu>
  5. Date: Thu, 25 Apr 1991 17:45:34 GMT
  6.  
  7. In article <462@frcs.UUCP> paul@frcs.UUCP (Paul Nash) writes:
  8. >I recently hacked up a fairly trivial enhancer for `su', that allows
  9. >members of group `wheel' to su at will _without_ needing the root
  10. >password.
  11.  
  12. su on our system requires the real uid to be root to avoid being asked for
  13. a password, so your program won't work. However, in those cases where it
  14. WILL work, wouldn't the following one-line shell script do just as well?
  15. Maybe there's a reason; maybe the "groups" command is Sun specific or
  16. something...
  17.  
  18. Don't forget to change it to be owned by root and setuid and executable...
  19.  
  20. Sorry - not in shar format; why put in an extra 20 lines to wrap 2?
  21.  
  22. #!/bin/sh
  23. groups | grep -s wheel && su $* || echo Sorry
  24. --
  25. Steve Peltz
  26. Internet: peltz@cerl.uiuc.edu    PLATO/NovaNET: peltz/s/cerl
  27.