From b2fee64690143d203357c9d41cd0cb250c2b4fa7 Mon Sep 17 00:00:00 2001 From: Usman Sikander <76246439+Offensive-Panda@users.noreply.github.com> Date: Fri, 30 Aug 2024 17:24:51 +0300 Subject: [PATCH] Update readme.md --- Classic_DLL_Injection/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classic_DLL_Injection/readme.md b/Classic_DLL_Injection/readme.md index 342a57f..bb72ac3 100644 --- a/Classic_DLL_Injection/readme.md +++ b/Classic_DLL_Injection/readme.md @@ -9,7 +9,7 @@ In this lab, we explore a DLL injection technique that targets a process (in thi ## Steps 1. `Identify the Target Process:` `Toolhelp32` functions to enumerate running processes and identify the target process ID by its name. 2. `Allocate Memory in the Target Process:` `VirtualAllocEx` function to allocate memory in the target process's address space. -4. `Write Shellcode to the Allocated Memory:` `WriteProcessMemory` to Write the path of the `panda.dll` to be injected into this memory. +4. `Write DLl path to the Allocated Memory:` `WriteProcessMemory` to Write the path of the `panda.dll` to be injected into this memory. 5. `Create a Remote Thread to Execute the Shellcode:` `CreateRemoteThread` Creates a remote thread in `explorer.exe` that executes `LoadLibraryA`, loading the `panda.dll` into the `explorer.exe` process's memory space. ## Walkthrough