Ok so please explain what DLL inections actually are, I know for games like minecraft you can inject dlls for the cheat to work but what is actually happening.
Ok so please explain what DLL inections actually are, I know for games like minecraft you can inject dlls for the cheat to work but what is actually happening.
DLL Injection is the process of forcing your code to execute within a foreign process.
DLL stands for Dynamic Link Library, a Windows format used to store reusable code. The purpose of DLLs is to save space by allowing multiple .exe
files to share the same library instead of embedding duplicate code in each executable.
We can create a custom DLL and inject it into a target process, forcing it to execute the code inside our DLL.