2013년 9월 15일 일요일
2013년 9월 12일 목요일
Hackerschool ftz level12
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);
}
2013년 9월 8일 일요일
피드 구독하기:
글 (Atom)