├── 2011 └── CVE-2011-4862 │ ├── exploit │ └── exploit.c ├── 2012 └── CVE-2012-0217 │ ├── CVE-2012-0217.c │ └── exploit ├── 2013 ├── CVE-2013-1763 │ ├── archer │ └── archer.c ├── CVE-2013-2094 │ ├── vnik │ └── vnik.c └── CVE-2013-2171 │ ├── CVE-2013-2171 │ └── CVE-2013-2171.c ├── 2014 ├── CVE-2014-0038 │ ├── pwn │ ├── pwn64 │ ├── recvmmsg.c │ └── timeoutpwn.c ├── CVE-2014-0196 │ ├── a.out │ └── cve-2014-0196-md.c ├── CVE-2014-3153 │ ├── README.md │ ├── exploit │ └── exploit.c ├── CVE-2014-4014 │ ├── 33824 │ └── 33824.c └── CVE-2014-4699 │ ├── a.out │ └── poc_v0.c ├── 2015 └── CVE-2015-1328 │ ├── 37292.c │ ├── ofs │ ├── ofs_32 │ └── ofs_64 ├── 2016 ├── CVE-2016-5195 │ ├── cowroot │ ├── cowroot.c │ ├── dirtyc0w │ ├── dirtyc0w.c │ ├── pokemon │ └── pokemon.c ├── CVE-2016-8655 │ ├── chocobo_root │ └── chocobo_root.c └── CVE-2016-9793 │ ├── exploit │ ├── poc.c │ └── trigger ├── 2017 ├── CVE-2017-1000112 │ ├── pwn │ └── pwn.c ├── CVE-2017-1000367 │ ├── sudopwn │ └── sudopwn.c ├── CVE-2017-11176 │ ├── cve-2017-11176.c │ └── exploit ├── CVE-2017-16995 │ ├── pwned │ └── upstream44.c ├── CVE-2017-18344 │ ├── pwn │ └── pwn.c ├── CVE-2017-6074 │ ├── poc.c │ ├── pwn │ ├── trigger │ └── trigger.c └── CVE-2017-7308 │ ├── poc │ └── poc.c ├── 2018 ├── CVE-2018-1000001 │ ├── RationalLove │ └── RationalLove.c ├── CVE-2018-14634 │ ├── poc-exploit │ └── poc-exploit.c ├── CVE-2018-14665 │ └── poc.py ├── CVE-2018-16323 │ └── exploit.sh ├── Ubuntu_16.04.4.txt └── ubuntu_16.04.4_2018.out ├── 2019 ├── CVE-2019-12181 │ └── SUroot ├── CVE-2019-13272 │ ├── pwned │ └── pwned.c ├── CVE-2019-19520 │ └── openbsd-authroot ├── CVE-2019-19726 │ └── openbsd-dynamic-loader-chpass └── CVE-2019-7304 │ ├── dirty_sockv1.py │ └── dirty_sockv2.py ├── 2020 └── CVE-2020-7247 │ └── root66 ├── README.md ├── User-Name-Space-Linux-Privilege-Escalation-Ubuntu-18.04-LTS-Lucideus ├── README.md ├── user └── user.c ├── Windows └── st0rnpentest.py └── XFM-PoC ├── README.md ├── poc └── proof.png /2011/CVE-2011-4862/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2011/CVE-2011-4862/exploit -------------------------------------------------------------------------------- /2011/CVE-2011-4862/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2011/CVE-2011-4862/exploit.c -------------------------------------------------------------------------------- /2012/CVE-2012-0217/CVE-2012-0217.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2012/CVE-2012-0217/CVE-2012-0217.c -------------------------------------------------------------------------------- /2012/CVE-2012-0217/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2012/CVE-2012-0217/exploit -------------------------------------------------------------------------------- /2013/CVE-2013-1763/archer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2013/CVE-2013-1763/archer -------------------------------------------------------------------------------- /2013/CVE-2013-1763/archer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2013/CVE-2013-1763/archer.c -------------------------------------------------------------------------------- /2013/CVE-2013-2094/vnik: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2013/CVE-2013-2094/vnik -------------------------------------------------------------------------------- /2013/CVE-2013-2094/vnik.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2013/CVE-2013-2094/vnik.c -------------------------------------------------------------------------------- /2013/CVE-2013-2171/CVE-2013-2171: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2013/CVE-2013-2171/CVE-2013-2171 -------------------------------------------------------------------------------- /2013/CVE-2013-2171/CVE-2013-2171.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2013/CVE-2013-2171/CVE-2013-2171.c -------------------------------------------------------------------------------- /2014/CVE-2014-0038/pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-0038/pwn -------------------------------------------------------------------------------- /2014/CVE-2014-0038/pwn64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-0038/pwn64 -------------------------------------------------------------------------------- /2014/CVE-2014-0038/recvmmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-0038/recvmmsg.c -------------------------------------------------------------------------------- /2014/CVE-2014-0038/timeoutpwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-0038/timeoutpwn.c -------------------------------------------------------------------------------- /2014/CVE-2014-0196/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-0196/a.out -------------------------------------------------------------------------------- /2014/CVE-2014-0196/cve-2014-0196-md.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-0196/cve-2014-0196-md.c -------------------------------------------------------------------------------- /2014/CVE-2014-3153/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-3153/README.md -------------------------------------------------------------------------------- /2014/CVE-2014-3153/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-3153/exploit -------------------------------------------------------------------------------- /2014/CVE-2014-3153/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-3153/exploit.c -------------------------------------------------------------------------------- /2014/CVE-2014-4014/33824: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-4014/33824 -------------------------------------------------------------------------------- /2014/CVE-2014-4014/33824.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-4014/33824.c -------------------------------------------------------------------------------- /2014/CVE-2014-4699/a.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-4699/a.out -------------------------------------------------------------------------------- /2014/CVE-2014-4699/poc_v0.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2014/CVE-2014-4699/poc_v0.c -------------------------------------------------------------------------------- /2015/CVE-2015-1328/37292.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2015/CVE-2015-1328/37292.c -------------------------------------------------------------------------------- /2015/CVE-2015-1328/ofs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2015/CVE-2015-1328/ofs -------------------------------------------------------------------------------- /2015/CVE-2015-1328/ofs_32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2015/CVE-2015-1328/ofs_32 -------------------------------------------------------------------------------- /2015/CVE-2015-1328/ofs_64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2015/CVE-2015-1328/ofs_64 -------------------------------------------------------------------------------- /2016/CVE-2016-5195/cowroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-5195/cowroot -------------------------------------------------------------------------------- /2016/CVE-2016-5195/cowroot.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-5195/cowroot.c -------------------------------------------------------------------------------- /2016/CVE-2016-5195/dirtyc0w: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-5195/dirtyc0w -------------------------------------------------------------------------------- /2016/CVE-2016-5195/dirtyc0w.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-5195/dirtyc0w.c -------------------------------------------------------------------------------- /2016/CVE-2016-5195/pokemon: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-5195/pokemon -------------------------------------------------------------------------------- /2016/CVE-2016-5195/pokemon.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-5195/pokemon.c -------------------------------------------------------------------------------- /2016/CVE-2016-8655/chocobo_root: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-8655/chocobo_root -------------------------------------------------------------------------------- /2016/CVE-2016-8655/chocobo_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-8655/chocobo_root.c -------------------------------------------------------------------------------- /2016/CVE-2016-9793/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-9793/exploit -------------------------------------------------------------------------------- /2016/CVE-2016-9793/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-9793/poc.c -------------------------------------------------------------------------------- /2016/CVE-2016-9793/trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2016/CVE-2016-9793/trigger -------------------------------------------------------------------------------- /2017/CVE-2017-1000112/pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-1000112/pwn -------------------------------------------------------------------------------- /2017/CVE-2017-1000112/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-1000112/pwn.c -------------------------------------------------------------------------------- /2017/CVE-2017-1000367/sudopwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-1000367/sudopwn -------------------------------------------------------------------------------- /2017/CVE-2017-1000367/sudopwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-1000367/sudopwn.c -------------------------------------------------------------------------------- /2017/CVE-2017-11176/cve-2017-11176.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-11176/cve-2017-11176.c -------------------------------------------------------------------------------- /2017/CVE-2017-11176/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-11176/exploit -------------------------------------------------------------------------------- /2017/CVE-2017-16995/pwned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-16995/pwned -------------------------------------------------------------------------------- /2017/CVE-2017-16995/upstream44.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-16995/upstream44.c -------------------------------------------------------------------------------- /2017/CVE-2017-18344/pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-18344/pwn -------------------------------------------------------------------------------- /2017/CVE-2017-18344/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-18344/pwn.c -------------------------------------------------------------------------------- /2017/CVE-2017-6074/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-6074/poc.c -------------------------------------------------------------------------------- /2017/CVE-2017-6074/pwn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-6074/pwn -------------------------------------------------------------------------------- /2017/CVE-2017-6074/trigger: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-6074/trigger -------------------------------------------------------------------------------- /2017/CVE-2017-6074/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-6074/trigger.c -------------------------------------------------------------------------------- /2017/CVE-2017-7308/poc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-7308/poc -------------------------------------------------------------------------------- /2017/CVE-2017-7308/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2017/CVE-2017-7308/poc.c -------------------------------------------------------------------------------- /2018/CVE-2018-1000001/RationalLove: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2018/CVE-2018-1000001/RationalLove -------------------------------------------------------------------------------- /2018/CVE-2018-1000001/RationalLove.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2018/CVE-2018-1000001/RationalLove.c -------------------------------------------------------------------------------- /2018/CVE-2018-14634/poc-exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2018/CVE-2018-14634/poc-exploit -------------------------------------------------------------------------------- /2018/CVE-2018-14634/poc-exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2018/CVE-2018-14634/poc-exploit.c -------------------------------------------------------------------------------- /2018/CVE-2018-14665/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2018/CVE-2018-14665/poc.py -------------------------------------------------------------------------------- /2018/CVE-2018-16323/exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2018/CVE-2018-16323/exploit.sh -------------------------------------------------------------------------------- /2018/Ubuntu_16.04.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2018/Ubuntu_16.04.4.txt -------------------------------------------------------------------------------- /2018/ubuntu_16.04.4_2018.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2018/ubuntu_16.04.4_2018.out -------------------------------------------------------------------------------- /2019/CVE-2019-12181/SUroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2019/CVE-2019-12181/SUroot -------------------------------------------------------------------------------- /2019/CVE-2019-13272/pwned: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2019/CVE-2019-13272/pwned -------------------------------------------------------------------------------- /2019/CVE-2019-13272/pwned.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2019/CVE-2019-13272/pwned.c -------------------------------------------------------------------------------- /2019/CVE-2019-19520/openbsd-authroot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2019/CVE-2019-19520/openbsd-authroot -------------------------------------------------------------------------------- /2019/CVE-2019-19726/openbsd-dynamic-loader-chpass: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2019/CVE-2019-19726/openbsd-dynamic-loader-chpass -------------------------------------------------------------------------------- /2019/CVE-2019-7304/dirty_sockv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2019/CVE-2019-7304/dirty_sockv1.py -------------------------------------------------------------------------------- /2019/CVE-2019-7304/dirty_sockv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2019/CVE-2019-7304/dirty_sockv2.py -------------------------------------------------------------------------------- /2020/CVE-2020-7247/root66: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/2020/CVE-2020-7247/root66 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/README.md -------------------------------------------------------------------------------- /User-Name-Space-Linux-Privilege-Escalation-Ubuntu-18.04-LTS-Lucideus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/User-Name-Space-Linux-Privilege-Escalation-Ubuntu-18.04-LTS-Lucideus/README.md -------------------------------------------------------------------------------- /User-Name-Space-Linux-Privilege-Escalation-Ubuntu-18.04-LTS-Lucideus/user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/User-Name-Space-Linux-Privilege-Escalation-Ubuntu-18.04-LTS-Lucideus/user -------------------------------------------------------------------------------- /User-Name-Space-Linux-Privilege-Escalation-Ubuntu-18.04-LTS-Lucideus/user.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/User-Name-Space-Linux-Privilege-Escalation-Ubuntu-18.04-LTS-Lucideus/user.c -------------------------------------------------------------------------------- /Windows/st0rnpentest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/Windows/st0rnpentest.py -------------------------------------------------------------------------------- /XFM-PoC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/XFM-PoC/README.md -------------------------------------------------------------------------------- /XFM-PoC/poc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/XFM-PoC/poc -------------------------------------------------------------------------------- /XFM-PoC/proof.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anoaghost/Localroot_Compile/HEAD/XFM-PoC/proof.png --------------------------------------------------------------------------------