├── .gitignore ├── LICENSE ├── Makefile ├── common ├── commons.c └── include │ └── exp_commons.h ├── defconfig ├── exploit0 └── exploit0.c ├── exploit1 └── exploit1.c ├── exploit2 └── exploit2.c ├── exploit3 └── exploit3.c ├── exploit4 └── exploit4.c ├── exploit5 └── exploit5.c ├── exploit6 └── exploit6.c ├── rootfs └── etc │ ├── passwd │ └── shadow └── run_qemu.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/Makefile -------------------------------------------------------------------------------- /common/commons.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/common/commons.c -------------------------------------------------------------------------------- /common/include/exp_commons.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/common/include/exp_commons.h -------------------------------------------------------------------------------- /defconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/defconfig -------------------------------------------------------------------------------- /exploit0/exploit0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/exploit0/exploit0.c -------------------------------------------------------------------------------- /exploit1/exploit1.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/exploit1/exploit1.c -------------------------------------------------------------------------------- /exploit2/exploit2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/exploit2/exploit2.c -------------------------------------------------------------------------------- /exploit3/exploit3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/exploit3/exploit3.c -------------------------------------------------------------------------------- /exploit4/exploit4.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/exploit4/exploit4.c -------------------------------------------------------------------------------- /exploit5/exploit5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/exploit5/exploit5.c -------------------------------------------------------------------------------- /exploit6/exploit6.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/exploit6/exploit6.c -------------------------------------------------------------------------------- /rootfs/etc/passwd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/rootfs/etc/passwd -------------------------------------------------------------------------------- /rootfs/etc/shadow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/rootfs/etc/shadow -------------------------------------------------------------------------------- /run_qemu.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gymgit/kernel-exploit-playground/HEAD/run_qemu.sh --------------------------------------------------------------------------------