This is the sixth part of the DLL Injection series. For your convenience you can find other parts in the table of contents in Part 1 – Registry In Part 4 we saw how to inject managed DLL and execute some code in default App Domain. Today we will inject some code into different app … Continue reading DLL Injection Part 6 — Injecting managed code into specific App Domain
Tag: DLL
DLL Injection Part 5 — Hacking Minesweeper
This is the fifth part of the DLL Injection series. For your convenience you can find other parts in the table of contents in Part 1 – Registry In previous posts of this series we saw how to inject DLLs in different ways. Today we are going to write simple DLL to hack Windows XP … Continue reading DLL Injection Part 5 — Hacking Minesweeper
DLL Injection Part 4 — Injecting managed DLL
This is the fourth part of the DLL Injection series. For your convenience you can find other parts in the table of contents in Part 1 – Registry Las time we saw how to inject DLL into target process using remote threads. However, throughout this whole series we were injecting only native DLL, e.g., libraries … Continue reading DLL Injection Part 4 — Injecting managed DLL
DLL Injection Part 3 — Creating remote thread
This is the third part of the DLL Injection series. For your convenience you can find other parts in the table of contents in Part 1 – Registry We already know how to inject a DLL into process using registry or hooks. With the former approach we cannot control the moment of injection (because it … Continue reading DLL Injection Part 3 — Creating remote thread
DLL Injection Part 2 — Hooks
This is the second part of the DLL Injection series. For your convenience you can find other parts in the table of contents in Part 1 – Registry Last time we saw how to inject DLL using registry. Today we are going to implement another approach using Hooks. Hooks Hooks allow us to execute a … Continue reading DLL Injection Part 2 — Hooks