> Wie kann ich einem user erlauben, aus einem 'setuid'
> shellscript (sh) 'ein ifconfig xxx up' abzusetzen?
ich mache sowas mit einem kleinen c-programm, welches ich das suid bit
gebe und nur einer bestimmten gruppe ausfuehrbar mache ..
//////
#include <unistd.h>
#include <stdlib.h>
main()
{
int oUid=getuid();
setuid(0);
system("/sbin/ifconfig isp0 up");
setuid(oUid);
}
///////
mit kommandozeilen-parametern geht das natuerlich auch..
To Unsubscribe: send mail to majordomo(at)de.FreeBSD.org
with "unsubscribe de-bsd-questions" in the body of the message
Received on Wed 24 Nov 1999 - 09:54:12 CET