코드의 취약점을 찾아 익스플로잇 코드를 짜고 flag를 얻는 문제이다. #include #include #include #include void alarm_handler() { puts("TIME OUT"); exit(-1);}void initialize() { setvbuf(stdin, NULL, _IONBF, 0); setvbuf(stdout, NULL, _IONBF, 0); signal(SIGALRM, alarm_handler); alarm(30);}void read_flag() { // flag 파일을 읽어주는 함수 system("cat /flag");}int main(int argc, char *argv[]) { char buf[0x80]; // buf..