├── .gitattributes ├── .gitignore ├── LICENSE ├── NJITHook.sln ├── NJITHook ├── Data.cs ├── JITHook.cs ├── NJITHook.csproj └── VMT.cs └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/NJITHook/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/NJITHook/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/NJITHook/HEAD/LICENSE -------------------------------------------------------------------------------- /NJITHook.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/NJITHook/HEAD/NJITHook.sln -------------------------------------------------------------------------------- /NJITHook/Data.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/NJITHook/HEAD/NJITHook/Data.cs -------------------------------------------------------------------------------- /NJITHook/JITHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/NJITHook/HEAD/NJITHook/JITHook.cs -------------------------------------------------------------------------------- /NJITHook/NJITHook.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/NJITHook/HEAD/NJITHook/NJITHook.csproj -------------------------------------------------------------------------------- /NJITHook/VMT.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NETFuscator/NJITHook/HEAD/NJITHook/VMT.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NJITHook 2 | A managed .NET Jit hooking library. 3 | --------------------------------------------------------------------------------