su.c__2018.08.13

代码su.c:

#include<stdio.h>
#include<stdlib.h>
#include<unistd.h>
#include<string.h>
#include<assert.h>
#include<pwd.h>
int main(int argc,char *argv[])
{
	char*s="root";
	if(argc==2)
	{
		s=argv[1];
	}
	struct passwd*p=getpwnam(s);
	if(p==NULL)
	{
		printf("user:%s not find\n",s);
		exit(1);
	}
	pid_t pid=fork();
	assert(pid!=-1);
	if(pid==0)
	{
		setgid(p->pw_gid);
		setuid(p->pw_uid);
		setenv("HOME",p->pw_dir,1);
		execl(p->pw_shell,p->pw_shell,(char*)0);
		perror("su execl error");
		exit(1);

	}
	wait(NULL);//
/*
chown root su
chgrp root su
chmod u+s su
*/

}

猜你喜欢

转载自blog.csdn.net/weixin_40316053/article/details/81613062
SU
今日推荐