├── README.md ├── pop_shell_aarch64 ├── pop_shell_alnum_x64 ├── pop_shell_arm ├── pop_shell_preload_x64.so ├── pop_shell_x64 └── suid_shell_in_c ├── .gitignore ├── Makefile ├── icrt_lib.h ├── icrt_syscall.h ├── suid_shell └── suid_shell.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/README.md -------------------------------------------------------------------------------- /pop_shell_aarch64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/pop_shell_aarch64 -------------------------------------------------------------------------------- /pop_shell_alnum_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/pop_shell_alnum_x64 -------------------------------------------------------------------------------- /pop_shell_arm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/pop_shell_arm -------------------------------------------------------------------------------- /pop_shell_preload_x64.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/pop_shell_preload_x64.so -------------------------------------------------------------------------------- /pop_shell_x64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/pop_shell_x64 -------------------------------------------------------------------------------- /suid_shell_in_c/.gitignore: -------------------------------------------------------------------------------- 1 | *.s 2 | *.o 3 | .gdb_history 4 | -------------------------------------------------------------------------------- /suid_shell_in_c/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/suid_shell_in_c/Makefile -------------------------------------------------------------------------------- /suid_shell_in_c/icrt_lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/suid_shell_in_c/icrt_lib.h -------------------------------------------------------------------------------- /suid_shell_in_c/icrt_syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/suid_shell_in_c/icrt_syscall.h -------------------------------------------------------------------------------- /suid_shell_in_c/suid_shell: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/suid_shell_in_c/suid_shell -------------------------------------------------------------------------------- /suid_shell_in_c/suid_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/veritas501/tiny_elf_sample/HEAD/suid_shell_in_c/suid_shell.c --------------------------------------------------------------------------------