← All projects

RemoteThreadHijacking

by @AbdouRoumi

12

This is a malware that i used in it remote thread hijacking

About this project

Remote Thread Hijacking This project demonstrates remote thread hijacking on a Windows process. It involves creating a suspended process, injecting shellcode into that process, and hijacking its thread to execute the injected shellcode. Features Create Suspended Process: Launches a Windows process in a suspended state to allow for thread hijacking. Shellcode Injection: Allocates memory in the target process, injects shellcode, and changes memory protection for execution. Thread Hijacking: Modifies the context of the target thread to point to the injected shellcode and resumes the thread. Prerequisites Operating System: Windows Development Environment: Visual Studio Libraries: Windows API (kernel32, ntdll) Functions for process and memory management How It Works Create Suspended Process: The project uses the CreateProcess API to start a process in suspended mode. Inject Shellcode: The shellcode is injected into the process using VirtualAllocEx and WriteProcessMemory. Hijack Thread: The thread's instruction pointer (RIP) is redirected to the shellcode and resumed. Usage Clone the repository: Open the project in Visual Studio.

From the project README on GitHub

Stars
12
Forks
0
License
MIT
Last push
21 Sept 2024

Add this badge to your README

Show that your project is listed on Made in Algeria.

Made in Algeria
[![Made in Algeria](https://www.madeinalgeria.dev/badge/remotethreadhijacking.svg)](https://www.madeinalgeria.dev/projects/remotethreadhijacking)

Related projects