C
C#8mo ago
coco

✅ Error code 127 (Windows)

IntPtr hKernel32 = GetModuleHandle("kernel32.dll"); if (hKernel32 == IntPtr.Zero) { Console.WriteLine("Failed to get module handle for kernel32.dll. Error: " + Marshal.GetLastWin32Error()); return false; } IntPtr loadLibraryAddr = GetProcAddress(hKernel32, "LoadLibraryA"); if (loadLibraryAddr == IntPtr.Zero) { Console.WriteLine("Failed to get address of LoadLibraryA. Error: " + Marshal.GetLastWin32Error()); return false; } It fails to get me the address of LoadLibraryA
10 Replies
Buddy
Buddy8mo ago
What are you making?
coco
cocoOP8mo ago
I am trying to make a tool that allows me to inject dlls into a process, but i can't get it done because of this bug
Unknown User
Unknown User8mo ago
Message Not Public
Sign In & Join Server To View
coco
cocoOP8mo ago
does it matter for what it is?
Unknown User
Unknown User8mo ago
Message Not Public
Sign In & Join Server To View
coco
cocoOP8mo ago
Let me worry about that... the process is found but i still have that bug
Unknown User
Unknown User8mo ago
Message Not Public
Sign In & Join Server To View
MODiX
MODiX8mo ago
If you have no further questions, please use /close to mark the forum thread as answered
coco
cocoOP8mo ago
Alright alright, so i want to make an executor for roblox, the "front end" is done and working, is made in java, and i just need to fix this part and is done
Buddy
Buddy8mo ago
Not something we help with here. It is also against Discord's Terms of Service

Did you find this page helpful?