Files
atomic-red-team/atomics/T1218/src/T1218-2.cpp
T

13 lines
180 B
C++
Raw Normal View History

2019-01-16 12:23:29 -05:00
#include <windows.h>
int beerTime()
{
WinExec("calc", SW_SHOWNORMAL);
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
beerTime();
return 0;
}