문제 문제파일 풀이다운받은 문제 파일 풀이 진행할 폴더로 이동하기 wsl 실행하기 basic_exploitation_002.c 분석#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 get_shell() { system("/bin/sh");}int main(int argc, char *argv[]) { char buf..