From ff7b66bee1d58c2c84bd87789599c45cffeb2843 Mon Sep 17 00:00:00 2001 From: Milxnor Date: Sun, 21 May 2023 18:55:48 -0400 Subject: [PATCH] add credits to dll --- Cobalt/dllmain.cpp | 7 +++++++ Cobalt/settings.h | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Cobalt/dllmain.cpp b/Cobalt/dllmain.cpp index 9cd3d64..8c69f50 100644 --- a/Cobalt/dllmain.cpp +++ b/Cobalt/dllmain.cpp @@ -95,6 +95,13 @@ DWORD WINAPI Main(LPVOID) FILE* fptr; freopen_s(&fptr, "CONOUT$", "w+", stdout); + std::cout << "Initializing Cobalt (made by Milxnor#3531).\n"; + + std::cout << "Credits\n\n"; + + std::cout << "Memcury - https://github.com/kem0x/Memcury\n"; + std::cout << "Neonite++ for the signatures and curl hook - https://github.com/PeQuLeaks/NeonitePP-Fixed/tree/1.4\n\n"; + Memcury::VEHHook::Init(); bool curlResult = InitializeCurlHook(); diff --git a/Cobalt/settings.h b/Cobalt/settings.h index af9922c..abdef52 100644 --- a/Cobalt/settings.h +++ b/Cobalt/settings.h @@ -1,5 +1,5 @@ #pragma once -#define URL_PROTOCOL XOR("http") -#define URL_HOST XOR("127.0.0.1") -#define URL_PORT XOR("3551") \ No newline at end of file +#define URL_PROTOCOL "http" +#define URL_HOST "127.0.0.1" +#define URL_PORT "3551" \ No newline at end of file