├── .editorconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── JitUnpacker-Framework.sln ├── JitUnpacker ├── ConsoleTitleUtils.cs ├── DnlibLogger.cs ├── HandleProcessCorruptedStateExceptionsAttribute.cs ├── JitUnpacker.cs ├── JitUnpacker.csproj ├── JitUnpackerSettings.cs ├── Logger.cs ├── MarshalEx.cs ├── NativeMethods.cs ├── ProgressBar.cs ├── Properties │ └── AssemblyInfo.cs ├── Runtime │ ├── CorInfo.cs │ ├── IJitHook.cs │ ├── JitHookFactory.cs │ ├── JitHookInlineImpl.cs │ ├── JitHookUtils.cs │ ├── JitHookVTableImpl.cs │ ├── RuntimeConstants.cs │ ├── RuntimeEnvironment.cs │ ├── RuntimeFunctions.cs │ └── RuntimePatcher.cs └── Unpackers │ ├── IMethodDumper.cs │ ├── IUnpacker.cs │ ├── IUnpackerDetector.cs │ ├── JitMethodBodyReader.cs │ ├── MethodDumperBase.cs │ ├── Unknown │ ├── MethodDumper.cs │ ├── Unpacker.cs │ └── UnpackerDetector.cs │ ├── UnpackerContext.cs │ └── UnpackerUtils.cs ├── LICENSE ├── Libraries └── Tool.Interface │ └── Tool.Interface.dll ├── README.md ├── RuntimeFunctionConfigGenerator ├── ConsoleTitleUtils.cs ├── Ldasm.cs ├── NativeMethods.cs ├── PDBDownloader.exe ├── Properties │ └── AssemblyInfo.cs ├── RuntimeEnvironment.cs ├── RuntimeFunctionConfigGenerator.bat ├── RuntimeFunctionConfigGenerator.cs ├── RuntimeFunctionConfigGenerator.csproj └── RuntimeFunctionConfigGeneratorSettings.cs └── appveyor.yml /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/.gitmodules -------------------------------------------------------------------------------- /JitUnpacker-Framework.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker-Framework.sln -------------------------------------------------------------------------------- /JitUnpacker/ConsoleTitleUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/ConsoleTitleUtils.cs -------------------------------------------------------------------------------- /JitUnpacker/DnlibLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/DnlibLogger.cs -------------------------------------------------------------------------------- /JitUnpacker/HandleProcessCorruptedStateExceptionsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/HandleProcessCorruptedStateExceptionsAttribute.cs -------------------------------------------------------------------------------- /JitUnpacker/JitUnpacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/JitUnpacker.cs -------------------------------------------------------------------------------- /JitUnpacker/JitUnpacker.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/JitUnpacker.csproj -------------------------------------------------------------------------------- /JitUnpacker/JitUnpackerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/JitUnpackerSettings.cs -------------------------------------------------------------------------------- /JitUnpacker/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Logger.cs -------------------------------------------------------------------------------- /JitUnpacker/MarshalEx.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/MarshalEx.cs -------------------------------------------------------------------------------- /JitUnpacker/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/NativeMethods.cs -------------------------------------------------------------------------------- /JitUnpacker/ProgressBar.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/ProgressBar.cs -------------------------------------------------------------------------------- /JitUnpacker/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/CorInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/CorInfo.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/IJitHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/IJitHook.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/JitHookFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/JitHookFactory.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/JitHookInlineImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/JitHookInlineImpl.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/JitHookUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/JitHookUtils.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/JitHookVTableImpl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/JitHookVTableImpl.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/RuntimeConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/RuntimeConstants.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/RuntimeEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/RuntimeEnvironment.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/RuntimeFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/RuntimeFunctions.cs -------------------------------------------------------------------------------- /JitUnpacker/Runtime/RuntimePatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Runtime/RuntimePatcher.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/IMethodDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/IMethodDumper.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/IUnpacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/IUnpacker.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/IUnpackerDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/IUnpackerDetector.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/JitMethodBodyReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/JitMethodBodyReader.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/MethodDumperBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/MethodDumperBase.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/Unknown/MethodDumper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/Unknown/MethodDumper.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/Unknown/Unpacker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/Unknown/Unpacker.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/Unknown/UnpackerDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/Unknown/UnpackerDetector.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/UnpackerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/UnpackerContext.cs -------------------------------------------------------------------------------- /JitUnpacker/Unpackers/UnpackerUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/JitUnpacker/Unpackers/UnpackerUtils.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/LICENSE -------------------------------------------------------------------------------- /Libraries/Tool.Interface/Tool.Interface.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/Libraries/Tool.Interface/Tool.Interface.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/README.md -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/ConsoleTitleUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/ConsoleTitleUtils.cs -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/Ldasm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/Ldasm.cs -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/NativeMethods.cs -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/PDBDownloader.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/PDBDownloader.exe -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/RuntimeEnvironment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/RuntimeEnvironment.cs -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/RuntimeFunctionConfigGenerator.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/RuntimeFunctionConfigGenerator.bat -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/RuntimeFunctionConfigGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/RuntimeFunctionConfigGenerator.cs -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/RuntimeFunctionConfigGenerator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/RuntimeFunctionConfigGenerator.csproj -------------------------------------------------------------------------------- /RuntimeFunctionConfigGenerator/RuntimeFunctionConfigGeneratorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/RuntimeFunctionConfigGenerator/RuntimeFunctionConfigGeneratorSettings.cs -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wwh1004/JitUnpacker-Framework/HEAD/appveyor.yml --------------------------------------------------------------------------------