├── .gitignore ├── .gitmodules ├── 3rd-party ├── sgn └── sgn.LICENSE ├── DInjector.cna ├── DInjector ├── API │ ├── Delegates.cs │ ├── Registers.cs │ ├── Syscalls.cs │ └── Win32.cs ├── DInjector.csproj ├── DInjector.sln ├── Detonator.cs ├── Modules │ ├── ClipboardPointer.cs │ ├── CurrentThread.cs │ ├── CurrentThreadUuid.cs │ ├── FunctionPointer.cs │ ├── FunctionPointerUnsafe.cs │ ├── ModuleStomping.cs │ ├── ProcessHollowing.cs │ ├── RemoteThread.cs │ ├── RemoteThreadAPC.cs │ ├── RemoteThreadContext.cs │ ├── RemoteThreadDll.cs │ ├── RemoteThreadKernelCB.cs │ ├── RemoteThreadSuspended.cs │ ├── RemoteThreadView.cs │ └── TimeFormats.cs ├── Properties │ └── AssemblyInfo.cs └── Utils │ ├── AM51.cs │ ├── ArgumentParser.cs │ ├── Crypto.cs │ ├── SpawnProcess.cs │ └── Unhooker.cs ├── LICENSE ├── README.md ├── cradle.ps1 └── encrypt.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/.gitmodules -------------------------------------------------------------------------------- /3rd-party/sgn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/3rd-party/sgn -------------------------------------------------------------------------------- /3rd-party/sgn.LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/3rd-party/sgn.LICENSE -------------------------------------------------------------------------------- /DInjector.cna: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector.cna -------------------------------------------------------------------------------- /DInjector/API/Delegates.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/API/Delegates.cs -------------------------------------------------------------------------------- /DInjector/API/Registers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/API/Registers.cs -------------------------------------------------------------------------------- /DInjector/API/Syscalls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/API/Syscalls.cs -------------------------------------------------------------------------------- /DInjector/API/Win32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/API/Win32.cs -------------------------------------------------------------------------------- /DInjector/DInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/DInjector.csproj -------------------------------------------------------------------------------- /DInjector/DInjector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/DInjector.sln -------------------------------------------------------------------------------- /DInjector/Detonator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Detonator.cs -------------------------------------------------------------------------------- /DInjector/Modules/ClipboardPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/ClipboardPointer.cs -------------------------------------------------------------------------------- /DInjector/Modules/CurrentThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/CurrentThread.cs -------------------------------------------------------------------------------- /DInjector/Modules/CurrentThreadUuid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/CurrentThreadUuid.cs -------------------------------------------------------------------------------- /DInjector/Modules/FunctionPointer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/FunctionPointer.cs -------------------------------------------------------------------------------- /DInjector/Modules/FunctionPointerUnsafe.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/FunctionPointerUnsafe.cs -------------------------------------------------------------------------------- /DInjector/Modules/ModuleStomping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/ModuleStomping.cs -------------------------------------------------------------------------------- /DInjector/Modules/ProcessHollowing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/ProcessHollowing.cs -------------------------------------------------------------------------------- /DInjector/Modules/RemoteThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/RemoteThread.cs -------------------------------------------------------------------------------- /DInjector/Modules/RemoteThreadAPC.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/RemoteThreadAPC.cs -------------------------------------------------------------------------------- /DInjector/Modules/RemoteThreadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/RemoteThreadContext.cs -------------------------------------------------------------------------------- /DInjector/Modules/RemoteThreadDll.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/RemoteThreadDll.cs -------------------------------------------------------------------------------- /DInjector/Modules/RemoteThreadKernelCB.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/RemoteThreadKernelCB.cs -------------------------------------------------------------------------------- /DInjector/Modules/RemoteThreadSuspended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/RemoteThreadSuspended.cs -------------------------------------------------------------------------------- /DInjector/Modules/RemoteThreadView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/RemoteThreadView.cs -------------------------------------------------------------------------------- /DInjector/Modules/TimeFormats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Modules/TimeFormats.cs -------------------------------------------------------------------------------- /DInjector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DInjector/Utils/AM51.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Utils/AM51.cs -------------------------------------------------------------------------------- /DInjector/Utils/ArgumentParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Utils/ArgumentParser.cs -------------------------------------------------------------------------------- /DInjector/Utils/Crypto.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Utils/Crypto.cs -------------------------------------------------------------------------------- /DInjector/Utils/SpawnProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Utils/SpawnProcess.cs -------------------------------------------------------------------------------- /DInjector/Utils/Unhooker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/DInjector/Utils/Unhooker.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/README.md -------------------------------------------------------------------------------- /cradle.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/cradle.ps1 -------------------------------------------------------------------------------- /encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rvrsh3ll/DInjector/HEAD/encrypt.py --------------------------------------------------------------------------------