mirror of
https://github.com/vxunderground/MalwareSourceCode.git
synced 2024-12-25 21:05:28 +00:00
8 lines
131 B
C
8 lines
131 B
C
|
#include <stdio.h>
|
||
|
#include <Windows.h>
|
||
|
|
||
|
int main(void)
|
||
|
{
|
||
|
//__asm int 3;
|
||
|
MessageBox(0, "Message body", "Message title", MB_OK);
|
||
|
}
|