What are DLL injections, and how do they work?

Viewed 7

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.

1 Answers

DLL Injection Explained

DLL Injection is the process of forcing your code to execute within a foreign process.

What is a DLL?

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.

How Does DLL Injection Work?

We can create a custom DLL and inject it into a target process, forcing it to execute the code inside our DLL.