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
Great thanks. Can you help me make this into a dll?Quote:
Which language do you use for coding the library? C++?
You can use an obfuscator for making it harder to read.
| 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; |
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.Quote:
Great thanks. Can you help me make this into a dll?
|
|