├── .idea ├── KaynLdr.iml ├── discord.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── KaynInject ├── include │ ├── KaynInject.h │ └── Syscall.h ├── makefile └── src │ ├── KaynInject.c │ ├── Main.c │ ├── Syscall.c │ ├── Syscall.o │ └── Syscall.s ├── KaynLdr ├── include │ ├── KaynLdr.h │ ├── Macros.h │ ├── Native.h │ └── Win32.h ├── makefile └── src │ ├── DllMain.c │ ├── KaynLdr.c │ ├── Util.s │ └── Win32.c ├── README.md └── makefile /.idea/KaynLdr.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/.idea/KaynLdr.iml -------------------------------------------------------------------------------- /.idea/discord.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/.idea/discord.xml -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/.idea/workspace.xml -------------------------------------------------------------------------------- /KaynInject/include/KaynInject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynInject/include/KaynInject.h -------------------------------------------------------------------------------- /KaynInject/include/Syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynInject/include/Syscall.h -------------------------------------------------------------------------------- /KaynInject/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynInject/makefile -------------------------------------------------------------------------------- /KaynInject/src/KaynInject.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynInject/src/KaynInject.c -------------------------------------------------------------------------------- /KaynInject/src/Main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynInject/src/Main.c -------------------------------------------------------------------------------- /KaynInject/src/Syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynInject/src/Syscall.c -------------------------------------------------------------------------------- /KaynInject/src/Syscall.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynInject/src/Syscall.o -------------------------------------------------------------------------------- /KaynInject/src/Syscall.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynInject/src/Syscall.s -------------------------------------------------------------------------------- /KaynLdr/include/KaynLdr.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/include/KaynLdr.h -------------------------------------------------------------------------------- /KaynLdr/include/Macros.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/include/Macros.h -------------------------------------------------------------------------------- /KaynLdr/include/Native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/include/Native.h -------------------------------------------------------------------------------- /KaynLdr/include/Win32.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/include/Win32.h -------------------------------------------------------------------------------- /KaynLdr/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/makefile -------------------------------------------------------------------------------- /KaynLdr/src/DllMain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/src/DllMain.c -------------------------------------------------------------------------------- /KaynLdr/src/KaynLdr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/src/KaynLdr.c -------------------------------------------------------------------------------- /KaynLdr/src/Util.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/src/Util.s -------------------------------------------------------------------------------- /KaynLdr/src/Win32.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/KaynLdr/src/Win32.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/README.md -------------------------------------------------------------------------------- /makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cracked5pider/KaynLdr/HEAD/makefile --------------------------------------------------------------------------------