├── .gitattributes ├── .gitignore ├── KBinCrypt ├── CryptFile.cpp ├── CryptFile.h ├── itmaker.cpp └── itmaker.h ├── KInterface └── Kinterface.cpp ├── KMemCrypt ├── CryptMem.cpp ├── CryptMem.h └── KMemCryptP.legacy ├── shared_files ├── AddSection.cpp ├── AddSection.h ├── Ciphers.cpp ├── Ciphers.h ├── FileMapper.cpp ├── FileMapper.h ├── KMemCryptP.h ├── PEManipulator.cpp ├── PEManipulator.h ├── StubCrypt.cpp ├── StubCrypt.h ├── vopcodes.h ├── x86opcodes.h └── x86opsize.cpp ├── stub_files ├── KBinCrypt │ ├── kbc_stub │ ├── kbc_stub.asm │ └── legacy_versions │ │ └── KBinCrypt_stub.asm ├── KMemCrypt │ ├── KMCTest.bat │ ├── firstcycle.txt │ ├── kmc_encrypt_mem.cpp │ ├── kmc_stub │ ├── kmc_stub.asm │ ├── kmc_stub.cpp │ ├── kmc_stub_template.asm │ └── legacy │ │ ├── KMCTarget.cpp │ │ ├── KMCTest.bat │ │ ├── KMCVirtualizer.cpp │ │ ├── kmc_stub │ │ └── kmc_stub.asm └── nasm │ └── LICENSE └── test_files ├── KInterface_test.bat └── test_file.cpp /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/.gitignore -------------------------------------------------------------------------------- /KBinCrypt/CryptFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/KBinCrypt/CryptFile.cpp -------------------------------------------------------------------------------- /KBinCrypt/CryptFile.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/KBinCrypt/CryptFile.h -------------------------------------------------------------------------------- /KBinCrypt/itmaker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/KBinCrypt/itmaker.cpp -------------------------------------------------------------------------------- /KBinCrypt/itmaker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/KBinCrypt/itmaker.h -------------------------------------------------------------------------------- /KInterface/Kinterface.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/KInterface/Kinterface.cpp -------------------------------------------------------------------------------- /KMemCrypt/CryptMem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/KMemCrypt/CryptMem.cpp -------------------------------------------------------------------------------- /KMemCrypt/CryptMem.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/KMemCrypt/CryptMem.h -------------------------------------------------------------------------------- /KMemCrypt/KMemCryptP.legacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/KMemCrypt/KMemCryptP.legacy -------------------------------------------------------------------------------- /shared_files/AddSection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/AddSection.cpp -------------------------------------------------------------------------------- /shared_files/AddSection.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/AddSection.h -------------------------------------------------------------------------------- /shared_files/Ciphers.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/Ciphers.cpp -------------------------------------------------------------------------------- /shared_files/Ciphers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/Ciphers.h -------------------------------------------------------------------------------- /shared_files/FileMapper.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/FileMapper.cpp -------------------------------------------------------------------------------- /shared_files/FileMapper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/FileMapper.h -------------------------------------------------------------------------------- /shared_files/KMemCryptP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/KMemCryptP.h -------------------------------------------------------------------------------- /shared_files/PEManipulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/PEManipulator.cpp -------------------------------------------------------------------------------- /shared_files/PEManipulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/PEManipulator.h -------------------------------------------------------------------------------- /shared_files/StubCrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/StubCrypt.cpp -------------------------------------------------------------------------------- /shared_files/StubCrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/StubCrypt.h -------------------------------------------------------------------------------- /shared_files/vopcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/vopcodes.h -------------------------------------------------------------------------------- /shared_files/x86opcodes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/x86opcodes.h -------------------------------------------------------------------------------- /shared_files/x86opsize.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/shared_files/x86opsize.cpp -------------------------------------------------------------------------------- /stub_files/KBinCrypt/kbc_stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KBinCrypt/kbc_stub -------------------------------------------------------------------------------- /stub_files/KBinCrypt/kbc_stub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KBinCrypt/kbc_stub.asm -------------------------------------------------------------------------------- /stub_files/KBinCrypt/legacy_versions/KBinCrypt_stub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KBinCrypt/legacy_versions/KBinCrypt_stub.asm -------------------------------------------------------------------------------- /stub_files/KMemCrypt/KMCTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/KMCTest.bat -------------------------------------------------------------------------------- /stub_files/KMemCrypt/firstcycle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/firstcycle.txt -------------------------------------------------------------------------------- /stub_files/KMemCrypt/kmc_encrypt_mem.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/kmc_encrypt_mem.cpp -------------------------------------------------------------------------------- /stub_files/KMemCrypt/kmc_stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/kmc_stub -------------------------------------------------------------------------------- /stub_files/KMemCrypt/kmc_stub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/kmc_stub.asm -------------------------------------------------------------------------------- /stub_files/KMemCrypt/kmc_stub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/kmc_stub.cpp -------------------------------------------------------------------------------- /stub_files/KMemCrypt/kmc_stub_template.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/kmc_stub_template.asm -------------------------------------------------------------------------------- /stub_files/KMemCrypt/legacy/KMCTarget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/legacy/KMCTarget.cpp -------------------------------------------------------------------------------- /stub_files/KMemCrypt/legacy/KMCTest.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/legacy/KMCTest.bat -------------------------------------------------------------------------------- /stub_files/KMemCrypt/legacy/KMCVirtualizer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/legacy/KMCVirtualizer.cpp -------------------------------------------------------------------------------- /stub_files/KMemCrypt/legacy/kmc_stub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/legacy/kmc_stub -------------------------------------------------------------------------------- /stub_files/KMemCrypt/legacy/kmc_stub.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/KMemCrypt/legacy/kmc_stub.asm -------------------------------------------------------------------------------- /stub_files/nasm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/stub_files/nasm/LICENSE -------------------------------------------------------------------------------- /test_files/KInterface_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/test_files/KInterface_test.bat -------------------------------------------------------------------------------- /test_files/test_file.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ximerus/Kryptonite/HEAD/test_files/test_file.cpp --------------------------------------------------------------------------------