├── .gitignore ├── README.md ├── elf-injection └── injection.c └── memory-management ├── ram ├── ram_simulator.c └── small_ram.c └── stack └── stack.c /.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | !*/ 3 | !*.c 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xCD4/Low-Level-Projects/HEAD/README.md -------------------------------------------------------------------------------- /elf-injection/injection.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xCD4/Low-Level-Projects/HEAD/elf-injection/injection.c -------------------------------------------------------------------------------- /memory-management/ram/ram_simulator.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xCD4/Low-Level-Projects/HEAD/memory-management/ram/ram_simulator.c -------------------------------------------------------------------------------- /memory-management/ram/small_ram.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xCD4/Low-Level-Projects/HEAD/memory-management/ram/small_ram.c -------------------------------------------------------------------------------- /memory-management/stack/stack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xCD4/Low-Level-Projects/HEAD/memory-management/stack/stack.c --------------------------------------------------------------------------------