├── LICENSE ├── README.md ├── custom-manifest └── goldfish-android10-manifest.xml ├── documentation ├── environment_setup.md ├── fuzzing_with_afl++.md ├── fuzzing_with_syzkaller.md └── kernel_privesc_with_gdb_scripts.md ├── exploit-code ├── CMakeLists.txt ├── Makefile ├── binder_cve_2019_2215_exploit.cpp ├── binder_cve_2019_2215_exploit.h ├── binder_cve_2019_2215_poc.c └── common.h ├── fuzzer ├── binder_fuzzer.c └── fuzzer_wrapper.sh ├── gdb-scripts ├── binder_debug.py └── kernel_privesc.py ├── kernel-build-configs ├── x86_64_kasan_build.sh └── x86_64_kasan_debug_build.sh └── patches └── android-binder-cve-2019-2215-patch.patch /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/README.md -------------------------------------------------------------------------------- /custom-manifest/goldfish-android10-manifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/custom-manifest/goldfish-android10-manifest.xml -------------------------------------------------------------------------------- /documentation/environment_setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/documentation/environment_setup.md -------------------------------------------------------------------------------- /documentation/fuzzing_with_afl++.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/documentation/fuzzing_with_afl++.md -------------------------------------------------------------------------------- /documentation/fuzzing_with_syzkaller.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/documentation/fuzzing_with_syzkaller.md -------------------------------------------------------------------------------- /documentation/kernel_privesc_with_gdb_scripts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/documentation/kernel_privesc_with_gdb_scripts.md -------------------------------------------------------------------------------- /exploit-code/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/exploit-code/CMakeLists.txt -------------------------------------------------------------------------------- /exploit-code/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/exploit-code/Makefile -------------------------------------------------------------------------------- /exploit-code/binder_cve_2019_2215_exploit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/exploit-code/binder_cve_2019_2215_exploit.cpp -------------------------------------------------------------------------------- /exploit-code/binder_cve_2019_2215_exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/exploit-code/binder_cve_2019_2215_exploit.h -------------------------------------------------------------------------------- /exploit-code/binder_cve_2019_2215_poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/exploit-code/binder_cve_2019_2215_poc.c -------------------------------------------------------------------------------- /exploit-code/common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/exploit-code/common.h -------------------------------------------------------------------------------- /fuzzer/binder_fuzzer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/fuzzer/binder_fuzzer.c -------------------------------------------------------------------------------- /fuzzer/fuzzer_wrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/fuzzer/fuzzer_wrapper.sh -------------------------------------------------------------------------------- /gdb-scripts/binder_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/gdb-scripts/binder_debug.py -------------------------------------------------------------------------------- /gdb-scripts/kernel_privesc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/gdb-scripts/kernel_privesc.py -------------------------------------------------------------------------------- /kernel-build-configs/x86_64_kasan_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/kernel-build-configs/x86_64_kasan_build.sh -------------------------------------------------------------------------------- /kernel-build-configs/x86_64_kasan_debug_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/kernel-build-configs/x86_64_kasan_debug_build.sh -------------------------------------------------------------------------------- /patches/android-binder-cve-2019-2215-patch.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xbinder/android-kernel-exploitation-lab/HEAD/patches/android-binder-cve-2019-2215-patch.patch --------------------------------------------------------------------------------