Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Thread-Hijacking/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Thread Hijacking

This folder demonstrates **thread hijacking**a process injection technique where an existing thread is suspended, its execution context is modified, and then resumed to execute shellcode.
This folder demonstrates **thread hijacking** - a process injection technique where an existing thread is suspended, its execution context is modified, and then resumed to execute shellcode.

**Important Disclaimer**: This code is for educational purposes only on systems you own or have explicit authorization to test. Unauthorized injection is illegal.

Expand All @@ -20,7 +20,7 @@ Thread hijacking (also called context hijacking) involves:

### In This Folder

The example demonstrates **self-process thread hijacking**creating and hijacking a thread within the same process.
The example demonstrates **self-process thread hijacking** - creating and hijacking a thread within the same process.

### Alternative Variant: Hijacking Existing Threads

Expand Down Expand Up @@ -129,7 +129,7 @@ ResumeThread(hThread);
printf("Thread resumed to execute shellcode.\n");
```

Resumes the threadit now executes from the shellcode address.
Resumes the thread - it now executes from the shellcode address.

### Cleanup

Expand Down