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
AddressOfEntryPoint Injection
APC Injection
Early Bird Injection
-
RWX Hunting Injection
+
RWX Hunting and Injection
Process Ghosting
Remote Thread Hijacking
Module Stomping
PEB Walk Injection
-
PEB Walk and Obfuscation Technique
-
NtCreateThread and Map View
+
PEB Walk and APIs Obfuscation Technique
+
NtCreateSection and NtMapViewOfSection
Mokingjay
Fork API Injection
Injection through Fibers
@@ -268,7 +268,7 @@ layout: default -

PE 13 - RWX Hunting Injection

+

PE 13 - RWX Hunting and Injection

Technique Image Windows Icon

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
-

PE 18 - PEB Walk and Obfuscation Technique

+

PE 18 - PEB Walk and APIs Obfuscation Technique

Technique Image Windows Icon

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.

-

PE 19 - NtCreateThread and Map View

+

PE 19 - NtCreateSection and NtMapViewOfSection

Technique Image Windows Icon

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.