-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdllmain.cpp
More file actions
42 lines (31 loc) · 1017 Bytes
/
dllmain.cpp
File metadata and controls
42 lines (31 loc) · 1017 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#include "pch.h"
#include "util.h"
#include "hooks.h"
VOID WINAPI Main()
{
Util::InitConsole();
const char* logo =
XOR(
R"(
____ __ __ _ _ _____
/ __ \/ /___ _/ /_____ _____ (_)_ ______ ___| | / /__ \
/ /_/ / / __ `/ __/ __ `/ __ \/ / / / / __ `__ \ | / /__/ /
/ ____/ / /_/ / /_/ /_/ / / / / / /_/ / / / / / / |/ // __/
/_/ /_/\__,_/\__/\__,_/_/ /_/_/\__,_/_/ /_/ /_/|___//____/
[=] Made by kemo(@xkem0x) with help from Mix (@ximton) and AsrielD (@Asriel_Dev)
[=] Use code Neonite in the item shop to support me #ad
)");
printfc(FOREGROUND_BLUE, "%s", logo)
printfc(FOREGROUND_GREEN, "[=] Built on: %s at %s\n", __DATE__, __TIME__);
Hooks::Init();
}
BOOL APIENTRY DllMain(HMODULE hModule, DWORD dwReason, LPVOID lpReserved)
{
if (dwReason == DLL_PROCESS_ATTACH)
{
//CreateThread(nullptr, 0, (LPTHREAD_START_ROUTINE)Main, hModule, 0, 0);
system("start https://twitter.com/intent/user?screen_name=xkem0x");
Main();
}
return TRUE;
}