├── README.md ├── cve-2017-5195 ├── exploit ├── exploit.c └── get_root.py ├── cve-2019-13768 └── poc.html ├── cve-2020-16040 └── exploit.js ├── cve-2021-30632 └── poc.js └── towelroot ├── Readme ├── exploit.c ├── futex.c ├── futex.h └── trigger_syscall.c /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/README.md -------------------------------------------------------------------------------- /cve-2017-5195/exploit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/cve-2017-5195/exploit -------------------------------------------------------------------------------- /cve-2017-5195/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/cve-2017-5195/exploit.c -------------------------------------------------------------------------------- /cve-2017-5195/get_root.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/cve-2017-5195/get_root.py -------------------------------------------------------------------------------- /cve-2019-13768/poc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/cve-2019-13768/poc.html -------------------------------------------------------------------------------- /cve-2020-16040/exploit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/cve-2020-16040/exploit.js -------------------------------------------------------------------------------- /cve-2021-30632/poc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/cve-2021-30632/poc.js -------------------------------------------------------------------------------- /towelroot/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/towelroot/Readme -------------------------------------------------------------------------------- /towelroot/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/towelroot/exploit.c -------------------------------------------------------------------------------- /towelroot/futex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/towelroot/futex.c -------------------------------------------------------------------------------- /towelroot/futex.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/towelroot/futex.h -------------------------------------------------------------------------------- /towelroot/trigger_syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yuvaly0/exploits/HEAD/towelroot/trigger_syscall.c --------------------------------------------------------------------------------