From c1627619bb23caa879c998b11f17caa8af059305 Mon Sep 17 00:00:00 2001 From: "Mike K." <42292967+Crypt0Fox@users.noreply.github.com> Date: Tue, 20 Jan 2026 11:22:54 +0200 Subject: [PATCH] Fix punctuation in README.md --- Thread-Hijacking/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Thread-Hijacking/README.md b/Thread-Hijacking/README.md index 05bd505..1b7102f 100644 --- a/Thread-Hijacking/README.md +++ b/Thread-Hijacking/README.md @@ -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. @@ -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 @@ -129,7 +129,7 @@ ResumeThread(hThread); printf("Thread resumed to execute shellcode.\n"); ``` -Resumes the thread—it now executes from the shellcode address. +Resumes the thread - it now executes from the shellcode address. ### Cleanup