All Projects → ZeroM3m0ry → Dll-Injector

ZeroM3m0ry / Dll-Injector

Licence: other
simple C++ dll injector

Programming Languages

C++
36643 projects - #6 most used programming language

Projects that are alternatives of or similar to Dll-Injector

ManagedInjector
A DLL injector to inject .NET assemblies into a foreign .NET process.
Stars: ✭ 73 (+231.82%)
Mutual labels:  dll-injection
ZeusInjector
An Open Source Windows DLL Injector With All Known Techniques Available
Stars: ✭ 65 (+195.45%)
Mutual labels:  dll-injection
SnifferIH
DLL Hooking Packet Sniffer
Stars: ✭ 15 (-31.82%)
Mutual labels:  dll-injection
twinject
Automated player and hooking framework for bullet hell games from the Touhou Project
Stars: ✭ 52 (+136.36%)
Mutual labels:  dll-injection
toy-arms
⚔️ my simple reusable game hack components in Rust
Stars: ✭ 71 (+222.73%)
Mutual labels:  dll-injection
LunaLua
LunaLua - LunaDLL with Lua, is a free extension for SMBX 1.3 game engine, core of the X2 project.
Stars: ✭ 27 (+22.73%)
Mutual labels:  dll-injection
hooking-by-example
A series of increasingly complex programs demonstrating function hooking on 64 bit Windows. Culminating in a program that hooks mspaint to make it always paint orange.
Stars: ✭ 144 (+554.55%)
Mutual labels:  dll-injection
hookwin10calc
Reverse engineered Windows 10 Calculator.exe (UWP application) hacker. 한글/漢文을 배운 윈도우 계산기 패치.
Stars: ✭ 19 (-13.64%)
Mutual labels:  dll-injection
Inflame
User-mode Windows DLL injector written in Assembly language (FASM syntax) with WinAPI.
Stars: ✭ 63 (+186.36%)
Mutual labels:  dll-injection
Spore-ModAPI
A C++ library that allows you to create advanced mods for Spore (user interface, shaders,...)
Stars: ✭ 31 (+40.91%)
Mutual labels:  dll-injection
injectory
command-line interface dll injector
Stars: ✭ 49 (+122.73%)
Mutual labels:  dll-injection
lua-inject
Inject any C# code into programs with lua
Stars: ✭ 18 (-18.18%)
Mutual labels:  dll-injection
singlefile
featured cs:go internal hack, one file and less than 1000 lines.
Stars: ✭ 47 (+113.64%)
Mutual labels:  dll-injection
DLL-INJECTOR
I created a dll injector I am going to Open source its Code. But remember one thing that is any one can use it only for Educational purpose .I again say do not use it to damage anyone's Computer.But one thing if you are using it for some good purpose like to help someone who really need help then I permit you to use it.
Stars: ✭ 14 (-36.36%)
Mutual labels:  dll-injection
paradoxiaRAT
ParadoxiaRat : Native Windows Remote access Tool.
Stars: ✭ 583 (+2550%)
Mutual labels:  dll-injection
CodeInjection
Code Injection technique written in cpp language
Stars: ✭ 27 (+22.73%)
Mutual labels:  dll-injection
Phobos
Ares-compatible C&C Red Alert 2: Yuri's Revenge engine extension
Stars: ✭ 123 (+459.09%)
Mutual labels:  dll-injection
slimhook
Demonstration of dll injection. As well loading .net runtime and calling .net code. Example hijacking d3d9 dll and altering rendering of games.
Stars: ✭ 33 (+50%)
Mutual labels:  dll-injection
MapleClientEditTemplate
An increasingly generic and comprehensive MapleStory client editing framework. Written by Erik A (Minimum Delta). Intended to abstract away some of the MapleStory client editing learning curve.
Stars: ✭ 3 (-86.36%)
Mutual labels:  dll-injection
Windows-DLL-Injector
Some DLL Injection techniques in C++ implemented for both x86 and x64 windows OS processes
Stars: ✭ 174 (+690.91%)
Mutual labels:  dll-injection

Dll-Injector

DLL injection is a method of executing arbitrary code in the address space of a separate live process.

TECHNICAL DETAILS

  • Open process with Access Rights
  • GetProcAddress-LoadLibraryA (used to load a DLL into the process memory)
  • VirtualAllocEx (used to allocate space from the target process virtual memory)
  • WriteProcessMemory (used to write the path of the DLL file into the allocated memory)
  • CreateRemoteThread (used to creates a thread in the virtual memory area of a process)

DEMO

Alt Text

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].