码迷,mamicode.com
首页 > 系统相关 > 详细

linux权限suid

时间:2018-10-12 18:27:20      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:进程   error   stdio.h   erro   exit   linux   efi   lin   文件   

1.创建文件1.txt,属于root用户,root组,权限为700
2.创建程序文件
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <fcntl.h>

#define BUFFSIZE 10

int main()
{
int fd;
char buf[BUFFSIZE];
fd = open("1.txt", O_RDWR);
if(fd < 0)
{
perror("1.txt");
return 1;
}
if(read(fd, buf, 10) < 0)
{
perror("1.txt");
return 1;
}
//打印进程uid,有效uid
printf("%d %d %s\n", getuid(), geteuid(), buf);
exit(1);
}
编译成a.out二进制文件
3.二进制文件a.out权限修改为4770,用户属于root,组为当前用户所在组,执行./a.out可以执行成功,因为进程有效用户已经为root

linux权限suid

标签:进程   error   stdio.h   erro   exit   linux   efi   lin   文件   

原文地址:http://blog.51cto.com/hjun169/2299403

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!