├── .gitattributes ├── .gitignore ├── MyInjector.sln ├── MyInjector ├── App.config ├── App.xaml ├── App.xaml.cs ├── Injection.cs ├── InjectionOperation.cs ├── LoggerWindow.xaml ├── LoggerWindow.xaml.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── MarkerWindow.xaml ├── MarkerWindow.xaml.cs ├── MethodNode.xaml ├── MethodNode.xaml.cs ├── MyInjector.csproj ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── app.manifest └── syringe.ico ├── NativeAgent ├── Common.h ├── KernelAccess │ ├── KC_usermode.cpp │ ├── KC_usermode.h │ ├── KernelAccess.cpp │ ├── KernelAccess.h │ └── interface.h ├── NativeAgent.cpp ├── NativeAgent.vcxproj ├── NativeAgent.vcxproj.filters ├── RegularInjection.cpp ├── RegularInjection.h ├── SetWindowHookInjection.cpp ├── SetWindowHookInjection.h └── UndocumentedData.h ├── SimpleDLL ├── SimpleDLL.vcxproj ├── SimpleDLL.vcxproj.filters └── dllmain.cpp ├── WindowHookContainer ├── HookProc.cpp ├── WindowHookContainer.vcxproj ├── WindowHookContainer.vcxproj.filters ├── dllmain.cpp ├── export.def └── framework.h └── readme.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/.gitignore -------------------------------------------------------------------------------- /MyInjector.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector.sln -------------------------------------------------------------------------------- /MyInjector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/App.config -------------------------------------------------------------------------------- /MyInjector/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/App.xaml -------------------------------------------------------------------------------- /MyInjector/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/App.xaml.cs -------------------------------------------------------------------------------- /MyInjector/Injection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/Injection.cs -------------------------------------------------------------------------------- /MyInjector/InjectionOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/InjectionOperation.cs -------------------------------------------------------------------------------- /MyInjector/LoggerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/LoggerWindow.xaml -------------------------------------------------------------------------------- /MyInjector/LoggerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/LoggerWindow.xaml.cs -------------------------------------------------------------------------------- /MyInjector/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/MainWindow.xaml -------------------------------------------------------------------------------- /MyInjector/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/MainWindow.xaml.cs -------------------------------------------------------------------------------- /MyInjector/MarkerWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/MarkerWindow.xaml -------------------------------------------------------------------------------- /MyInjector/MarkerWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/MarkerWindow.xaml.cs -------------------------------------------------------------------------------- /MyInjector/MethodNode.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/MethodNode.xaml -------------------------------------------------------------------------------- /MyInjector/MethodNode.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/MethodNode.xaml.cs -------------------------------------------------------------------------------- /MyInjector/MyInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/MyInjector.csproj -------------------------------------------------------------------------------- /MyInjector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /MyInjector/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /MyInjector/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/Properties/Resources.resx -------------------------------------------------------------------------------- /MyInjector/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /MyInjector/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/Properties/Settings.settings -------------------------------------------------------------------------------- /MyInjector/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/app.manifest -------------------------------------------------------------------------------- /MyInjector/syringe.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/MyInjector/syringe.ico -------------------------------------------------------------------------------- /NativeAgent/Common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/Common.h -------------------------------------------------------------------------------- /NativeAgent/KernelAccess/KC_usermode.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/KernelAccess/KC_usermode.cpp -------------------------------------------------------------------------------- /NativeAgent/KernelAccess/KC_usermode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/KernelAccess/KC_usermode.h -------------------------------------------------------------------------------- /NativeAgent/KernelAccess/KernelAccess.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/KernelAccess/KernelAccess.cpp -------------------------------------------------------------------------------- /NativeAgent/KernelAccess/KernelAccess.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/KernelAccess/KernelAccess.h -------------------------------------------------------------------------------- /NativeAgent/KernelAccess/interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/KernelAccess/interface.h -------------------------------------------------------------------------------- /NativeAgent/NativeAgent.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/NativeAgent.cpp -------------------------------------------------------------------------------- /NativeAgent/NativeAgent.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/NativeAgent.vcxproj -------------------------------------------------------------------------------- /NativeAgent/NativeAgent.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/NativeAgent.vcxproj.filters -------------------------------------------------------------------------------- /NativeAgent/RegularInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/RegularInjection.cpp -------------------------------------------------------------------------------- /NativeAgent/RegularInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/RegularInjection.h -------------------------------------------------------------------------------- /NativeAgent/SetWindowHookInjection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/SetWindowHookInjection.cpp -------------------------------------------------------------------------------- /NativeAgent/SetWindowHookInjection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/SetWindowHookInjection.h -------------------------------------------------------------------------------- /NativeAgent/UndocumentedData.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/NativeAgent/UndocumentedData.h -------------------------------------------------------------------------------- /SimpleDLL/SimpleDLL.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/SimpleDLL/SimpleDLL.vcxproj -------------------------------------------------------------------------------- /SimpleDLL/SimpleDLL.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/SimpleDLL/SimpleDLL.vcxproj.filters -------------------------------------------------------------------------------- /SimpleDLL/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/SimpleDLL/dllmain.cpp -------------------------------------------------------------------------------- /WindowHookContainer/HookProc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/WindowHookContainer/HookProc.cpp -------------------------------------------------------------------------------- /WindowHookContainer/WindowHookContainer.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/WindowHookContainer/WindowHookContainer.vcxproj -------------------------------------------------------------------------------- /WindowHookContainer/WindowHookContainer.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/WindowHookContainer/WindowHookContainer.vcxproj.filters -------------------------------------------------------------------------------- /WindowHookContainer/dllmain.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/WindowHookContainer/dllmain.cpp -------------------------------------------------------------------------------- /WindowHookContainer/export.def: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/WindowHookContainer/export.def -------------------------------------------------------------------------------- /WindowHookContainer/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/WindowHookContainer/framework.h -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CubicStone31/MyInjector/HEAD/readme.md --------------------------------------------------------------------------------