├── README.md ├── callme.asm ├── callr12.asm ├── callstackspoof.cpp ├── headers ├── callstackspoof.h ├── definitions.h ├── enums.h ├── includes.h ├── sleep.h ├── structs.h └── syscalls.h ├── main.cpp ├── scripts ├── encoder.py └── shellcode.txt ├── sleep.cpp ├── spoof.asm └── syscalls.cpp /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/README.md -------------------------------------------------------------------------------- /callme.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/callme.asm -------------------------------------------------------------------------------- /callr12.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/callr12.asm -------------------------------------------------------------------------------- /callstackspoof.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/callstackspoof.cpp -------------------------------------------------------------------------------- /headers/callstackspoof.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/headers/callstackspoof.h -------------------------------------------------------------------------------- /headers/definitions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/headers/definitions.h -------------------------------------------------------------------------------- /headers/enums.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/headers/enums.h -------------------------------------------------------------------------------- /headers/includes.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/headers/includes.h -------------------------------------------------------------------------------- /headers/sleep.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/headers/sleep.h -------------------------------------------------------------------------------- /headers/structs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/headers/structs.h -------------------------------------------------------------------------------- /headers/syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/headers/syscalls.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/main.cpp -------------------------------------------------------------------------------- /scripts/encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/scripts/encoder.py -------------------------------------------------------------------------------- /scripts/shellcode.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/scripts/shellcode.txt -------------------------------------------------------------------------------- /sleep.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/sleep.cpp -------------------------------------------------------------------------------- /spoof.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/spoof.asm -------------------------------------------------------------------------------- /syscalls.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Meowmycks/koneko/HEAD/syscalls.cpp --------------------------------------------------------------------------------