From c1eae8a990bed8599c86f70eb57097ce02e15315 Mon Sep 17 00:00:00 2001 From: Usman Sikander <76246439+Offensive-Panda@users.noreply.github.com> Date: Sat, 2 Nov 2024 12:16:35 +0300 Subject: [PATCH] Update index.html --- index.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index f6b9aa7..4da9d68 100644 --- a/index.html +++ b/index.html @@ -165,13 +165,13 @@ layout: default
In this lab, we cover RWX hunting technique to avoid RWX memory detection of AV/EDR solutions, RWX hunt technique involves locating a target process, identifying writable and executable memory regions within that process, injecting shellcode into the identified memory, and then executing the shellcode.
@@ -301,14 +301,14 @@ layout: default -
In this lab, we cover PEB Walk and API Obfuscation Injection, By using the PEB, the code directly traverses the list of loaded modules to find kernel32.dll, bypassing static analysis methods that rely on import table inspection. Once kernel32.dll is identified, the technique resolves necessary API functions such as VirtualAllocEx, WriteProcessMemory, and CreateRemoteThread dynamically at runtime.
-
In this lab, we cover NtCreateSection and NtMapViewOfSection code Injection, This code injection technique utilizing Native APIs such as NtCreateSection, NtMapViewOfSection. The process begins by creating a new memory section with read, write, and execute (RWX) protection using NtCreateSection.