├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── adjust-stack.asm ├── function-resolution.h ├── run.c ├── run.h ├── shellcode.bin ├── shellcode.h └── sleep.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/README.md -------------------------------------------------------------------------------- /adjust-stack.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/adjust-stack.asm -------------------------------------------------------------------------------- /function-resolution.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/function-resolution.h -------------------------------------------------------------------------------- /run.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/run.c -------------------------------------------------------------------------------- /run.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/run.h -------------------------------------------------------------------------------- /shellcode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/shellcode.bin -------------------------------------------------------------------------------- /shellcode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/shellcode.h -------------------------------------------------------------------------------- /sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SolomonSklash/SleepyCrypt/HEAD/sleep.c --------------------------------------------------------------------------------