├── .gitattributes ├── .gitignore ├── Builder ├── Builder.vcxproj ├── Builder.vcxproj.filters ├── SectionEnryption │ ├── FileWriter.cpp │ ├── FileWriter.h │ ├── PEFile.cpp │ └── PEFile.h └── main.cpp ├── JitDecrypter.sln ├── JitDecrypter ├── JitDecrypter.vcxproj ├── JitDecrypter.vcxproj.filters ├── ProtectedCode │ ├── Crc32.cpp │ ├── Crc32.h │ ├── ProtectedCodeExecutor.cpp │ └── ProtectedCodeExecutor.h ├── Tracer │ ├── BreakpointManager.cpp │ ├── BreakpointManager.h │ ├── ForceBreakpoint.asm │ ├── MemoryAccessor.cpp │ ├── MemoryAccessor.h │ ├── PEImage.cpp │ ├── PEImage.h │ ├── SectionInfo.cpp │ ├── SectionInfo.h │ ├── Tracer.cpp │ └── Tracer.h └── main.cpp ├── LICENSE.txt └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/.gitignore -------------------------------------------------------------------------------- /Builder/Builder.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/Builder/Builder.vcxproj -------------------------------------------------------------------------------- /Builder/Builder.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/Builder/Builder.vcxproj.filters -------------------------------------------------------------------------------- /Builder/SectionEnryption/FileWriter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/Builder/SectionEnryption/FileWriter.cpp -------------------------------------------------------------------------------- /Builder/SectionEnryption/FileWriter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/Builder/SectionEnryption/FileWriter.h -------------------------------------------------------------------------------- /Builder/SectionEnryption/PEFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/Builder/SectionEnryption/PEFile.cpp -------------------------------------------------------------------------------- /Builder/SectionEnryption/PEFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/Builder/SectionEnryption/PEFile.h -------------------------------------------------------------------------------- /Builder/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/Builder/main.cpp -------------------------------------------------------------------------------- /JitDecrypter.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter.sln -------------------------------------------------------------------------------- /JitDecrypter/JitDecrypter.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/JitDecrypter.vcxproj -------------------------------------------------------------------------------- /JitDecrypter/JitDecrypter.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/JitDecrypter.vcxproj.filters -------------------------------------------------------------------------------- /JitDecrypter/ProtectedCode/Crc32.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/ProtectedCode/Crc32.cpp -------------------------------------------------------------------------------- /JitDecrypter/ProtectedCode/Crc32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/ProtectedCode/Crc32.h -------------------------------------------------------------------------------- /JitDecrypter/ProtectedCode/ProtectedCodeExecutor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/ProtectedCode/ProtectedCodeExecutor.cpp -------------------------------------------------------------------------------- /JitDecrypter/ProtectedCode/ProtectedCodeExecutor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/ProtectedCode/ProtectedCodeExecutor.h -------------------------------------------------------------------------------- /JitDecrypter/Tracer/BreakpointManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/BreakpointManager.cpp -------------------------------------------------------------------------------- /JitDecrypter/Tracer/BreakpointManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/BreakpointManager.h -------------------------------------------------------------------------------- /JitDecrypter/Tracer/ForceBreakpoint.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/ForceBreakpoint.asm -------------------------------------------------------------------------------- /JitDecrypter/Tracer/MemoryAccessor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/MemoryAccessor.cpp -------------------------------------------------------------------------------- /JitDecrypter/Tracer/MemoryAccessor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/MemoryAccessor.h -------------------------------------------------------------------------------- /JitDecrypter/Tracer/PEImage.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/PEImage.cpp -------------------------------------------------------------------------------- /JitDecrypter/Tracer/PEImage.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/PEImage.h -------------------------------------------------------------------------------- /JitDecrypter/Tracer/SectionInfo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/SectionInfo.cpp -------------------------------------------------------------------------------- /JitDecrypter/Tracer/SectionInfo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/SectionInfo.h -------------------------------------------------------------------------------- /JitDecrypter/Tracer/Tracer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/Tracer.cpp -------------------------------------------------------------------------------- /JitDecrypter/Tracer/Tracer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/Tracer/Tracer.h -------------------------------------------------------------------------------- /JitDecrypter/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/JitDecrypter/main.cpp -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Fatmike-GH/JitDecrypter/HEAD/README.md --------------------------------------------------------------------------------