add credits to dll

This commit is contained in:
Milxnor
2023-05-21 18:55:48 -04:00
parent c9c0e18d18
commit ff7b66bee1
2 changed files with 10 additions and 3 deletions

View File

@@ -95,6 +95,13 @@ DWORD WINAPI Main(LPVOID)
FILE* fptr; FILE* fptr;
freopen_s(&fptr, "CONOUT$", "w+", stdout); 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(); Memcury::VEHHook::Init();
bool curlResult = InitializeCurlHook(); bool curlResult = InitializeCurlHook();

View File

@@ -1,5 +1,5 @@
#pragma once #pragma once
#define URL_PROTOCOL XOR("http") #define URL_PROTOCOL "http"
#define URL_HOST XOR("127.0.0.1") #define URL_HOST "127.0.0.1"
#define URL_PORT XOR("3551") #define URL_PORT "3551"