├── .gitignore ├── CVE-2016-8655 └── chocobo_root.c ├── CVE-2016-9793 └── cve-2016-9793.c ├── CVE-2017-1000112 └── poc.c ├── CVE-2017-7308 └── poc.c ├── CVE-2018-18955 ├── exploit.bash_completion.sh ├── exploit.cron.sh ├── exploit.dbus.sh ├── exploit.ldpreload.sh ├── exploit.polkit.sh ├── libsubuid.c ├── rootshell.c ├── subshell.c └── subuid_shell.c ├── CVE-2018-5333 └── cve-2018-5333.c ├── CVE-2019-13272 └── poc.c ├── CVE-2021-22555 └── exploit.c └── README.md /.gitignore: -------------------------------------------------------------------------------- 1 | a.out 2 | -------------------------------------------------------------------------------- /CVE-2016-8655/chocobo_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2016-8655/chocobo_root.c -------------------------------------------------------------------------------- /CVE-2016-9793/cve-2016-9793.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2016-9793/cve-2016-9793.c -------------------------------------------------------------------------------- /CVE-2017-1000112/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2017-1000112/poc.c -------------------------------------------------------------------------------- /CVE-2017-7308/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2017-7308/poc.c -------------------------------------------------------------------------------- /CVE-2018-18955/exploit.bash_completion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/exploit.bash_completion.sh -------------------------------------------------------------------------------- /CVE-2018-18955/exploit.cron.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/exploit.cron.sh -------------------------------------------------------------------------------- /CVE-2018-18955/exploit.dbus.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/exploit.dbus.sh -------------------------------------------------------------------------------- /CVE-2018-18955/exploit.ldpreload.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/exploit.ldpreload.sh -------------------------------------------------------------------------------- /CVE-2018-18955/exploit.polkit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/exploit.polkit.sh -------------------------------------------------------------------------------- /CVE-2018-18955/libsubuid.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/libsubuid.c -------------------------------------------------------------------------------- /CVE-2018-18955/rootshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/rootshell.c -------------------------------------------------------------------------------- /CVE-2018-18955/subshell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/subshell.c -------------------------------------------------------------------------------- /CVE-2018-18955/subuid_shell.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-18955/subuid_shell.c -------------------------------------------------------------------------------- /CVE-2018-5333/cve-2018-5333.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2018-5333/cve-2018-5333.c -------------------------------------------------------------------------------- /CVE-2019-13272/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2019-13272/poc.c -------------------------------------------------------------------------------- /CVE-2021-22555/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/CVE-2021-22555/exploit.c -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bcoles/kernel-exploits/HEAD/README.md --------------------------------------------------------------------------------