├── .gitignore ├── General ├── BIOS_Skeleton │ └── skeleton.asm ├── CallingConventions │ ├── CallingConventions │ ├── CallingConventions.asm │ └── Makefile ├── HigherLevelCodeExamples │ └── numToString.md ├── helloWorld │ ├── Makefile │ ├── helloWorld │ ├── helloWorld.asm │ └── helloWorld.o └── startupPersistency │ ├── luna.c │ └── luna.h ├── README.md └── Rootkit ├── .gitignore ├── Makefile ├── NOTES.MD ├── README.md ├── eros.asm └── eros_2.asm /.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | *.out 3 | *.raw 4 | -------------------------------------------------------------------------------- /General/BIOS_Skeleton/skeleton.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/BIOS_Skeleton/skeleton.asm -------------------------------------------------------------------------------- /General/CallingConventions/CallingConventions: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/CallingConventions/CallingConventions -------------------------------------------------------------------------------- /General/CallingConventions/CallingConventions.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/CallingConventions/CallingConventions.asm -------------------------------------------------------------------------------- /General/CallingConventions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/CallingConventions/Makefile -------------------------------------------------------------------------------- /General/HigherLevelCodeExamples/numToString.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/HigherLevelCodeExamples/numToString.md -------------------------------------------------------------------------------- /General/helloWorld/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/helloWorld/Makefile -------------------------------------------------------------------------------- /General/helloWorld/helloWorld: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/helloWorld/helloWorld -------------------------------------------------------------------------------- /General/helloWorld/helloWorld.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/helloWorld/helloWorld.asm -------------------------------------------------------------------------------- /General/helloWorld/helloWorld.o: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/helloWorld/helloWorld.o -------------------------------------------------------------------------------- /General/startupPersistency/luna.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/startupPersistency/luna.c -------------------------------------------------------------------------------- /General/startupPersistency/luna.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/General/startupPersistency/luna.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/README.md -------------------------------------------------------------------------------- /Rootkit/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/Rootkit/.gitignore -------------------------------------------------------------------------------- /Rootkit/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/Rootkit/Makefile -------------------------------------------------------------------------------- /Rootkit/NOTES.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/Rootkit/NOTES.MD -------------------------------------------------------------------------------- /Rootkit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/Rootkit/README.md -------------------------------------------------------------------------------- /Rootkit/eros.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/Rootkit/eros.asm -------------------------------------------------------------------------------- /Rootkit/eros_2.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CDuPlooy/Rootkit/HEAD/Rootkit/eros_2.asm --------------------------------------------------------------------------------