├── general-kernel └── CVE-2016-5195 │ ├── .gitignore │ ├── Android.mk │ ├── Makefile │ ├── README.md │ ├── dcow.c │ ├── dirtycow.c │ ├── run-as.c │ └── test.sh ├── qualcomm └── CVE-2016-5342 │ ├── .DS_Store │ ├── Android.mk │ ├── README.md │ ├── exploit_bypass_pxn.c │ ├── exploit_mp3.c │ ├── exploit_mp3_bypass_pxn.c │ ├── exploit_tty.c │ └── exploit_tty_bypass_pxn.c ├── readme.md └── samsung └── SVE-2017-10086 ├── .gitignore ├── LICENSE ├── Makefile ├── README.rst └── mtpwn.c /general-kernel/CVE-2016-5195/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/general-kernel/CVE-2016-5195/.gitignore -------------------------------------------------------------------------------- /general-kernel/CVE-2016-5195/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/general-kernel/CVE-2016-5195/Android.mk -------------------------------------------------------------------------------- /general-kernel/CVE-2016-5195/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/general-kernel/CVE-2016-5195/Makefile -------------------------------------------------------------------------------- /general-kernel/CVE-2016-5195/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/general-kernel/CVE-2016-5195/README.md -------------------------------------------------------------------------------- /general-kernel/CVE-2016-5195/dcow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/general-kernel/CVE-2016-5195/dcow.c -------------------------------------------------------------------------------- /general-kernel/CVE-2016-5195/dirtycow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/general-kernel/CVE-2016-5195/dirtycow.c -------------------------------------------------------------------------------- /general-kernel/CVE-2016-5195/run-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/general-kernel/CVE-2016-5195/run-as.c -------------------------------------------------------------------------------- /general-kernel/CVE-2016-5195/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/general-kernel/CVE-2016-5195/test.sh -------------------------------------------------------------------------------- /qualcomm/CVE-2016-5342/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/qualcomm/CVE-2016-5342/.DS_Store -------------------------------------------------------------------------------- /qualcomm/CVE-2016-5342/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/qualcomm/CVE-2016-5342/Android.mk -------------------------------------------------------------------------------- /qualcomm/CVE-2016-5342/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/qualcomm/CVE-2016-5342/README.md -------------------------------------------------------------------------------- /qualcomm/CVE-2016-5342/exploit_bypass_pxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/qualcomm/CVE-2016-5342/exploit_bypass_pxn.c -------------------------------------------------------------------------------- /qualcomm/CVE-2016-5342/exploit_mp3.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/qualcomm/CVE-2016-5342/exploit_mp3.c -------------------------------------------------------------------------------- /qualcomm/CVE-2016-5342/exploit_mp3_bypass_pxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/qualcomm/CVE-2016-5342/exploit_mp3_bypass_pxn.c -------------------------------------------------------------------------------- /qualcomm/CVE-2016-5342/exploit_tty.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/qualcomm/CVE-2016-5342/exploit_tty.c -------------------------------------------------------------------------------- /qualcomm/CVE-2016-5342/exploit_tty_bypass_pxn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/qualcomm/CVE-2016-5342/exploit_tty_bypass_pxn.c -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/readme.md -------------------------------------------------------------------------------- /samsung/SVE-2017-10086/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/samsung/SVE-2017-10086/.gitignore -------------------------------------------------------------------------------- /samsung/SVE-2017-10086/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/samsung/SVE-2017-10086/LICENSE -------------------------------------------------------------------------------- /samsung/SVE-2017-10086/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/samsung/SVE-2017-10086/Makefile -------------------------------------------------------------------------------- /samsung/SVE-2017-10086/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/samsung/SVE-2017-10086/README.rst -------------------------------------------------------------------------------- /samsung/SVE-2017-10086/mtpwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SecWiki/android-kernel-exploits/HEAD/samsung/SVE-2017-10086/mtpwn.c --------------------------------------------------------------------------------