DLL Source code

05/01/2019 13:05 jann0125#1
Hello I am a NEWBIE when it comes to coding. Can someone help me how do I make a dll source code not easily readable? Thank you
05/01/2019 13:10 ec0type#2
Which language do you use for coding the library? C++?
You can use an obfuscator for making it harder to read.
05/01/2019 15:31 jann0125#3
Quote:
Originally Posted by ec0type View Post
Which language do you use for coding the library? C++?
You can use an obfuscator for making it harder to read.
Great thanks. Can you help me make this into a dll?


}
 
DWORD WINAPI HackThread(LPVOID lpThreadParameter)
{
while (true)
{
*(uint32_t*)0x2EFE464 = 0x41200010;
*(uint32_t*)0x2AFE494 = 0x43480200;
Sleep(100);
}
return 0;
}
BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpvReserved)
{
if (fdwReason == DLL_PROCESS_ATTACH)
CloseHandle(CreateThread(nullptr, 0, &HackThread, hinstDLL, 0, nullptr));
return TRUE;
05/01/2019 19:43 ec0type#4
Quote:
Originally Posted by jann0125 View Post
Great thanks. Can you help me make this into a dll?
Ofc i can, but i won't compile it for you. Download a C++ Compiler which is included in Visual Studio amd create a new project. Paste your code and compile it.

Do you even know what it is about you want to compile? I don't think so: [Only registered and activated users can see links. Click Here To Register...]


Maybe this will help you to understand:
05/15/2019 19:59 yuantot#5
are you making hacking dll for injector? if yes you should do put a right offset