MalwareSourceCode/Win32/Proof of Concepts/Process-Hollowing/sourcecode/HelloWorld/HelloWorld.cpp

15 lines
280 B
C++
Raw Normal View History

2022-04-12 01:00:13 +00:00
// HelloWorld.cpp : Defines the entry point for the console application.
//
#include "stdafx.h"
#include <windows.h>
int WINAPI WinMain(HINSTANCE hInstance,HINSTANCE hPrevInstance,LPSTR lpCmdLine,int nCmdShow)
{
MessageBoxA(0, "Hello World", "Hello World", 0);
return 0;
}