HelloWorld 소스코드 /* File: hello-world.cpp Build opts: - /MT -> Library Static Linking - /DYNAMICBASE:NO -> Disable ASLR - /od -> Disable Optimization */ #include #include char* str; int main() { int delay = 1000; Sleep(delay); // 1000ms(1초)를 대기합니다. str = (char*)"Hello, world!\n"; printf(str); return 0; } 이 프로그램은 1초를 대기하고 printf로 hello,world!를 출력하는 프로그램이다. 먼저 신뢰할 수 없는 프로그램일 경우 악성코드 프로그램을 대비해 정적분석도..