2013년 9월 11일 수요일

Hackerschool ftz level11

/* level 11 */
#include <stdio.h>

#include <stdlib.h>

int main( int argc, char *argv[] )
{
char str[256];
setreuid( 3092, 3092 );
strcpy( str, argv[1] );
printf( str );
}


/bin/sh의 주소를 구하는 소스코드이다.


#include <stdio.h>
int main()
{
long shell=0x42127ea4;
while(memcmp((void*)shell,"/bin/sh",8))
{
shell++;
}
printf("0x%x\n",shell);
}

댓글 없음:

댓글 쓰기