MalwareSourceCode/Win32/Proof of Concepts/Process-Hollowing/sourcecode/HelloWorld/HelloWorld.cpp
vxunderground 900263ea6f updates and moves
n/a
2022-04-11 20:00:13 -05:00

15 lines
280 B
C++

// 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;
}