You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
482 B
22 lines
482 B
4 years ago
|
#include "ClassDemo.hpp"
|
||
4 years ago
|
|
||
|
ObfuscateRoutine
|
||
|
extern "C" int ModuleEntry()
|
||
|
{
|
||
4 years ago
|
AllocConsole();
|
||
|
freopen("conin$", "r", stdin);
|
||
|
freopen("conout$", "w", stdout);
|
||
|
freopen("conout$", "w", stderr);
|
||
|
printf("hello world\n");
|
||
|
getchar();
|
||
|
|
||
4 years ago
|
MessageBoxA(0, "Demo", "Hello From Obfuscated Routine!", 0);
|
||
|
UsermodeMutateDemo();
|
||
|
UsermodeNoObfuscation();
|
||
4 years ago
|
|
||
|
VirtualFuncDemo DemoInstance = Demo();
|
||
|
DemoInstance.PrintTest();
|
||
|
|
||
|
VirtualFuncDemo Demo2Instance = Demo2();
|
||
|
Demo2Instance.PrintTest();
|
||
4 years ago
|
}
|