├── .gitignore ├── Makefile ├── install.sh ├── kernelctf └── exploit.c └── universal └── exploit.c /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter-sec/OtterRoot/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter-sec/OtterRoot/HEAD/Makefile -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter-sec/OtterRoot/HEAD/install.sh -------------------------------------------------------------------------------- /kernelctf/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter-sec/OtterRoot/HEAD/kernelctf/exploit.c -------------------------------------------------------------------------------- /universal/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/otter-sec/OtterRoot/HEAD/universal/exploit.c --------------------------------------------------------------------------------