├── README.md ├── android ├── CVE-2016-0805 │ ├── poc.c │ └── readme.md ├── CVE-2016-0844 │ ├── Android.mk │ ├── Application.mk │ ├── ipa_qmi_service_v01.h │ ├── makefile │ ├── msm_ipc.h │ ├── msm_rmnet.h │ ├── poc.c │ └── readme.md ├── CVE-2016-10285 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-10288 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-10290 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-10294 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-10295 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-10296 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-3865 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-3867 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── msm_ipa.h │ ├── poc.c │ └── readme.md ├── CVE-2016-3869 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-3906 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-6725 │ ├── poc.c │ └── readme.md ├── CVE-2016-6738 │ ├── Android.mk │ ├── Application.mk │ ├── fips_status.h │ ├── makefile │ ├── poc.c │ ├── qcedev.h │ └── readme.md ├── CVE-2016-6740 │ ├── poc.c │ └── readme.md ├── CVE-2016-6741 │ ├── poc.c │ └── readme.md ├── CVE-2016-6742 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-6744 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-6745 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2016-8464 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-0329 │ ├── poc.c │ └── readme.md ├── CVE-2017-0332 │ ├── poc.c │ └── readme.md ├── CVE-2017-0432 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-0434 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-0446 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-0447 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-0524 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-0536 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-0624 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-0744 │ ├── nvavp_aacdec_ucode.bin │ ├── readme │ └── readme.md ├── CVE-2017-10997 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-6426 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-8243 │ ├── readme │ └── readme.md ├── CVE-2017-8244 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-8266 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-8270 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2017-9691 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── CVE-2018-18281-Android │ ├── .gdb_history │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ ├── poc.old.c │ ├── readme.md │ └── runpoc.c ├── CVE-2018-18281 │ ├── mremap-ftruncate-race-widen.patch │ ├── poc.c │ └── readme.md ├── CVE-2023-20963 │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── com │ │ │ │ └── example │ │ │ │ └── badparcel │ │ │ │ └── ExampleInstrumentedTest.java │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── badparcel │ │ │ │ │ ├── AuthenticatorService.java │ │ │ │ │ ├── MainActivity.java │ │ │ │ │ └── MyAuthenticator.java │ │ │ └── res │ │ │ │ ├── drawable-v24 │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ ├── drawable │ │ │ │ └── ic_launcher_background.xml │ │ │ │ ├── layout │ │ │ │ └── activity_main.xml │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ ├── ic_launcher.xml │ │ │ │ └── ic_launcher_round.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.webp │ │ │ │ └── ic_launcher_round.webp │ │ │ │ ├── values-night │ │ │ │ └── themes.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ ├── strings.xml │ │ │ │ └── themes.xml │ │ │ │ └── xml │ │ │ │ ├── authenticator.xml │ │ │ │ ├── backup_rules.xml │ │ │ │ └── data_extraction_rules.xml │ │ │ └── test │ │ │ └── java │ │ │ └── com │ │ │ └── example │ │ │ └── badparcel │ │ │ └── ExampleUnitTest.java │ ├── assets │ │ └── CVE-2023-20963.gif │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── CVE-2023-21036 │ ├── README.md │ ├── Screenshot 2023-03-22 121216.png │ ├── acropalypse_detection.py │ ├── acropalypse_detection.yar │ ├── acropalypse_sanitizer.py │ └── test_imgs │ │ ├── windows10_snipping_tool_1.png │ │ ├── windows10_snipping_tool_1_cropped.png │ │ ├── windows10_snipping_tool_1_cropped_sanitized.png │ │ ├── windows10_snipping_tool_2.png │ │ ├── windows10_snipping_tool_2_cropped.png │ │ ├── windows10_snipping_tool_2_cropped_sanitized.png │ │ ├── windows10_snipping_tool_3.jpg │ │ ├── windows10_snipping_tool_3_cropped.jpg │ │ ├── windows10_snipping_tool_3_cropped_sanitized.jpg │ │ ├── windows11_1.png │ │ ├── windows11_1_cropped.png │ │ ├── windows11_1_cropped_sanitized.png │ │ ├── windows11_2.png │ │ ├── windows11_2_cropped.png │ │ ├── windows11_2_cropped_sanitized.png │ │ ├── windows11_3.jpg │ │ ├── windows11_3_cropped.jpg │ │ └── windows11_3_cropped_sanitized.jpg ├── CVE-2023-27703 │ ├── README.md │ └── pikpak_repetition.jpg ├── CVE-2023-33768 │ ├── README.md │ ├── brickDevice.py │ ├── com.belkin.wemoandroid.js │ └── crafted_firmware_tz.bin.enc ├── CVE-2023-35671 │ ├── README.md │ └── img │ │ ├── App_pinning.png │ │ ├── Brave_pinning_1.png │ │ ├── Brave_pinning_2.png │ │ ├── Brave_pinning_3.png │ │ ├── Brave_pinning_4.png │ │ ├── Brave_unpinned.png │ │ ├── Device_build.png │ │ ├── Device_model.png │ │ ├── FlipperZero.png │ │ ├── FlipperZero_output.png │ │ ├── GoogleWallet.png │ │ ├── GoogleWallet_exploited_1.png │ │ ├── GoogleWallet_exploited_2.png │ │ ├── LockScreen.png │ │ ├── NFC_settings.png │ │ ├── hqdefault.png │ │ └── poc.gif ├── CVE-2023-45777 │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ ├── example │ │ │ │ └── ambigousbundle14 │ │ │ │ │ ├── Ambiguator.java │ │ │ │ │ ├── AuthService.java │ │ │ │ │ └── MainActivity.java │ │ │ │ └── samsung │ │ │ │ └── android │ │ │ │ └── content │ │ │ │ └── clipboard │ │ │ │ └── data │ │ │ │ └── SemImageClipData.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values │ │ │ └── strings.xml │ │ │ └── xml │ │ │ └── authenticator.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── make-aosp-buggy.sh │ └── settings.gradle ├── CVE-2023-50226 │ ├── README.md │ ├── poc.png │ └── poc.sh ├── CVE-2023-6241 │ ├── About.txt │ ├── README.md │ ├── firmware_offsets.h │ ├── log_utils.h │ ├── mali_base_common_kernel.h │ ├── mali_base_csf_kernel.h │ ├── mali_base_kernel.h │ ├── mali_jit_csf.c │ ├── mali_kbase_csf_ioctl.h │ ├── mali_kbase_ioctl.h │ ├── mem_read_write.c │ ├── mem_read_write.h │ ├── mempool_utils.c │ └── mempool_utils.h ├── CVE-2024-0015 │ ├── .gitignore │ ├── .idea │ │ ├── .gitignore │ │ ├── compiler.xml │ │ ├── gradle.xml │ │ ├── misc.xml │ │ └── vcs.xml │ ├── README.md │ ├── app │ │ ├── .gitignore │ │ ├── build.gradle │ │ ├── proguard-rules.pro │ │ └── src │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── com │ │ │ │ └── tsctf │ │ │ │ └── daydream │ │ │ │ ├── MainActivity.java │ │ │ │ └── MyService.java │ │ │ └── res │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ └── ic_launcher_background.xml │ │ │ ├── layout │ │ │ ├── activity_main.xml │ │ │ └── dream.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-anydpi-v33 │ │ │ └── ic_launcher.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── themes.xml │ │ │ ├── values │ │ │ ├── colors.xml │ │ │ ├── refs.xml │ │ │ ├── strings.xml │ │ │ └── themes.xml │ │ │ └── xml │ │ │ ├── backup_rules.xml │ │ │ ├── data_extraction_rules.xml │ │ │ └── test_dream_metadata.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── EXP-2015-5165 │ ├── build-exploit.sh │ ├── create-image.sh │ ├── exp-2015-5165.c │ ├── makefile │ ├── poc-2015-5165.c │ ├── qemu.h │ └── readme.md ├── EXP-2015-7504 │ ├── build-exploit.sh │ ├── exp-2015-5165-7504.c │ ├── makefile │ ├── poc-2015-7504-crash.c │ ├── poc-2015-7504-hijack.c │ ├── qemu.h │ └── readme.md ├── EXP-CVE-2016-0844 │ └── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── ipa_qmi_service_v01.h │ │ ├── msm_rmnet.h │ │ └── pwn.c ├── EXP-CVE-2016-2384 │ ├── README.md │ ├── device.txt │ ├── kasan-raw.txt │ ├── kasan.txt │ ├── poc.c │ └── poc.py ├── EXP-CVE-2016-2411 │ ├── Android.mk │ ├── Application.mk │ ├── pwn.c │ └── readme.md ├── EXP-CVE-2016-2434 │ ├── Android.mk │ ├── Application.mk │ ├── pwn.c │ ├── readme.md │ └── syscall.S ├── EXP-CVE-2016-2435 │ ├── Android.mk │ ├── Application.mk │ ├── pwn.c │ ├── readme.md │ └── syscall.S ├── EXP-CVE-2016-3857 │ ├── Android.mk │ ├── pwn.c │ ├── pwn.h │ ├── readme │ ├── readme.md │ └── syscall.S ├── EXP-CVE-2016-3935 │ ├── Android.mk │ ├── Application.mk │ ├── fips_status.h │ ├── makefile │ ├── pwn.c │ ├── qcedev.h │ ├── readme.md │ └── syscall.S ├── EXP-CVE-2016-6738 │ ├── Android.mk │ ├── Application.mk │ ├── fips_status.h │ ├── makefile │ ├── pwn.c │ ├── qcedev.h │ ├── readme.md │ └── syscall.S ├── EXP-CVE-2016-9793 │ ├── README.md │ ├── poc.c │ └── trigger.c ├── EXP-CVE-2017-1000112 │ ├── README.md │ └── poc.c ├── EXP-CVE-2017-6074 │ ├── README.md │ ├── poc.c │ └── trigger.c ├── EXP-CVE-2017-7308 │ ├── README.md │ └── poc.c ├── EXP-CVE-2018-17182 │ ├── README.md │ ├── dmesg │ ├── p.jpg │ ├── push.sh │ ├── vma_test.c │ ├── vma_test.zip │ ├── vmacache-debugging.patch │ ├── vmacache.tar │ └── vmacache │ │ ├── compile.sh │ │ ├── puppet │ │ ├── puppet.c │ │ ├── puppeteer │ │ ├── puppeteer.c │ │ ├── suidhelper │ │ ├── suidhelper.c │ │ ├── vmacache_helper.c │ │ └── vmacache_helper.h ├── EXP-CVE-2018-18281 │ ├── Android.mk │ ├── Application.mk │ ├── arm_shellcode.s │ ├── compile.sh │ ├── exp.c │ ├── makefile │ ├── readme.md │ └── watchdog.c ├── EXP-CVE-2019-13272-aarch64 │ ├── README.md │ ├── exp.c │ ├── fakehelper.c │ ├── fakepkexec.c │ └── make.sh ├── EXP-CVE-2019-13272 │ ├── exp.c │ ├── fakehelper.c │ ├── fakepkexec.c │ ├── make.sh │ └── readme.md ├── EXP-CVE-2019-2215 │ ├── Makefile │ ├── README.md │ └── cve-2019-2215.c ├── EXP-CVE-2020-0041 │ ├── README.md │ ├── lpe │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── Makefile │ │ ├── README.md │ │ ├── include │ │ │ ├── binder.h │ │ │ ├── binder_lookup.h │ │ │ ├── endpoint.h │ │ │ ├── exploit.h │ │ │ ├── handle.h │ │ │ ├── helpers.h │ │ │ ├── log.h │ │ │ ├── node.h │ │ │ ├── pending_node.h │ │ │ ├── realloc.h │ │ │ └── uapi_binder.h │ │ └── src │ │ │ ├── binder.c │ │ │ ├── binder_lookup.c │ │ │ ├── endpoint.c │ │ │ ├── exploit.c │ │ │ ├── helpers.c │ │ │ ├── log.c │ │ │ ├── node.c │ │ │ ├── pending_node.c │ │ │ └── realloc.c │ └── sandbox │ │ ├── README.md │ │ ├── index.html │ │ ├── main.diff │ │ ├── reverse_shell │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── Makefile │ │ └── src │ │ │ └── reverse_shell.c │ │ ├── serve.py │ │ └── v8.diff ├── EXP-CVE-2020-0069 │ ├── README.md │ ├── jni │ │ ├── Android.mk │ │ ├── Application.mk │ │ ├── kernel_rw.c │ │ ├── mtk │ │ │ ├── cmdq_def.h │ │ │ ├── cmdq_engine_common.h │ │ │ ├── cmdq_event_common.h │ │ │ ├── cmdq_subsys_common.h │ │ │ ├── cmdq_v3_driver.h │ │ │ └── mtk-cmdq.h │ │ └── syscall_hook.c │ └── poc.sh ├── EXP-CVE-2023-26083 │ ├── README.md │ ├── mali.h │ ├── mali_base_common_kernel.h │ └── poc.cpp ├── cve-2016-3866 │ ├── Android.mk │ ├── Application.mk │ ├── compress_params.h │ ├── makefile │ ├── poc.c │ └── readme.md ├── cve-2016-3901 │ ├── Android.mk │ ├── Application.mk │ ├── fips_status.h │ ├── makefile │ ├── poc.c │ ├── qcedev.h │ └── readme.md ├── cve-2016-3935 │ ├── Android.mk │ ├── Application.mk │ ├── fips_status.h │ ├── makefile │ ├── poc.c │ ├── qcedev.h │ └── readme.md ├── cve-2016-3940 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── cve-2016-5195 │ ├── Android.mk │ ├── Application.mk │ ├── Makefile │ ├── README.md │ ├── dirtycow.c │ ├── dirtycow_onecpu.c │ ├── makefile │ ├── readme.md │ └── run-as.c ├── cve-2016-6672 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md └── cve-2016-6690 │ ├── Android.mk │ ├── Application.mk │ ├── makefile │ ├── poc.c │ └── readme.md ├── linux ├── CVE-2019-1010298 │ ├── Android.mk │ ├── CMakeLists.txt │ ├── Makefile │ ├── README.md │ ├── host │ │ ├── Makefile │ │ └── exploit.c │ └── ta │ │ ├── Android.mk │ │ ├── Makefile │ │ ├── include │ │ └── verify.h │ │ ├── sub.mk │ │ ├── user_ta_header_defines.h │ │ └── verify.c ├── CVE-2021-22555 │ └── exp.c ├── CVE-2021-33909 │ ├── exploit.c │ ├── exploit.hello.c │ └── readme.md ├── CVE-2021-34866 │ ├── Makefile │ ├── README.md │ ├── bpf.h │ └── exploit.c ├── CVE-2021-3490 │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── bin │ │ └── .placeholder │ ├── bpf.c │ ├── exploit.c │ ├── include │ │ ├── bpf_defs.h │ │ ├── exploit_configs.h │ │ ├── kernel_defs.h │ │ └── kmem_search.h │ └── kmem_search.c ├── CVE-2021-3573 │ ├── Makefile │ ├── README.md │ ├── exploit.c │ ├── util.c │ └── util.h ├── CVE-2021-4034 │ ├── CVE-2021-4034-wp.md │ ├── Readme.md │ ├── a2bf5c9c83b6ae46cbd5c779d3055bff81ded683.patch │ ├── blasty-vs-pkexec.c │ ├── images │ │ ├── 2022-01-26-16-52-51.png │ │ ├── 2022-01-26-17-28-25.png │ │ └── 2022-01-27-14-18-17.png │ ├── poc-arthepsy.c │ └── poc-clubby789.c ├── CVE-2021-42008 │ ├── 6pack_exploit.c │ ├── Makefile │ ├── README.md │ ├── debug │ │ ├── gdb.cmd │ │ └── run.sh │ └── exploit.gif ├── CVE-2022-0185 │ ├── Makefile │ ├── README.md │ ├── exploit_fuse.c │ ├── exploit_kctf.c │ ├── fakefuse.c │ ├── fakefuse.h │ ├── libfuse │ │ ├── cuse_lowlevel.h │ │ ├── fuse.h │ │ ├── fuse_common.h │ │ ├── fuse_kernel.h │ │ ├── fuse_log.h │ │ ├── fuse_lowlevel.h │ │ ├── fuse_opt.h │ │ └── meson.build │ ├── libfuse3.a │ ├── util.c │ └── util.h ├── CVE-2022-1015 │ ├── .gitignore │ ├── Makefile │ ├── README.md │ ├── helpers.c │ ├── helpers.h │ └── pwn.c ├── CVE-2022-23222 │ ├── CVE-2022-23222漏洞分析.md │ ├── Makefile │ ├── README.md │ ├── exploit.c │ ├── images │ │ ├── 01.jpg │ │ ├── 02.jpg │ │ └── 03.jpg │ └── include │ │ ├── bpf.h │ │ ├── config.h │ │ ├── debug.h │ │ └── helper.h ├── CVE-2022-25636 │ ├── Makefile │ ├── README.md │ ├── exploit.c │ ├── fakefuse.c │ ├── fakefuse.h │ ├── poc.png │ ├── util.c │ └── util.h ├── CVE-2022-29582 │ ├── Makefile │ ├── affinity.h │ ├── bin │ │ └── exp │ ├── cross_cache.c │ ├── cross_cache.h │ ├── err_state.h │ ├── liburing │ │ ├── .github │ │ │ ├── pull_request_template.md │ │ │ └── workflows │ │ │ │ ├── build.yml │ │ │ │ └── shellcheck.yml │ │ ├── .gitignore │ │ ├── CHANGELOG │ │ ├── CITATION.cff │ │ ├── COPYING │ │ ├── COPYING.GPL │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── Makefile.quiet │ │ ├── README │ │ ├── SECURITY.md │ │ ├── configure │ │ ├── debian │ │ │ ├── README.Debian │ │ │ ├── changelog │ │ │ ├── compat │ │ │ ├── control │ │ │ ├── copyright │ │ │ ├── liburing-dev.install │ │ │ ├── liburing-dev.manpages │ │ │ ├── liburing1-udeb.install │ │ │ ├── liburing1.install │ │ │ ├── liburing1.symbols │ │ │ ├── patches │ │ │ │ └── series │ │ │ ├── rules │ │ │ ├── source │ │ │ │ ├── format │ │ │ │ ├── local-options │ │ │ │ └── options │ │ │ └── watch │ │ ├── examples │ │ │ ├── Makefile │ │ │ ├── io_uring-cp.c │ │ │ ├── io_uring-test.c │ │ │ ├── link-cp.c │ │ │ └── ucontext-cp.c │ │ ├── liburing.pc.in │ │ ├── liburing.spec │ │ ├── make-debs.sh │ │ ├── man │ │ │ ├── io_uring.7 │ │ │ ├── io_uring_buf_ring_add.3 │ │ │ ├── io_uring_buf_ring_advance.3 │ │ │ ├── io_uring_buf_ring_cq_advance.3 │ │ │ ├── io_uring_buf_ring_init.3 │ │ │ ├── io_uring_buf_ring_mask.3 │ │ │ ├── io_uring_cq_advance.3 │ │ │ ├── io_uring_cq_ready.3 │ │ │ ├── io_uring_cqe_get_data.3 │ │ │ ├── io_uring_cqe_get_data64.3 │ │ │ ├── io_uring_cqe_seen.3 │ │ │ ├── io_uring_enter.2 │ │ │ ├── io_uring_free_probe.3 │ │ │ ├── io_uring_get_probe.3 │ │ │ ├── io_uring_get_sqe.3 │ │ │ ├── io_uring_opcode_supported.3 │ │ │ ├── io_uring_peek_cqe.3 │ │ │ ├── io_uring_prep_accept.3 │ │ │ ├── io_uring_prep_accept_direct.3 │ │ │ ├── io_uring_prep_cancel.3 │ │ │ ├── io_uring_prep_cancel64.3 │ │ │ ├── io_uring_prep_close.3 │ │ │ ├── io_uring_prep_close_direct.3 │ │ │ ├── io_uring_prep_connect.3 │ │ │ ├── io_uring_prep_fadvise.3 │ │ │ ├── io_uring_prep_fallocate.3 │ │ │ ├── io_uring_prep_files_update.3 │ │ │ ├── io_uring_prep_fsync.3 │ │ │ ├── io_uring_prep_link.3 │ │ │ ├── io_uring_prep_linkat.3 │ │ │ ├── io_uring_prep_madvise.3 │ │ │ ├── io_uring_prep_mkdir.3 │ │ │ ├── io_uring_prep_mkdirat.3 │ │ │ ├── io_uring_prep_msg_ring.3 │ │ │ ├── io_uring_prep_multishot_accept.3 │ │ │ ├── io_uring_prep_multishot_accept_direct.3 │ │ │ ├── io_uring_prep_openat.3 │ │ │ ├── io_uring_prep_openat2.3 │ │ │ ├── io_uring_prep_openat2_direct.3 │ │ │ ├── io_uring_prep_openat_direct.3 │ │ │ ├── io_uring_prep_poll_add.3 │ │ │ ├── io_uring_prep_poll_multishot.3 │ │ │ ├── io_uring_prep_poll_remove.3 │ │ │ ├── io_uring_prep_poll_update.3 │ │ │ ├── io_uring_prep_provide_buffers.3 │ │ │ ├── io_uring_prep_read.3 │ │ │ ├── io_uring_prep_read_fixed.3 │ │ │ ├── io_uring_prep_readv.3 │ │ │ ├── io_uring_prep_readv2.3 │ │ │ ├── io_uring_prep_recv.3 │ │ │ ├── io_uring_prep_recvmsg.3 │ │ │ ├── io_uring_prep_remove_buffers.3 │ │ │ ├── io_uring_prep_rename.3 │ │ │ ├── io_uring_prep_renameat.3 │ │ │ ├── io_uring_prep_send.3 │ │ │ ├── io_uring_prep_sendmsg.3 │ │ │ ├── io_uring_prep_shutdown.3 │ │ │ ├── io_uring_prep_socket.3 │ │ │ ├── io_uring_prep_socket_direct.3 │ │ │ ├── io_uring_prep_splice.3 │ │ │ ├── io_uring_prep_statx.3 │ │ │ ├── io_uring_prep_symlink.3 │ │ │ ├── io_uring_prep_symlinkat.3 │ │ │ ├── io_uring_prep_sync_file_range.3 │ │ │ ├── io_uring_prep_tee.3 │ │ │ ├── io_uring_prep_timeout.3 │ │ │ ├── io_uring_prep_timeout_remove.3 │ │ │ ├── io_uring_prep_timeout_update.3 │ │ │ ├── io_uring_prep_unlink.3 │ │ │ ├── io_uring_prep_unlinkat.3 │ │ │ ├── io_uring_prep_write.3 │ │ │ ├── io_uring_prep_write_fixed.3 │ │ │ ├── io_uring_prep_writev.3 │ │ │ ├── io_uring_prep_writev2.3 │ │ │ ├── io_uring_queue_exit.3 │ │ │ ├── io_uring_queue_init.3 │ │ │ ├── io_uring_queue_init_params.3 │ │ │ ├── io_uring_register.2 │ │ │ ├── io_uring_register_buf_ring.3 │ │ │ ├── io_uring_register_buffers.3 │ │ │ ├── io_uring_register_eventfd.3 │ │ │ ├── io_uring_register_eventfd_async.3 │ │ │ ├── io_uring_register_files.3 │ │ │ ├── io_uring_register_iowq_aff.3 │ │ │ ├── io_uring_register_iowq_max_workers.3 │ │ │ ├── io_uring_register_ring_fd.3 │ │ │ ├── io_uring_setup.2 │ │ │ ├── io_uring_sq_ready.3 │ │ │ ├── io_uring_sq_space_left.3 │ │ │ ├── io_uring_sqe_set_data.3 │ │ │ ├── io_uring_sqe_set_data64.3 │ │ │ ├── io_uring_sqe_set_flags.3 │ │ │ ├── io_uring_sqring_wait.3 │ │ │ ├── io_uring_submit.3 │ │ │ ├── io_uring_submit_and_wait.3 │ │ │ ├── io_uring_submit_and_wait_timeout.3 │ │ │ ├── io_uring_unregister_buf_ring.3 │ │ │ ├── io_uring_unregister_buffers.3 │ │ │ ├── io_uring_unregister_eventfd.3 │ │ │ ├── io_uring_unregister_files.3 │ │ │ ├── io_uring_unregister_iowq_aff.3 │ │ │ ├── io_uring_unregister_ring_fd.3 │ │ │ ├── io_uring_wait_cqe.3 │ │ │ ├── io_uring_wait_cqe_nr.3 │ │ │ ├── io_uring_wait_cqe_timeout.3 │ │ │ └── io_uring_wait_cqes.3 │ │ ├── src │ │ │ ├── Makefile │ │ │ ├── arch │ │ │ │ ├── aarch64 │ │ │ │ │ └── syscall.h │ │ │ │ ├── generic │ │ │ │ │ ├── lib.h │ │ │ │ │ └── syscall.h │ │ │ │ ├── syscall-defs.h │ │ │ │ └── x86 │ │ │ │ │ ├── lib.h │ │ │ │ │ └── syscall.h │ │ │ ├── include │ │ │ │ ├── liburing.h │ │ │ │ └── liburing │ │ │ │ │ ├── barrier.h │ │ │ │ │ └── io_uring.h │ │ │ ├── int_flags.h │ │ │ ├── lib.h │ │ │ ├── liburing.map │ │ │ ├── nolibc.c │ │ │ ├── queue.c │ │ │ ├── register.c │ │ │ ├── setup.c │ │ │ ├── syscall.c │ │ │ └── syscall.h │ │ └── test │ │ │ ├── 232c93d07b74.c │ │ │ ├── 35fa71a030ca.c │ │ │ ├── 500f9fbadef8.c │ │ │ ├── 7ad0e4b2f83c.c │ │ │ ├── 8a9973408177.c │ │ │ ├── 917257daa0fe.c │ │ │ ├── Makefile │ │ │ ├── a0908ae19763.c │ │ │ ├── a4c0b3decb33.c │ │ │ ├── accept-link.c │ │ │ ├── accept-reuse.c │ │ │ ├── accept-test.c │ │ │ ├── accept.c │ │ │ ├── across-fork.c │ │ │ ├── b19062a56726.c │ │ │ ├── b5837bd5311d.c │ │ │ ├── buf-ring.c │ │ │ ├── ce593a6c480a.c │ │ │ ├── close-opath.c │ │ │ ├── config │ │ │ ├── connect.c │ │ │ ├── cq-full.c │ │ │ ├── cq-overflow.c │ │ │ ├── cq-peek-batch.c │ │ │ ├── cq-ready.c │ │ │ ├── cq-size.c │ │ │ ├── d4ae271dfaae.c │ │ │ ├── d77a67ed5f27.c │ │ │ ├── defer.c │ │ │ ├── double-poll-crash.c │ │ │ ├── drop-submit.c │ │ │ ├── eeed8b54e0df.c │ │ │ ├── empty-eownerdead.c │ │ │ ├── eventfd-disable.c │ │ │ ├── eventfd-reg.c │ │ │ ├── eventfd-ring.c │ │ │ ├── eventfd.c │ │ │ ├── exec-target.c │ │ │ ├── exit-no-cleanup.c │ │ │ ├── fadvise.c │ │ │ ├── fallocate.c │ │ │ ├── fc2a85cb02ef.c │ │ │ ├── file-register.c │ │ │ ├── file-update.c │ │ │ ├── file-verify.c │ │ │ ├── files-exit-hang-poll.c │ │ │ ├── files-exit-hang-timeout.c │ │ │ ├── fixed-buf-iter.c │ │ │ ├── fixed-link.c │ │ │ ├── fixed-reuse.c │ │ │ ├── fpos.c │ │ │ ├── fsync.c │ │ │ ├── hardlink.c │ │ │ ├── helpers.c │ │ │ ├── helpers.h │ │ │ ├── io-cancel.c │ │ │ ├── io_uring_enter.c │ │ │ ├── io_uring_register.c │ │ │ ├── io_uring_setup.c │ │ │ ├── iopoll.c │ │ │ ├── lfs-openat-write.c │ │ │ ├── lfs-openat.c │ │ │ ├── link-timeout.c │ │ │ ├── link.c │ │ │ ├── link_drain.c │ │ │ ├── madvise.c │ │ │ ├── mkdir.c │ │ │ ├── msg-ring.c │ │ │ ├── multicqes_drain.c │ │ │ ├── nop-all-sizes.c │ │ │ ├── nop.c │ │ │ ├── open-close.c │ │ │ ├── open-direct-link.c │ │ │ ├── open-direct-pick.c │ │ │ ├── openat2.c │ │ │ ├── personality.c │ │ │ ├── pipe-eof.c │ │ │ ├── pipe-reuse.c │ │ │ ├── poll-cancel-all.c │ │ │ ├── poll-cancel-ton.c │ │ │ ├── poll-cancel.c │ │ │ ├── poll-link.c │ │ │ ├── poll-many.c │ │ │ ├── poll-mshot-update.c │ │ │ ├── poll-ring.c │ │ │ ├── poll-v-poll.c │ │ │ ├── poll.c │ │ │ ├── pollfree.c │ │ │ ├── probe.c │ │ │ ├── read-before-exit.c │ │ │ ├── read-write.c │ │ │ ├── recv-msgall-stream.c │ │ │ ├── recv-msgall.c │ │ │ ├── register-restrictions.c │ │ │ ├── rename.c │ │ │ ├── ring-leak.c │ │ │ ├── ring-leak2.c │ │ │ ├── ringbuf-read.c │ │ │ ├── rsrc_tags.c │ │ │ ├── runtests-loop.sh │ │ │ ├── runtests-quiet.sh │ │ │ ├── runtests.sh │ │ │ ├── rw_merge_test.c │ │ │ ├── self.c │ │ │ ├── send_recv.c │ │ │ ├── send_recvmsg.c │ │ │ ├── sendmsg_fs_cve.c │ │ │ ├── shared-wq.c │ │ │ ├── short-read.c │ │ │ ├── shutdown.c │ │ │ ├── sigfd-deadlock.c │ │ │ ├── skip-cqe.c │ │ │ ├── socket-rw-eagain.c │ │ │ ├── socket-rw-offset.c │ │ │ ├── socket-rw.c │ │ │ ├── socket.c │ │ │ ├── splice.c │ │ │ ├── sq-full-cpp.cc │ │ │ ├── sq-full.c │ │ │ ├── sq-poll-dup.c │ │ │ ├── sq-poll-kthread.c │ │ │ ├── sq-poll-share.c │ │ │ ├── sq-space_left.c │ │ │ ├── sqpoll-cancel-hang.c │ │ │ ├── sqpoll-disable-exit.c │ │ │ ├── sqpoll-exit-hang.c │ │ │ ├── sqpoll-sleep.c │ │ │ ├── statx.c │ │ │ ├── stdout.c │ │ │ ├── submit-link-fail.c │ │ │ ├── submit-reuse.c │ │ │ ├── symlink.c │ │ │ ├── teardowns.c │ │ │ ├── test.h │ │ │ ├── thread-exit.c │ │ │ ├── timeout-new.c │ │ │ ├── timeout-overflow.c │ │ │ ├── timeout.c │ │ │ ├── tty-write-dpoll.c │ │ │ ├── unlink.c │ │ │ ├── wakeup-hang.c │ │ │ └── xattr.c │ ├── main.c │ ├── manager.c │ ├── manager.h │ ├── msg.c │ ├── msg.h │ ├── ring_helpers.h │ ├── rop.h │ ├── tls.c │ ├── tls.h │ └── vmlinuz-5.10.90 ├── CVE-2022-34918 │ ├── README.md │ ├── assets │ │ └── lpe.png │ ├── generate_shellcode │ │ ├── gen_shellcode.sh │ │ └── shellcode.c │ ├── poc_fs_context_common │ │ ├── Makefile │ │ ├── include │ │ │ ├── common.h │ │ │ ├── fsopen_spray.h │ │ │ ├── keyring.h │ │ │ ├── log.h │ │ │ ├── modprobe.h │ │ │ ├── netlink.h │ │ │ ├── nf_tables.h │ │ │ └── raw_packet.h │ │ └── src │ │ │ ├── common.c │ │ │ ├── fsopen_spray.c │ │ │ ├── keyring.c │ │ │ ├── main.c │ │ │ ├── modprobe.c │ │ │ ├── netlink.c │ │ │ ├── nf_tables.c │ │ │ └── raw_packet.c │ ├── poc_fs_context_cred_common │ │ ├── Makefile │ │ ├── include │ │ │ ├── common.h │ │ │ ├── fsopen_spray.h │ │ │ ├── keyring.h │ │ │ ├── log.h │ │ │ ├── modprobe.h │ │ │ ├── netlink.h │ │ │ ├── nf_tables.h │ │ │ └── raw_packet.h │ │ └── src │ │ │ ├── common.c │ │ │ ├── fsopen_spray.c │ │ │ ├── keyring.c │ │ │ ├── main.c │ │ │ ├── modprobe.c │ │ │ ├── netlink.c │ │ │ ├── nf_tables.c │ │ │ └── raw_packet.c │ ├── poc_keyring_common │ │ ├── Makefile │ │ ├── include │ │ │ ├── common.h │ │ │ ├── keyring.h │ │ │ ├── log.h │ │ │ ├── netlink.h │ │ │ ├── nf_tables.h │ │ │ └── raw_packet.h │ │ └── src │ │ │ ├── common.c │ │ │ ├── keyring.c │ │ │ ├── main.c │ │ │ ├── netlink.c │ │ │ ├── nf_tables.c │ │ │ └── raw_packet.c │ ├── poc_keyring_normal │ │ ├── Makefile │ │ ├── include │ │ │ ├── common.h │ │ │ ├── kernel_offset.h │ │ │ ├── keyring.h │ │ │ ├── log.h │ │ │ ├── netlink.h │ │ │ ├── nf_tables.h │ │ │ └── raw_packet.h │ │ └── src │ │ │ ├── common.c │ │ │ ├── keyring.c │ │ │ ├── main.c │ │ │ ├── netlink.c │ │ │ ├── nf_tables.c │ │ │ └── raw_packet.c │ └── sample_config ├── CVE-2022-40768 │ ├── Makefile │ └── poc.c ├── CVE-2024-0684 │ ├── readme.md │ └── split_me └── CVE-2024-21626 │ ├── .DS_Store │ ├── About.txt │ ├── Dockerfile │ ├── README.md │ ├── media │ └── 17071501238579 │ │ ├── 17071528589375.jpg │ │ ├── 17071529862666.jpg │ │ ├── 17071557756484.jpg │ │ ├── 17071562985583.jpg │ │ ├── 17071581615902.jpg │ │ └── 17071597824837.jpg │ ├── poc.sh │ ├── poc2.sh │ └── verify.sh ├── mosec-2016 ├── Advanced Android Root:How To Bypass PXN.ppt └── Android Root利用技术漫谈:绕过PXN.ppt ├── qemu └── cve-2015-5165 │ ├── Makefile │ ├── build-exploit.sh │ ├── cve-2015-5165.c │ ├── cve-2015-7504.c │ ├── mmu.c │ ├── qemu.h │ ├── readme.md │ ├── reverse-crc.c │ └── vm-escape.c └── tools └── setools ├── readme.md ├── setools-run-on-android ├── Android.mk ├── Application.mk ├── include │ ├── apol │ │ ├── avrule-query.h │ │ ├── bool-query.h │ │ ├── bst.h │ │ ├── class-perm-query.h │ │ ├── condrule-query.h │ │ ├── constraint-query.h │ │ ├── context-query.h │ │ ├── domain-trans-analysis.h │ │ ├── fscon-query.h │ │ ├── ftrule-query.h │ │ ├── infoflow-analysis.h │ │ ├── isid-query.h │ │ ├── mls-query.h │ │ ├── mls_level.h │ │ ├── mls_range.h │ │ ├── netcon-query.h │ │ ├── perm-map.h │ │ ├── permissive-query.h │ │ ├── polcap-query.h │ │ ├── policy-path.h │ │ ├── policy-query.h │ │ ├── policy.h │ │ ├── range_trans-query.h │ │ ├── rbacrule-query.h │ │ ├── relabel-analysis.h │ │ ├── render.h │ │ ├── role-query.h │ │ ├── terule-query.h │ │ ├── type-query.h │ │ ├── types-relation-analysis.h │ │ ├── user-query.h │ │ ├── util.h │ │ └── vector.h │ ├── config.h │ └── qpol │ │ ├── avrule_query.h │ │ ├── bool_query.h │ │ ├── class_perm_query.h │ │ ├── cond_query.h │ │ ├── constraint_query.h │ │ ├── context_query.h │ │ ├── fs_use_query.h │ │ ├── ftrule_query.h │ │ ├── genfscon_query.h │ │ ├── isid_query.h │ │ ├── iterator.h │ │ ├── mls_query.h │ │ ├── mlsrule_query.h │ │ ├── module.h │ │ ├── netifcon_query.h │ │ ├── nodecon_query.h │ │ ├── permissive_query.h │ │ ├── polcap_query.h │ │ ├── policy.h │ │ ├── policy_extend.h │ │ ├── portcon_query.h │ │ ├── rbacrule_query.h │ │ ├── role_query.h │ │ ├── syn_rule_query.h │ │ ├── terule_query.h │ │ ├── type_query.h │ │ ├── user_query.h │ │ └── util.h ├── libapol │ ├── Android.mk │ ├── avrule-query.c │ ├── bool-query.c │ ├── bst.c │ ├── class-perm-query.c │ ├── condrule-query.c │ ├── constraint-query.c │ ├── context-query.c │ ├── domain-trans-analysis-internal.h │ ├── domain-trans-analysis.c │ ├── fscon-query.c │ ├── ftrule-query.c │ ├── getline.c │ ├── getline.h │ ├── infoflow-analysis-internal.h │ ├── infoflow-analysis.c │ ├── isid-query.c │ ├── libapol.map │ ├── mls-query.c │ ├── mls_level.c │ ├── mls_range.c │ ├── netcon-query.c │ ├── perm-map.c │ ├── permissive-query.c │ ├── polcap-query.c │ ├── policy-path.c │ ├── policy-query-internal.h │ ├── policy-query.c │ ├── policy.c │ ├── queue.c │ ├── queue.h │ ├── range_trans-query.c │ ├── rbacrule-query.c │ ├── regex │ │ ├── COPYRIGHT │ │ ├── NOTICE │ │ ├── WHATSNEW │ │ ├── cclass.h │ │ ├── cname.h │ │ ├── engine.c │ │ ├── regcomp.c │ │ ├── regerror.c │ │ ├── regex.h │ │ ├── regex2.h │ │ ├── regexec.c │ │ ├── regfree.c │ │ ├── strlcpy.c │ │ ├── strlcpy.h │ │ └── utils.h │ ├── relabel-analysis.c │ ├── render.c │ ├── role-query.c │ ├── terule-query.c │ ├── type-query.c │ ├── types-relation-analysis.c │ ├── user-query.c │ ├── util.c │ ├── vector-internal.h │ └── vector.c ├── libqpol │ ├── Android.mk │ ├── avrule_query.c │ ├── bool_query.c │ ├── bzip2 │ │ ├── CHANGES │ │ ├── LICENSE │ │ ├── README │ │ ├── README.COMPILATION.PROBLEMS │ │ ├── README.XML.STUFF │ │ ├── blocksort.c │ │ ├── bzlib.c │ │ ├── bzlib.h │ │ ├── bzlib_private.h │ │ ├── compress.c │ │ ├── crctable.c │ │ ├── decompress.c │ │ ├── huffman.c │ │ └── randtable.c │ ├── class_perm_query.c │ ├── cond_query.c │ ├── constraint_query.c │ ├── context_query.c │ ├── expand.c │ ├── expand.h │ ├── fs_use_query.c │ ├── ftrule_query.c │ ├── genfscon_query.c │ ├── isid_query.c │ ├── iterator.c │ ├── iterator_internal.h │ ├── libqpol.map │ ├── mls_query.c │ ├── mlsrule_query.c │ ├── module.c │ ├── module_compiler.c │ ├── module_compiler.h │ ├── netifcon_query.c │ ├── nodecon_query.c │ ├── permissive_query.c │ ├── polcap_query.c │ ├── policy.c │ ├── policy_define.c │ ├── policy_define.h │ ├── policy_extend.c │ ├── policy_parse.c │ ├── policy_parse.h │ ├── policy_parse.y │ ├── policy_scan.c │ ├── policy_scan.l │ ├── portcon_query.c │ ├── qpol_internal.h │ ├── queue.c │ ├── queue.h │ ├── rbacrule_query.c │ ├── role_query.c │ ├── syn_rule_internal.h │ ├── syn_rule_query.c │ ├── terule_query.c │ ├── type_query.c │ ├── user_query.c │ └── util.c ├── libsepol │ ├── Android.mk │ ├── COPYING │ ├── ChangeLog │ ├── VERSION │ ├── include │ │ ├── Makefile │ │ └── sepol │ │ │ ├── boolean_record.h │ │ │ ├── booleans.h │ │ │ ├── context.h │ │ │ ├── context_record.h │ │ │ ├── debug.h │ │ │ ├── errcodes.h │ │ │ ├── handle.h │ │ │ ├── ibendport_record.h │ │ │ ├── ibendports.h │ │ │ ├── ibpkey_record.h │ │ │ ├── ibpkeys.h │ │ │ ├── iface_record.h │ │ │ ├── interfaces.h │ │ │ ├── kernel_to_cil.h │ │ │ ├── kernel_to_conf.h │ │ │ ├── module.h │ │ │ ├── module_to_cil.h │ │ │ ├── node_record.h │ │ │ ├── nodes.h │ │ │ ├── policydb.h │ │ │ ├── policydb │ │ │ ├── avrule_block.h │ │ │ ├── avtab.h │ │ │ ├── conditional.h │ │ │ ├── constraint.h │ │ │ ├── context.h │ │ │ ├── ebitmap.h │ │ │ ├── expand.h │ │ │ ├── flask.h │ │ │ ├── flask_types.h │ │ │ ├── hashtab.h │ │ │ ├── hierarchy.h │ │ │ ├── link.h │ │ │ ├── mls_types.h │ │ │ ├── module.h │ │ │ ├── polcaps.h │ │ │ ├── policydb.h │ │ │ ├── services.h │ │ │ ├── sidtab.h │ │ │ ├── symtab.h │ │ │ └── util.h │ │ │ ├── port_record.h │ │ │ ├── ports.h │ │ │ ├── roles.h │ │ │ ├── sepol.h │ │ │ ├── user_record.h │ │ │ └── users.h │ └── src │ │ ├── Makefile │ │ ├── android_m_compat.c │ │ ├── android_m_compat.h │ │ ├── assertion.c │ │ ├── av_permissions.h │ │ ├── avrule_block.c │ │ ├── avtab.c │ │ ├── boolean_internal.h │ │ ├── boolean_record.c │ │ ├── booleans.c │ │ ├── conditional.c │ │ ├── constraint.c │ │ ├── context.c │ │ ├── context.h │ │ ├── context_internal.h │ │ ├── context_record.c │ │ ├── debug.c │ │ ├── debug.h │ │ ├── dso.h │ │ ├── ebitmap.c │ │ ├── expand.c │ │ ├── genbools.c │ │ ├── genusers.c │ │ ├── handle.c │ │ ├── handle.h │ │ ├── hashtab.c │ │ ├── hierarchy.c │ │ ├── ibendport_internal.h │ │ ├── ibendport_record.c │ │ ├── ibendports.c │ │ ├── ibpkey_internal.h │ │ ├── ibpkey_record.c │ │ ├── ibpkeys.c │ │ ├── iface_internal.h │ │ ├── iface_record.c │ │ ├── interfaces.c │ │ ├── kernel_to_cil.c │ │ ├── kernel_to_common.c │ │ ├── kernel_to_common.h │ │ ├── kernel_to_conf.c │ │ ├── libsepol.map.in │ │ ├── libsepol.pc.in │ │ ├── link.c │ │ ├── mls.c │ │ ├── mls.h │ │ ├── module.c │ │ ├── module_internal.h │ │ ├── module_to_cil.c │ │ ├── node_internal.h │ │ ├── node_record.c │ │ ├── nodes.c │ │ ├── polcaps.c │ │ ├── policydb.c │ │ ├── policydb_convert.c │ │ ├── policydb_internal.h │ │ ├── policydb_public.c │ │ ├── port_internal.h │ │ ├── port_record.c │ │ ├── ports.c │ │ ├── private.h │ │ ├── roles.c │ │ ├── services.c │ │ ├── sidtab.c │ │ ├── stpcpy.c │ │ ├── stpcpy.h │ │ ├── symtab.c │ │ ├── user_internal.h │ │ ├── user_record.c │ │ ├── users.c │ │ ├── util.c │ │ └── write.c ├── makefile ├── secmds │ ├── seinfo.c │ └── sesearch.c └── sepolicy-inject │ ├── Makefile │ ├── README.txt │ └── sepolicy-inject.c └── setools-run-on-linux ├── Makefile ├── patches ├── setools-pre7.patch └── setools.patch └── setools ├── .coveragerc ├── .gitignore ├── .pylintrc ├── .travis.yml ├── COPYING ├── COPYING.GPL ├── COPYING.LGPL ├── ChangeLog ├── KNOWN-BUGS ├── MANIFEST.in ├── README.md ├── apol ├── man ├── apol.1 ├── ru │ ├── apol.1 │ ├── sediff.1 │ ├── sedta.1 │ ├── seinfo.1 │ ├── seinfoflow.1 │ └── sesearch.1 ├── sediff.1 ├── sedta.1 ├── seinfo.1 ├── seinfoflow.1 └── sesearch.1 ├── patches └── README ├── qhc ├── analyses.html ├── apol.qhcp ├── apol.qhp ├── components.html ├── dta.html ├── index.html ├── infoflow.html ├── labeling.html └── rules.html ├── sediff ├── sedta ├── seinfo ├── seinfoflow ├── sesearch ├── setools ├── __init__.py ├── boolquery.py ├── boundsquery.py ├── categoryquery.py ├── commonquery.py ├── constraintquery.py ├── defaultquery.py ├── descriptors.py ├── devicetreeconquery.py ├── diff │ ├── __init__.py │ ├── bool.py │ ├── bounds.py │ ├── commons.py │ ├── conditional.py │ ├── constraints.py │ ├── context.py │ ├── default.py │ ├── descriptors.py │ ├── difference.py │ ├── fsuse.py │ ├── genfscon.py │ ├── ibendportcon.py │ ├── ibpkeycon.py │ ├── initsid.py │ ├── mls.py │ ├── mlsrules.py │ ├── netifcon.py │ ├── nodecon.py │ ├── objclass.py │ ├── polcap.py │ ├── portcon.py │ ├── properties.py │ ├── rbacrules.py │ ├── roles.py │ ├── terules.py │ ├── typeattr.py │ ├── types.py │ └── users.py ├── dta.py ├── exception.py ├── fsusequery.py ├── genfsconquery.py ├── ibendportconquery.py ├── ibpkeyconquery.py ├── infoflow.py ├── initsidquery.py ├── iomemconquery.py ├── ioportconquery.py ├── mixins.py ├── mlsrulequery.py ├── netifconquery.py ├── nodeconquery.py ├── objclassquery.py ├── pcideviceconquery.py ├── perm_map ├── permmap.py ├── pirqconquery.py ├── polcapquery.py ├── policyrep.pyx ├── policyrep │ ├── boolcond.pxi │ ├── bounds.pxi │ ├── constraint.pxi │ ├── context.pxi │ ├── default.pxi │ ├── fscontext.pxi │ ├── initsid.pxi │ ├── mls.pxi │ ├── mlsrule.pxi │ ├── netcontext.pxi │ ├── objclass.pxi │ ├── object.pxi │ ├── polcap.pxi │ ├── rbacrule.pxi │ ├── role.pxi │ ├── rule.pxi │ ├── selinux.pxd │ ├── selinuxpolicy.pxi │ ├── sepol.pxd │ ├── terule.pxi │ ├── typeattr.pxi │ ├── user.pxi │ ├── util.pxi │ └── xencontext.pxi ├── portconquery.py ├── query.py ├── rbacrulequery.py ├── rolequery.py ├── sensitivityquery.py ├── terulequery.py ├── typeattrquery.py ├── typequery.py ├── userquery.py └── util.py ├── setoolsgui ├── __init__.py ├── apol │ ├── __init__.py │ ├── analysistab.py │ ├── apol.qch │ ├── apol.qhc │ ├── apol.ui │ ├── boolquery.py │ ├── boolquery.ui │ ├── boundsquery.py │ ├── boundsquery.ui │ ├── categoryquery.py │ ├── categoryquery.ui │ ├── choose_analysis.ui │ ├── chooseanalysis.py │ ├── commonquery.py │ ├── commonquery.ui │ ├── constraintquery.py │ ├── constraintquery.ui │ ├── defaultquery.py │ ├── defaultquery.ui │ ├── dta.py │ ├── dta.ui │ ├── exception.py │ ├── exclude_types.ui │ ├── excludetypes.py │ ├── fsusequery.py │ ├── fsusequery.ui │ ├── genfsconquery.py │ ├── genfsconquery.ui │ ├── infoflow.py │ ├── infoflow.ui │ ├── initsidquery.py │ ├── initsidquery.ui │ ├── mainwindow.py │ ├── mlsrulequery.py │ ├── mlsrulequery.ui │ ├── netifconquery.py │ ├── netifconquery.ui │ ├── nodeconquery.py │ ├── nodeconquery.ui │ ├── objclassquery.py │ ├── objclassquery.ui │ ├── permmap_editor.ui │ ├── permmapedit.py │ ├── permmapping.ui │ ├── portconquery.py │ ├── portconquery.ui │ ├── queryupdater.py │ ├── rbacrulequery.py │ ├── rbacrulequery.ui │ ├── rolequery.py │ ├── rolequery.ui │ ├── sensitivityquery.py │ ├── sensitivityquery.ui │ ├── summary.py │ ├── summary.ui │ ├── terulequery.py │ ├── terulequery.ui │ ├── typeattrquery.py │ ├── typeattrquery.ui │ ├── typequery.py │ ├── typequery.ui │ ├── userquery.py │ ├── userquery.ui │ └── workspace.py ├── boolmodel.py ├── boundsmodel.py ├── commonmodel.py ├── constraintmodel.py ├── defaultmodel.py ├── detail_popup.ui ├── details.py ├── fsusemodel.py ├── genfsconmodel.py ├── getdetailslist.py ├── initsidmodel.py ├── listview.py ├── logtosignal.py ├── mlsmodel.py ├── mlsrulemodel.py ├── models.py ├── netifconmodel.py ├── nodeconmodel.py ├── objclassmodel.py ├── portconmodel.py ├── rbacrulemodel.py ├── rolemodel.py ├── tableview.py ├── terulemodel.py ├── treeview.py ├── typeattrmodel.py ├── typemodel.py ├── usermodel.py └── widget.py ├── setup.py ├── tests ├── __init__.py ├── boolquery.conf ├── boolquery.py ├── boundsquery.conf ├── boundsquery.py ├── categoryquery.conf ├── categoryquery.py ├── commonquery.conf ├── commonquery.py ├── conditionalinfoflow.conf ├── conditionalinfoflow.py ├── constraintquery.conf ├── constraintquery.py ├── defaultquery.conf ├── defaultquery.py ├── devicetreeconquery.conf ├── devicetreeconquery.py ├── diff.py ├── diff_left.conf ├── diff_left_standard.conf ├── diff_right.conf ├── diff_right_rmisid.conf ├── dta.conf ├── dta.py ├── fsusequery.conf ├── fsusequery.py ├── genfsconquery.conf ├── genfsconquery.py ├── ibendportconquery.conf ├── ibendportconquery.py ├── ibpkeyconquery.conf ├── ibpkeyconquery.py ├── infoflow.conf ├── infoflow.py ├── initsidquery.conf ├── initsidquery.py ├── invalid_perm_maps │ ├── bad-class-keyword │ ├── bad-perm-weight-high │ ├── bad-perm-weight-low │ ├── bad-permcount │ ├── extra-class │ ├── extra-perms │ ├── invalid-flowdir │ ├── invalid-perm-weight │ ├── negative-classcount │ ├── negative-permcount │ └── non-number-classcount ├── iomemconquery.conf ├── iomemconquery.py ├── ioportconquery.conf ├── ioportconquery.py ├── mixins.py ├── mlsrulequery.conf ├── mlsrulequery.py ├── netifconquery.conf ├── netifconquery.py ├── nodeconquery.conf ├── nodeconquery.py ├── objclassquery.conf ├── objclassquery.py ├── pcideviceconquery.conf ├── pcideviceconquery.py ├── perm_map ├── permmap.conf ├── permmap.py ├── pirqconquery.conf ├── pirqconquery.py ├── polcapquery.conf ├── polcapquery.py ├── policyrep │ ├── __init__.py │ ├── default.py │ ├── initsid.conf │ ├── initsid.py │ ├── invalid_policies │ │ ├── nodecon-invalid-range.conf │ │ └── user-level-not-in-range.conf │ ├── mls.conf │ ├── mls.py │ ├── mlsrule.py │ ├── objclass.conf │ ├── objclass.py │ ├── polcap.py │ ├── rbacrule.py │ ├── role.conf │ ├── role.py │ ├── selinuxpolicy.conf │ ├── selinuxpolicy.py │ ├── symbol.py │ ├── terule.py │ ├── typeattr.conf │ ├── typeattr.py │ ├── user.conf │ ├── user.py │ └── util.py ├── portconquery.conf ├── portconquery.py ├── rbacrulequery.conf ├── rbacrulequery.py ├── rolequery.conf ├── rolequery.py ├── sensitivityquery.conf ├── sensitivityquery.py ├── terulequery.conf ├── terulequery.py ├── terulequery2.conf ├── typeattrquery.conf ├── typeattrquery.py ├── typequery.conf ├── typequery.py ├── userquery.conf └── userquery.py └── tox.ini /README.md: -------------------------------------------------------------------------------- 1 | collect some vul 2 | -------------------------------------------------------------------------------- /android/CVE-2016-0805/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0805/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-0805/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0805/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-0844/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0844/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-0844/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0844/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-0844/ipa_qmi_service_v01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0844/ipa_qmi_service_v01.h -------------------------------------------------------------------------------- /android/CVE-2016-0844/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0844/makefile -------------------------------------------------------------------------------- /android/CVE-2016-0844/msm_ipc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0844/msm_ipc.h -------------------------------------------------------------------------------- /android/CVE-2016-0844/msm_rmnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0844/msm_rmnet.h -------------------------------------------------------------------------------- /android/CVE-2016-0844/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0844/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-0844/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-0844/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-10285/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10285/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-10285/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10285/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-10285/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10285/makefile -------------------------------------------------------------------------------- /android/CVE-2016-10285/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10285/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-10285/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10285/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-10288/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10288/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-10288/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10288/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-10288/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10288/makefile -------------------------------------------------------------------------------- /android/CVE-2016-10288/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10288/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-10288/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10288/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-10290/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10290/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-10290/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10290/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-10290/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10290/makefile -------------------------------------------------------------------------------- /android/CVE-2016-10290/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10290/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-10290/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10290/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-10294/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10294/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-10294/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10294/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-10294/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10294/makefile -------------------------------------------------------------------------------- /android/CVE-2016-10294/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10294/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-10294/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10294/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-10295/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10295/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-10295/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10295/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-10295/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10295/makefile -------------------------------------------------------------------------------- /android/CVE-2016-10295/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10295/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-10295/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10295/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-10296/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10296/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-10296/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10296/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-10296/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10296/makefile -------------------------------------------------------------------------------- /android/CVE-2016-10296/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10296/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-10296/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-10296/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-3865/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3865/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-3865/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3865/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-3865/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3865/makefile -------------------------------------------------------------------------------- /android/CVE-2016-3865/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3865/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-3865/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3865/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-3867/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3867/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-3867/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3867/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-3867/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3867/makefile -------------------------------------------------------------------------------- /android/CVE-2016-3867/msm_ipa.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3867/msm_ipa.h -------------------------------------------------------------------------------- /android/CVE-2016-3867/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3867/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-3867/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3867/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-3869/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3869/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-3869/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3869/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-3869/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3869/makefile -------------------------------------------------------------------------------- /android/CVE-2016-3869/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3869/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-3869/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3869/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-3906/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3906/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-3906/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3906/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-3906/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3906/makefile -------------------------------------------------------------------------------- /android/CVE-2016-3906/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3906/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-3906/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-3906/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-6725/poc.c: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /android/CVE-2016-6725/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6725/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-6738/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6738/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-6738/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6738/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-6738/fips_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6738/fips_status.h -------------------------------------------------------------------------------- /android/CVE-2016-6738/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6738/makefile -------------------------------------------------------------------------------- /android/CVE-2016-6738/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6738/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-6738/qcedev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6738/qcedev.h -------------------------------------------------------------------------------- /android/CVE-2016-6738/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6738/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-6740/poc.c: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /android/CVE-2016-6740/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6740/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-6741/poc.c: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /android/CVE-2016-6741/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6741/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-6742/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6742/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-6742/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6742/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-6742/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6742/makefile -------------------------------------------------------------------------------- /android/CVE-2016-6742/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6742/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-6742/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6742/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-6744/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6744/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-6744/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6744/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-6744/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6744/makefile -------------------------------------------------------------------------------- /android/CVE-2016-6744/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6744/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-6744/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6744/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-6745/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6745/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-6745/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6745/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-6745/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6745/makefile -------------------------------------------------------------------------------- /android/CVE-2016-6745/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6745/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-6745/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-6745/readme.md -------------------------------------------------------------------------------- /android/CVE-2016-8464/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-8464/Android.mk -------------------------------------------------------------------------------- /android/CVE-2016-8464/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-8464/Application.mk -------------------------------------------------------------------------------- /android/CVE-2016-8464/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-8464/makefile -------------------------------------------------------------------------------- /android/CVE-2016-8464/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-8464/poc.c -------------------------------------------------------------------------------- /android/CVE-2016-8464/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2016-8464/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0329/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0329/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-0329/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0329/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0332/poc.c: -------------------------------------------------------------------------------- 1 | None 2 | -------------------------------------------------------------------------------- /android/CVE-2017-0332/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0332/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0432/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0432/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-0432/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0432/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-0432/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0432/makefile -------------------------------------------------------------------------------- /android/CVE-2017-0432/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0432/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-0432/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0432/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0434/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0434/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-0434/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0434/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-0434/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0434/makefile -------------------------------------------------------------------------------- /android/CVE-2017-0434/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0434/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-0434/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0434/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0446/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0446/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-0446/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0446/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-0446/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0446/makefile -------------------------------------------------------------------------------- /android/CVE-2017-0446/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0446/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-0446/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0446/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0447/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0447/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-0447/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0447/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-0447/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0447/makefile -------------------------------------------------------------------------------- /android/CVE-2017-0447/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0447/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-0447/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0447/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0524/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0524/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-0524/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0524/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-0524/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0524/makefile -------------------------------------------------------------------------------- /android/CVE-2017-0524/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0524/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-0524/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0524/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0536/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0536/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-0536/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0536/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-0536/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0536/makefile -------------------------------------------------------------------------------- /android/CVE-2017-0536/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0536/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-0536/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0536/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0624/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0624/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-0624/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0624/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-0624/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0624/makefile -------------------------------------------------------------------------------- /android/CVE-2017-0624/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0624/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-0624/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0624/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-0744/nvavp_aacdec_ucode.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0744/nvavp_aacdec_ucode.bin -------------------------------------------------------------------------------- /android/CVE-2017-0744/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0744/readme -------------------------------------------------------------------------------- /android/CVE-2017-0744/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-0744/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-10997/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-10997/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-10997/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-10997/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-10997/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-10997/makefile -------------------------------------------------------------------------------- /android/CVE-2017-10997/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-10997/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-10997/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-10997/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-6426/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-6426/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-6426/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-6426/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-6426/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-6426/makefile -------------------------------------------------------------------------------- /android/CVE-2017-6426/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-6426/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-6426/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-6426/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-8243/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8243/readme -------------------------------------------------------------------------------- /android/CVE-2017-8243/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8243/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-8244/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8244/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-8244/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8244/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-8244/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8244/makefile -------------------------------------------------------------------------------- /android/CVE-2017-8244/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8244/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-8244/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8244/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-8266/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8266/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-8266/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8266/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-8266/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8266/makefile -------------------------------------------------------------------------------- /android/CVE-2017-8266/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8266/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-8266/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8266/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-8270/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8270/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-8270/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8270/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-8270/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8270/makefile -------------------------------------------------------------------------------- /android/CVE-2017-8270/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8270/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-8270/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-8270/readme.md -------------------------------------------------------------------------------- /android/CVE-2017-9691/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-9691/Android.mk -------------------------------------------------------------------------------- /android/CVE-2017-9691/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-9691/Application.mk -------------------------------------------------------------------------------- /android/CVE-2017-9691/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-9691/makefile -------------------------------------------------------------------------------- /android/CVE-2017-9691/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-9691/poc.c -------------------------------------------------------------------------------- /android/CVE-2017-9691/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2017-9691/readme.md -------------------------------------------------------------------------------- /android/CVE-2018-18281-Android/.gdb_history: -------------------------------------------------------------------------------- 1 | r 2 | :q 3 | -------------------------------------------------------------------------------- /android/CVE-2018-18281-Android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281-Android/Android.mk -------------------------------------------------------------------------------- /android/CVE-2018-18281-Android/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281-Android/Application.mk -------------------------------------------------------------------------------- /android/CVE-2018-18281-Android/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281-Android/makefile -------------------------------------------------------------------------------- /android/CVE-2018-18281-Android/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281-Android/poc.c -------------------------------------------------------------------------------- /android/CVE-2018-18281-Android/poc.old.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281-Android/poc.old.c -------------------------------------------------------------------------------- /android/CVE-2018-18281-Android/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281-Android/readme.md -------------------------------------------------------------------------------- /android/CVE-2018-18281-Android/runpoc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281-Android/runpoc.c -------------------------------------------------------------------------------- /android/CVE-2018-18281/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281/poc.c -------------------------------------------------------------------------------- /android/CVE-2018-18281/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2018-18281/readme.md -------------------------------------------------------------------------------- /android/CVE-2023-20963/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/README.md -------------------------------------------------------------------------------- /android/CVE-2023-20963/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/CVE-2023-20963/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/app/build.gradle -------------------------------------------------------------------------------- /android/CVE-2023-20963/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/CVE-2023-20963/assets/CVE-2023-20963.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/assets/CVE-2023-20963.gif -------------------------------------------------------------------------------- /android/CVE-2023-20963/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/build.gradle -------------------------------------------------------------------------------- /android/CVE-2023-20963/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/gradle.properties -------------------------------------------------------------------------------- /android/CVE-2023-20963/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/gradlew -------------------------------------------------------------------------------- /android/CVE-2023-20963/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/gradlew.bat -------------------------------------------------------------------------------- /android/CVE-2023-20963/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-20963/settings.gradle -------------------------------------------------------------------------------- /android/CVE-2023-21036/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-21036/README.md -------------------------------------------------------------------------------- /android/CVE-2023-21036/acropalypse_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-21036/acropalypse_detection.py -------------------------------------------------------------------------------- /android/CVE-2023-21036/acropalypse_detection.yar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-21036/acropalypse_detection.yar -------------------------------------------------------------------------------- /android/CVE-2023-21036/acropalypse_sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-21036/acropalypse_sanitizer.py -------------------------------------------------------------------------------- /android/CVE-2023-21036/test_imgs/windows11_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-21036/test_imgs/windows11_1.png -------------------------------------------------------------------------------- /android/CVE-2023-21036/test_imgs/windows11_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-21036/test_imgs/windows11_2.png -------------------------------------------------------------------------------- /android/CVE-2023-21036/test_imgs/windows11_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-21036/test_imgs/windows11_3.jpg -------------------------------------------------------------------------------- /android/CVE-2023-27703/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-27703/README.md -------------------------------------------------------------------------------- /android/CVE-2023-27703/pikpak_repetition.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-27703/pikpak_repetition.jpg -------------------------------------------------------------------------------- /android/CVE-2023-33768/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-33768/README.md -------------------------------------------------------------------------------- /android/CVE-2023-33768/brickDevice.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-33768/brickDevice.py -------------------------------------------------------------------------------- /android/CVE-2023-33768/com.belkin.wemoandroid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-33768/com.belkin.wemoandroid.js -------------------------------------------------------------------------------- /android/CVE-2023-33768/crafted_firmware_tz.bin.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-33768/crafted_firmware_tz.bin.enc -------------------------------------------------------------------------------- /android/CVE-2023-35671/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/README.md -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/App_pinning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/App_pinning.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/Brave_pinning_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/Brave_pinning_1.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/Brave_pinning_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/Brave_pinning_2.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/Brave_pinning_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/Brave_pinning_3.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/Brave_pinning_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/Brave_pinning_4.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/Brave_unpinned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/Brave_unpinned.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/Device_build.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/Device_build.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/Device_model.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/Device_model.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/FlipperZero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/FlipperZero.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/FlipperZero_output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/FlipperZero_output.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/GoogleWallet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/GoogleWallet.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/LockScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/LockScreen.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/NFC_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/NFC_settings.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/hqdefault.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/hqdefault.png -------------------------------------------------------------------------------- /android/CVE-2023-35671/img/poc.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-35671/img/poc.gif -------------------------------------------------------------------------------- /android/CVE-2023-45777/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/README.md -------------------------------------------------------------------------------- /android/CVE-2023-45777/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/CVE-2023-45777/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/app/build.gradle -------------------------------------------------------------------------------- /android/CVE-2023-45777/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/CVE-2023-45777/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/build.gradle -------------------------------------------------------------------------------- /android/CVE-2023-45777/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/gradle.properties -------------------------------------------------------------------------------- /android/CVE-2023-45777/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/gradlew -------------------------------------------------------------------------------- /android/CVE-2023-45777/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/gradlew.bat -------------------------------------------------------------------------------- /android/CVE-2023-45777/make-aosp-buggy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/make-aosp-buggy.sh -------------------------------------------------------------------------------- /android/CVE-2023-45777/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-45777/settings.gradle -------------------------------------------------------------------------------- /android/CVE-2023-50226/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-50226/README.md -------------------------------------------------------------------------------- /android/CVE-2023-50226/poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-50226/poc.png -------------------------------------------------------------------------------- /android/CVE-2023-50226/poc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-50226/poc.sh -------------------------------------------------------------------------------- /android/CVE-2023-6241/About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/About.txt -------------------------------------------------------------------------------- /android/CVE-2023-6241/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/README.md -------------------------------------------------------------------------------- /android/CVE-2023-6241/firmware_offsets.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/firmware_offsets.h -------------------------------------------------------------------------------- /android/CVE-2023-6241/log_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/log_utils.h -------------------------------------------------------------------------------- /android/CVE-2023-6241/mali_base_common_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mali_base_common_kernel.h -------------------------------------------------------------------------------- /android/CVE-2023-6241/mali_base_csf_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mali_base_csf_kernel.h -------------------------------------------------------------------------------- /android/CVE-2023-6241/mali_base_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mali_base_kernel.h -------------------------------------------------------------------------------- /android/CVE-2023-6241/mali_jit_csf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mali_jit_csf.c -------------------------------------------------------------------------------- /android/CVE-2023-6241/mali_kbase_csf_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mali_kbase_csf_ioctl.h -------------------------------------------------------------------------------- /android/CVE-2023-6241/mali_kbase_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mali_kbase_ioctl.h -------------------------------------------------------------------------------- /android/CVE-2023-6241/mem_read_write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mem_read_write.c -------------------------------------------------------------------------------- /android/CVE-2023-6241/mem_read_write.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mem_read_write.h -------------------------------------------------------------------------------- /android/CVE-2023-6241/mempool_utils.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mempool_utils.c -------------------------------------------------------------------------------- /android/CVE-2023-6241/mempool_utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2023-6241/mempool_utils.h -------------------------------------------------------------------------------- /android/CVE-2024-0015/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/.gitignore -------------------------------------------------------------------------------- /android/CVE-2024-0015/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /android/CVE-2024-0015/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/.idea/compiler.xml -------------------------------------------------------------------------------- /android/CVE-2024-0015/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/.idea/gradle.xml -------------------------------------------------------------------------------- /android/CVE-2024-0015/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/.idea/misc.xml -------------------------------------------------------------------------------- /android/CVE-2024-0015/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/.idea/vcs.xml -------------------------------------------------------------------------------- /android/CVE-2024-0015/README.md: -------------------------------------------------------------------------------- 1 | CVE-2024-0015 demo Poc & DubheCTF EXP 2 | -------------------------------------------------------------------------------- /android/CVE-2024-0015/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /android/CVE-2024-0015/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/app/build.gradle -------------------------------------------------------------------------------- /android/CVE-2024-0015/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/app/proguard-rules.pro -------------------------------------------------------------------------------- /android/CVE-2024-0015/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/build.gradle -------------------------------------------------------------------------------- /android/CVE-2024-0015/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/gradle.properties -------------------------------------------------------------------------------- /android/CVE-2024-0015/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/gradlew -------------------------------------------------------------------------------- /android/CVE-2024-0015/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/gradlew.bat -------------------------------------------------------------------------------- /android/CVE-2024-0015/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/CVE-2024-0015/settings.gradle -------------------------------------------------------------------------------- /android/EXP-2015-5165/build-exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-5165/build-exploit.sh -------------------------------------------------------------------------------- /android/EXP-2015-5165/create-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-5165/create-image.sh -------------------------------------------------------------------------------- /android/EXP-2015-5165/exp-2015-5165.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-5165/exp-2015-5165.c -------------------------------------------------------------------------------- /android/EXP-2015-5165/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-5165/makefile -------------------------------------------------------------------------------- /android/EXP-2015-5165/poc-2015-5165.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-5165/poc-2015-5165.c -------------------------------------------------------------------------------- /android/EXP-2015-5165/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-5165/qemu.h -------------------------------------------------------------------------------- /android/EXP-2015-5165/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-5165/readme.md -------------------------------------------------------------------------------- /android/EXP-2015-7504/build-exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-7504/build-exploit.sh -------------------------------------------------------------------------------- /android/EXP-2015-7504/exp-2015-5165-7504.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-7504/exp-2015-5165-7504.c -------------------------------------------------------------------------------- /android/EXP-2015-7504/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-7504/makefile -------------------------------------------------------------------------------- /android/EXP-2015-7504/poc-2015-7504-crash.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-7504/poc-2015-7504-crash.c -------------------------------------------------------------------------------- /android/EXP-2015-7504/poc-2015-7504-hijack.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-7504/poc-2015-7504-hijack.c -------------------------------------------------------------------------------- /android/EXP-2015-7504/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-7504/qemu.h -------------------------------------------------------------------------------- /android/EXP-2015-7504/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-2015-7504/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-0844/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-0844/jni/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-0844/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-0844/jni/Application.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-0844/jni/ipa_qmi_service_v01.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-0844/jni/ipa_qmi_service_v01.h -------------------------------------------------------------------------------- /android/EXP-CVE-2016-0844/jni/msm_rmnet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-0844/jni/msm_rmnet.h -------------------------------------------------------------------------------- /android/EXP-CVE-2016-0844/jni/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-0844/jni/pwn.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2384/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2384/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2384/device.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2384/device.txt -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2384/kasan-raw.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2384/kasan-raw.txt -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2384/kasan.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2384/kasan.txt -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2384/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2384/poc.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2384/poc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2384/poc.py -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2411/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2411/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2411/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2411/Application.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2411/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2411/pwn.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2411/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2411/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2434/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2434/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2434/Application.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(CLEAR_VARS) 4 | APP_ABI:= arm64-v8a 5 | 6 | -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2434/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2434/pwn.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2434/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2434/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2434/syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2434/syscall.S -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2435/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2435/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2435/Application.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(CLEAR_VARS) 4 | APP_ABI:= arm64-v8a 5 | 6 | -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2435/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2435/pwn.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2435/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2435/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-2435/syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-2435/syscall.S -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3857/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3857/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3857/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3857/pwn.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3857/pwn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3857/pwn.h -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3857/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3857/readme -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3857/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3857/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3857/syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3857/syscall.S -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3935/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3935/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3935/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3935/Application.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3935/fips_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3935/fips_status.h -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3935/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3935/makefile -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3935/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3935/pwn.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3935/qcedev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3935/qcedev.h -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3935/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3935/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-3935/syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-3935/syscall.S -------------------------------------------------------------------------------- /android/EXP-CVE-2016-6738/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-6738/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2016-6738/Application.mk: -------------------------------------------------------------------------------- 1 | LOCAL_PATH := $(call my-dir) 2 | 3 | include $(CLEAR_VARS) 4 | APP_ABI:= arm64-v8a 5 | 6 | -------------------------------------------------------------------------------- /android/EXP-CVE-2016-6738/fips_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-6738/fips_status.h -------------------------------------------------------------------------------- /android/EXP-CVE-2016-6738/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-6738/makefile -------------------------------------------------------------------------------- /android/EXP-CVE-2016-6738/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-6738/pwn.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-6738/qcedev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-6738/qcedev.h -------------------------------------------------------------------------------- /android/EXP-CVE-2016-6738/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-6738/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-6738/syscall.S: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-6738/syscall.S -------------------------------------------------------------------------------- /android/EXP-CVE-2016-9793/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-9793/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2016-9793/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-9793/poc.c -------------------------------------------------------------------------------- /android/EXP-CVE-2016-9793/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2016-9793/trigger.c -------------------------------------------------------------------------------- /android/EXP-CVE-2017-1000112/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2017-1000112/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2017-1000112/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2017-1000112/poc.c -------------------------------------------------------------------------------- /android/EXP-CVE-2017-6074/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2017-6074/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2017-6074/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2017-6074/poc.c -------------------------------------------------------------------------------- /android/EXP-CVE-2017-6074/trigger.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2017-6074/trigger.c -------------------------------------------------------------------------------- /android/EXP-CVE-2017-7308/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2017-7308/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2017-7308/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2017-7308/poc.c -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/dmesg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/dmesg -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/p.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/p.jpg -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/push.sh -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vma_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vma_test.c -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vma_test.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vma_test.zip -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache-debugging.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache-debugging.patch -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache.tar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache.tar -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/compile.sh -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/puppet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/puppet -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/puppet.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/puppet.c -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/puppeteer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/puppeteer -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/puppeteer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/puppeteer.c -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/suidhelper: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/suidhelper -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/suidhelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/suidhelper.c -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/vmacache_helper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/vmacache_helper.c -------------------------------------------------------------------------------- /android/EXP-CVE-2018-17182/vmacache/vmacache_helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-17182/vmacache/vmacache_helper.h -------------------------------------------------------------------------------- /android/EXP-CVE-2018-18281/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-18281/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2018-18281/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-18281/Application.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2018-18281/arm_shellcode.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-18281/arm_shellcode.s -------------------------------------------------------------------------------- /android/EXP-CVE-2018-18281/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-18281/compile.sh -------------------------------------------------------------------------------- /android/EXP-CVE-2018-18281/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-18281/exp.c -------------------------------------------------------------------------------- /android/EXP-CVE-2018-18281/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-18281/makefile -------------------------------------------------------------------------------- /android/EXP-CVE-2018-18281/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-18281/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2018-18281/watchdog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2018-18281/watchdog.c -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272-aarch64/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272-aarch64/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272-aarch64/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272-aarch64/exp.c -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272-aarch64/fakehelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272-aarch64/fakehelper.c -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272-aarch64/fakepkexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272-aarch64/fakepkexec.c -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272-aarch64/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272-aarch64/make.sh -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272/exp.c -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272/fakehelper.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272/fakehelper.c -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272/fakepkexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272/fakepkexec.c -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272/make.sh -------------------------------------------------------------------------------- /android/EXP-CVE-2019-13272/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-13272/readme.md -------------------------------------------------------------------------------- /android/EXP-CVE-2019-2215/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-2215/Makefile -------------------------------------------------------------------------------- /android/EXP-CVE-2019-2215/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-2215/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2019-2215/cve-2019-2215.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2019-2215/cve-2019-2215.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/Application.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/Makefile -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/binder.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/binder_lookup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/binder_lookup.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/endpoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/endpoint.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/exploit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/exploit.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/handle.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/handle.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/helpers.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/log.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/node.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/pending_node.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/pending_node.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/realloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/realloc.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/include/uapi_binder.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/include/uapi_binder.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/binder.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/binder.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/binder_lookup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/binder_lookup.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/endpoint.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/endpoint.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/exploit.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/helpers.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/log.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/log.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/node.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/pending_node.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/pending_node.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/lpe/src/realloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/lpe/src/realloc.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/sandbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/sandbox/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/sandbox/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/sandbox/index.html -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/sandbox/main.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/sandbox/main.diff -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/sandbox/serve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/sandbox/serve.py -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0041/sandbox/v8.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0041/sandbox/v8.diff -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/jni/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/jni/Android.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/jni/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/jni/Application.mk -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/jni/kernel_rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/jni/kernel_rw.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/jni/mtk/cmdq_def.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/jni/mtk/cmdq_def.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/jni/mtk/cmdq_event_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/jni/mtk/cmdq_event_common.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/jni/mtk/cmdq_v3_driver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/jni/mtk/cmdq_v3_driver.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/jni/mtk/mtk-cmdq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/jni/mtk/mtk-cmdq.h -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/jni/syscall_hook.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/jni/syscall_hook.c -------------------------------------------------------------------------------- /android/EXP-CVE-2020-0069/poc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2020-0069/poc.sh -------------------------------------------------------------------------------- /android/EXP-CVE-2023-26083/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2023-26083/README.md -------------------------------------------------------------------------------- /android/EXP-CVE-2023-26083/mali.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2023-26083/mali.h -------------------------------------------------------------------------------- /android/EXP-CVE-2023-26083/mali_base_common_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2023-26083/mali_base_common_kernel.h -------------------------------------------------------------------------------- /android/EXP-CVE-2023-26083/poc.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/EXP-CVE-2023-26083/poc.cpp -------------------------------------------------------------------------------- /android/cve-2016-3866/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3866/Android.mk -------------------------------------------------------------------------------- /android/cve-2016-3866/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3866/Application.mk -------------------------------------------------------------------------------- /android/cve-2016-3866/compress_params.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3866/compress_params.h -------------------------------------------------------------------------------- /android/cve-2016-3866/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3866/makefile -------------------------------------------------------------------------------- /android/cve-2016-3866/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3866/poc.c -------------------------------------------------------------------------------- /android/cve-2016-3866/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3866/readme.md -------------------------------------------------------------------------------- /android/cve-2016-3901/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3901/Android.mk -------------------------------------------------------------------------------- /android/cve-2016-3901/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3901/Application.mk -------------------------------------------------------------------------------- /android/cve-2016-3901/fips_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3901/fips_status.h -------------------------------------------------------------------------------- /android/cve-2016-3901/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3901/makefile -------------------------------------------------------------------------------- /android/cve-2016-3901/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3901/poc.c -------------------------------------------------------------------------------- /android/cve-2016-3901/qcedev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3901/qcedev.h -------------------------------------------------------------------------------- /android/cve-2016-3901/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3901/readme.md -------------------------------------------------------------------------------- /android/cve-2016-3935/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3935/Android.mk -------------------------------------------------------------------------------- /android/cve-2016-3935/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3935/Application.mk -------------------------------------------------------------------------------- /android/cve-2016-3935/fips_status.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3935/fips_status.h -------------------------------------------------------------------------------- /android/cve-2016-3935/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3935/makefile -------------------------------------------------------------------------------- /android/cve-2016-3935/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3935/poc.c -------------------------------------------------------------------------------- /android/cve-2016-3935/qcedev.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3935/qcedev.h -------------------------------------------------------------------------------- /android/cve-2016-3935/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3935/readme.md -------------------------------------------------------------------------------- /android/cve-2016-3940/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3940/Android.mk -------------------------------------------------------------------------------- /android/cve-2016-3940/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3940/Application.mk -------------------------------------------------------------------------------- /android/cve-2016-3940/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3940/makefile -------------------------------------------------------------------------------- /android/cve-2016-3940/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3940/poc.c -------------------------------------------------------------------------------- /android/cve-2016-3940/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-3940/readme.md -------------------------------------------------------------------------------- /android/cve-2016-5195/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/Android.mk -------------------------------------------------------------------------------- /android/cve-2016-5195/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/Application.mk -------------------------------------------------------------------------------- /android/cve-2016-5195/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/Makefile -------------------------------------------------------------------------------- /android/cve-2016-5195/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/README.md -------------------------------------------------------------------------------- /android/cve-2016-5195/dirtycow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/dirtycow.c -------------------------------------------------------------------------------- /android/cve-2016-5195/dirtycow_onecpu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/dirtycow_onecpu.c -------------------------------------------------------------------------------- /android/cve-2016-5195/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/makefile -------------------------------------------------------------------------------- /android/cve-2016-5195/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/readme.md -------------------------------------------------------------------------------- /android/cve-2016-5195/run-as.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-5195/run-as.c -------------------------------------------------------------------------------- /android/cve-2016-6672/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6672/Android.mk -------------------------------------------------------------------------------- /android/cve-2016-6672/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6672/Application.mk -------------------------------------------------------------------------------- /android/cve-2016-6672/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6672/makefile -------------------------------------------------------------------------------- /android/cve-2016-6672/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6672/poc.c -------------------------------------------------------------------------------- /android/cve-2016-6672/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6672/readme.md -------------------------------------------------------------------------------- /android/cve-2016-6690/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6690/Android.mk -------------------------------------------------------------------------------- /android/cve-2016-6690/Application.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6690/Application.mk -------------------------------------------------------------------------------- /android/cve-2016-6690/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6690/makefile -------------------------------------------------------------------------------- /android/cve-2016-6690/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6690/poc.c -------------------------------------------------------------------------------- /android/cve-2016-6690/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/android/cve-2016-6690/readme.md -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/Android.mk -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/CMakeLists.txt -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/Makefile -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/README.md -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/host/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/host/Makefile -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/host/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/host/exploit.c -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/ta/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/ta/Android.mk -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/ta/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/ta/Makefile -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/ta/include/verify.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/ta/include/verify.h -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/ta/sub.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/ta/sub.mk -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/ta/user_ta_header_defines.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/ta/user_ta_header_defines.h -------------------------------------------------------------------------------- /linux/CVE-2019-1010298/ta/verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2019-1010298/ta/verify.c -------------------------------------------------------------------------------- /linux/CVE-2021-22555/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-22555/exp.c -------------------------------------------------------------------------------- /linux/CVE-2021-33909/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-33909/exploit.c -------------------------------------------------------------------------------- /linux/CVE-2021-33909/exploit.hello.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-33909/exploit.hello.c -------------------------------------------------------------------------------- /linux/CVE-2021-33909/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-33909/readme.md -------------------------------------------------------------------------------- /linux/CVE-2021-34866/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-34866/Makefile -------------------------------------------------------------------------------- /linux/CVE-2021-34866/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-34866/README.md -------------------------------------------------------------------------------- /linux/CVE-2021-34866/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-34866/bpf.h -------------------------------------------------------------------------------- /linux/CVE-2021-34866/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-34866/exploit.c -------------------------------------------------------------------------------- /linux/CVE-2021-3490/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/.gitignore -------------------------------------------------------------------------------- /linux/CVE-2021-3490/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/Makefile -------------------------------------------------------------------------------- /linux/CVE-2021-3490/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/README.md -------------------------------------------------------------------------------- /linux/CVE-2021-3490/bin/.placeholder: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /linux/CVE-2021-3490/bpf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/bpf.c -------------------------------------------------------------------------------- /linux/CVE-2021-3490/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/exploit.c -------------------------------------------------------------------------------- /linux/CVE-2021-3490/include/bpf_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/include/bpf_defs.h -------------------------------------------------------------------------------- /linux/CVE-2021-3490/include/exploit_configs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/include/exploit_configs.h -------------------------------------------------------------------------------- /linux/CVE-2021-3490/include/kernel_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/include/kernel_defs.h -------------------------------------------------------------------------------- /linux/CVE-2021-3490/include/kmem_search.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/include/kmem_search.h -------------------------------------------------------------------------------- /linux/CVE-2021-3490/kmem_search.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3490/kmem_search.c -------------------------------------------------------------------------------- /linux/CVE-2021-3573/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3573/Makefile -------------------------------------------------------------------------------- /linux/CVE-2021-3573/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3573/README.md -------------------------------------------------------------------------------- /linux/CVE-2021-3573/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3573/exploit.c -------------------------------------------------------------------------------- /linux/CVE-2021-3573/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3573/util.c -------------------------------------------------------------------------------- /linux/CVE-2021-3573/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-3573/util.h -------------------------------------------------------------------------------- /linux/CVE-2021-4034/CVE-2021-4034-wp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-4034/CVE-2021-4034-wp.md -------------------------------------------------------------------------------- /linux/CVE-2021-4034/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-4034/Readme.md -------------------------------------------------------------------------------- /linux/CVE-2021-4034/blasty-vs-pkexec.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-4034/blasty-vs-pkexec.c -------------------------------------------------------------------------------- /linux/CVE-2021-4034/images/2022-01-26-16-52-51.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-4034/images/2022-01-26-16-52-51.png -------------------------------------------------------------------------------- /linux/CVE-2021-4034/images/2022-01-26-17-28-25.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-4034/images/2022-01-26-17-28-25.png -------------------------------------------------------------------------------- /linux/CVE-2021-4034/images/2022-01-27-14-18-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-4034/images/2022-01-27-14-18-17.png -------------------------------------------------------------------------------- /linux/CVE-2021-4034/poc-arthepsy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-4034/poc-arthepsy.c -------------------------------------------------------------------------------- /linux/CVE-2021-4034/poc-clubby789.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-4034/poc-clubby789.c -------------------------------------------------------------------------------- /linux/CVE-2021-42008/6pack_exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-42008/6pack_exploit.c -------------------------------------------------------------------------------- /linux/CVE-2021-42008/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-42008/Makefile -------------------------------------------------------------------------------- /linux/CVE-2021-42008/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-42008/README.md -------------------------------------------------------------------------------- /linux/CVE-2021-42008/debug/gdb.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-42008/debug/gdb.cmd -------------------------------------------------------------------------------- /linux/CVE-2021-42008/debug/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-42008/debug/run.sh -------------------------------------------------------------------------------- /linux/CVE-2021-42008/exploit.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2021-42008/exploit.gif -------------------------------------------------------------------------------- /linux/CVE-2022-0185/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-0185/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/README.md -------------------------------------------------------------------------------- /linux/CVE-2022-0185/exploit_fuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/exploit_fuse.c -------------------------------------------------------------------------------- /linux/CVE-2022-0185/exploit_kctf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/exploit_kctf.c -------------------------------------------------------------------------------- /linux/CVE-2022-0185/fakefuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/fakefuse.c -------------------------------------------------------------------------------- /linux/CVE-2022-0185/fakefuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/fakefuse.h -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse/cuse_lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse/cuse_lowlevel.h -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse/fuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse/fuse.h -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse/fuse_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse/fuse_common.h -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse/fuse_kernel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse/fuse_kernel.h -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse/fuse_log.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse/fuse_log.h -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse/fuse_lowlevel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse/fuse_lowlevel.h -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse/fuse_opt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse/fuse_opt.h -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse/meson.build -------------------------------------------------------------------------------- /linux/CVE-2022-0185/libfuse3.a: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/libfuse3.a -------------------------------------------------------------------------------- /linux/CVE-2022-0185/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/util.c -------------------------------------------------------------------------------- /linux/CVE-2022-0185/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-0185/util.h -------------------------------------------------------------------------------- /linux/CVE-2022-1015/.gitignore: -------------------------------------------------------------------------------- 1 | *.o 2 | build/ 3 | bin/ 4 | pwn 5 | -------------------------------------------------------------------------------- /linux/CVE-2022-1015/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-1015/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-1015/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-1015/README.md -------------------------------------------------------------------------------- /linux/CVE-2022-1015/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-1015/helpers.c -------------------------------------------------------------------------------- /linux/CVE-2022-1015/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-1015/helpers.h -------------------------------------------------------------------------------- /linux/CVE-2022-1015/pwn.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-1015/pwn.c -------------------------------------------------------------------------------- /linux/CVE-2022-23222/CVE-2022-23222漏洞分析.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/CVE-2022-23222漏洞分析.md -------------------------------------------------------------------------------- /linux/CVE-2022-23222/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-23222/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/README.md -------------------------------------------------------------------------------- /linux/CVE-2022-23222/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/exploit.c -------------------------------------------------------------------------------- /linux/CVE-2022-23222/images/01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/images/01.jpg -------------------------------------------------------------------------------- /linux/CVE-2022-23222/images/02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/images/02.jpg -------------------------------------------------------------------------------- /linux/CVE-2022-23222/images/03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/images/03.jpg -------------------------------------------------------------------------------- /linux/CVE-2022-23222/include/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/include/bpf.h -------------------------------------------------------------------------------- /linux/CVE-2022-23222/include/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/include/config.h -------------------------------------------------------------------------------- /linux/CVE-2022-23222/include/debug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/include/debug.h -------------------------------------------------------------------------------- /linux/CVE-2022-23222/include/helper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-23222/include/helper.h -------------------------------------------------------------------------------- /linux/CVE-2022-25636/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-25636/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-25636/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-25636/README.md -------------------------------------------------------------------------------- /linux/CVE-2022-25636/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-25636/exploit.c -------------------------------------------------------------------------------- /linux/CVE-2022-25636/fakefuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-25636/fakefuse.c -------------------------------------------------------------------------------- /linux/CVE-2022-25636/fakefuse.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-25636/fakefuse.h -------------------------------------------------------------------------------- /linux/CVE-2022-25636/poc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-25636/poc.png -------------------------------------------------------------------------------- /linux/CVE-2022-25636/util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-25636/util.c -------------------------------------------------------------------------------- /linux/CVE-2022-25636/util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-25636/util.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-29582/affinity.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/affinity.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/bin/exp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/bin/exp -------------------------------------------------------------------------------- /linux/CVE-2022-29582/cross_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/cross_cache.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/cross_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/cross_cache.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/err_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/err_state.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/.gitignore -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/CHANGELOG -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/CITATION.cff -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/COPYING -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/COPYING.GPL: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/COPYING.GPL -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/LICENSE -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/Makefile.common -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/Makefile.quiet: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/Makefile.quiet -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/README -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/SECURITY.md -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/configure: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/configure -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/README.Debian: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/debian/README.Debian -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/debian/changelog -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/compat: -------------------------------------------------------------------------------- 1 | 9 2 | -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/debian/control -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/debian/copyright -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/liburing1-udeb.install: -------------------------------------------------------------------------------- 1 | lib/*/lib*.so.* 2 | -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/liburing1.install: -------------------------------------------------------------------------------- 1 | lib/*/lib*.so.* 2 | -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/patches/series: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/debian/patches/series -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/debian/rules -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (quilt) 2 | -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/source/local-options: -------------------------------------------------------------------------------- 1 | #abort-on-upstream-changes 2 | #unapply-patches 3 | -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/source/options: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/debian/source/options -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/debian/watch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/debian/watch -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/examples/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/examples/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/examples/io_uring-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/examples/io_uring-cp.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/examples/link-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/examples/link-cp.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/examples/ucontext-cp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/examples/ucontext-cp.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/liburing.pc.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/liburing.pc.in -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/liburing.spec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/liburing.spec -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/make-debs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/make-debs.sh -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring.7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring.7 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_cq_ready.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_cq_ready.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_cqe_get_data64.3: -------------------------------------------------------------------------------- 1 | io_uring_cqe_get_data.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_cqe_seen.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_cqe_seen.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_enter.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_enter.2 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_get_sqe.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_get_sqe.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_peek_cqe.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_peek_cqe.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_accept_direct.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_accept.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_cancel64.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_cancel.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_close_direct.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_close.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_link.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_linkat.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_mkdir.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_mkdirat.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_multishot_accept.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_accept.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_multishot_accept_direct.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_accept.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_openat2_direct.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_openat2.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_openat_direct.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_openat.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_poll_multishot.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_poll_add.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_rename.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_renameat.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_socket_direct.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_socket.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_symlink.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_symlinkat.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_tee.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_prep_tee.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_timeout_remove.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_timeout_update.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_prep_unlink.3: -------------------------------------------------------------------------------- 1 | io_uring_prep_unlinkat.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_queue_init_params.3: -------------------------------------------------------------------------------- 1 | io_uring_queue_init.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_register.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_register.2 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_register_eventfd_async.3: -------------------------------------------------------------------------------- 1 | io_uring_register_eventfd.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_setup.2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_setup.2 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_sq_ready.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_sq_ready.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_sqe_set_data64.3: -------------------------------------------------------------------------------- 1 | io_uring_sqe_set_data.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_submit.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_submit.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_unregister_eventfd.3: -------------------------------------------------------------------------------- 1 | io_uring_register_eventfd.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_unregister_iowq_aff.3: -------------------------------------------------------------------------------- 1 | io_uring_register_iowq_aff.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/man/io_uring_wait_cqe.3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/man/io_uring_wait_cqe.3 -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/arch/generic/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/arch/generic/lib.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/arch/syscall-defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/arch/syscall-defs.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/arch/x86/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/arch/x86/lib.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/arch/x86/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/arch/x86/syscall.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/include/liburing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/include/liburing.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/int_flags.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/int_flags.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/lib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/lib.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/liburing.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/liburing.map -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/nolibc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/nolibc.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/queue.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/register.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/setup.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/syscall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/syscall.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/src/syscall.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/src/syscall.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/232c93d07b74.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/232c93d07b74.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/35fa71a030ca.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/35fa71a030ca.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/500f9fbadef8.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/500f9fbadef8.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/7ad0e4b2f83c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/7ad0e4b2f83c.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/8a9973408177.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/8a9973408177.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/917257daa0fe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/917257daa0fe.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/a0908ae19763.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/a0908ae19763.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/a4c0b3decb33.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/a4c0b3decb33.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/accept-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/accept-link.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/accept-reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/accept-reuse.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/accept-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/accept-test.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/accept.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/accept.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/across-fork.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/across-fork.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/b19062a56726.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/b19062a56726.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/b5837bd5311d.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/b5837bd5311d.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/buf-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/buf-ring.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/ce593a6c480a.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/ce593a6c480a.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/close-opath.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/close-opath.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/config -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/connect.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/connect.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/cq-full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/cq-full.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/cq-overflow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/cq-overflow.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/cq-peek-batch.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/cq-peek-batch.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/cq-ready.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/cq-ready.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/cq-size.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/cq-size.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/d4ae271dfaae.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/d4ae271dfaae.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/d77a67ed5f27.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/d77a67ed5f27.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/defer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/defer.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/drop-submit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/drop-submit.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/eeed8b54e0df.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/eeed8b54e0df.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/empty-eownerdead.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/empty-eownerdead.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/eventfd-disable.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/eventfd-disable.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/eventfd-reg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/eventfd-reg.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/eventfd-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/eventfd-ring.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/eventfd.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/eventfd.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/exec-target.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/exec-target.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/exit-no-cleanup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/exit-no-cleanup.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/fadvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/fadvise.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/fallocate.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/fallocate.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/fc2a85cb02ef.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/fc2a85cb02ef.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/file-register.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/file-register.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/file-update.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/file-update.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/file-verify.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/file-verify.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/fixed-buf-iter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/fixed-buf-iter.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/fixed-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/fixed-link.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/fixed-reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/fixed-reuse.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/fpos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/fpos.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/fsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/fsync.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/hardlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/hardlink.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/helpers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/helpers.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/helpers.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/io-cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/io-cancel.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/io_uring_enter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/io_uring_enter.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/io_uring_setup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/io_uring_setup.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/iopoll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/iopoll.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/lfs-openat-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/lfs-openat-write.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/lfs-openat.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/lfs-openat.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/link-timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/link-timeout.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/link.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/link_drain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/link_drain.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/madvise.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/madvise.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/mkdir.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/mkdir.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/msg-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/msg-ring.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/multicqes_drain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/multicqes_drain.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/nop-all-sizes.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/nop-all-sizes.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/nop.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/nop.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/open-close.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/open-close.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/open-direct-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/open-direct-link.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/open-direct-pick.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/open-direct-pick.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/openat2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/openat2.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/personality.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/personality.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/pipe-eof.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/pipe-eof.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/pipe-reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/pipe-reuse.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/poll-cancel-all.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/poll-cancel-all.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/poll-cancel-ton.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/poll-cancel-ton.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/poll-cancel.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/poll-cancel.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/poll-link.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/poll-link.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/poll-many.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/poll-many.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/poll-ring.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/poll-ring.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/poll-v-poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/poll-v-poll.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/poll.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/poll.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/pollfree.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/pollfree.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/probe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/probe.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/read-before-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/read-before-exit.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/read-write.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/read-write.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/recv-msgall.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/recv-msgall.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/rename.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/rename.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/ring-leak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/ring-leak.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/ring-leak2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/ring-leak2.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/ringbuf-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/ringbuf-read.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/rsrc_tags.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/rsrc_tags.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/runtests-loop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/runtests-loop.sh -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/runtests-quiet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/runtests-quiet.sh -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/runtests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/runtests.sh -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/rw_merge_test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/rw_merge_test.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/self.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/self.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/send_recv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/send_recv.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/send_recvmsg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/send_recvmsg.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/sendmsg_fs_cve.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/sendmsg_fs_cve.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/shared-wq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/shared-wq.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/short-read.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/short-read.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/shutdown.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/shutdown.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/skip-cqe.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/skip-cqe.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/socket-rw.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/socket-rw.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/socket.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/socket.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/splice.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/splice.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/sq-full-cpp.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/sq-full-cpp.cc -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/sq-full.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/sq-full.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/sq-poll-dup.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/sq-poll-dup.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/sq-poll-share.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/sq-poll-share.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/sq-space_left.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/sq-space_left.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/sqpoll-sleep.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/sqpoll-sleep.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/statx.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/statx.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/stdout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/stdout.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/submit-reuse.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/submit-reuse.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/symlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/symlink.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/teardowns.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/teardowns.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/test.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/test.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/thread-exit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/thread-exit.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/timeout-new.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/timeout-new.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/timeout.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/timeout.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/unlink.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/unlink.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/wakeup-hang.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/wakeup-hang.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/liburing/test/xattr.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/liburing/test/xattr.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/main.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/manager.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/manager.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/msg.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/msg.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/msg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/msg.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/ring_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/ring_helpers.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/rop.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/rop.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/tls.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/tls.c -------------------------------------------------------------------------------- /linux/CVE-2022-29582/tls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/tls.h -------------------------------------------------------------------------------- /linux/CVE-2022-29582/vmlinuz-5.10.90: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-29582/vmlinuz-5.10.90 -------------------------------------------------------------------------------- /linux/CVE-2022-34918/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-34918/README.md -------------------------------------------------------------------------------- /linux/CVE-2022-34918/assets/lpe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-34918/assets/lpe.png -------------------------------------------------------------------------------- /linux/CVE-2022-34918/poc_keyring_common/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-34918/poc_keyring_common/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-34918/poc_keyring_common/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-34918/poc_keyring_common/src/main.c -------------------------------------------------------------------------------- /linux/CVE-2022-34918/poc_keyring_normal/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-34918/poc_keyring_normal/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-34918/poc_keyring_normal/src/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-34918/poc_keyring_normal/src/main.c -------------------------------------------------------------------------------- /linux/CVE-2022-34918/sample_config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-34918/sample_config -------------------------------------------------------------------------------- /linux/CVE-2022-40768/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-40768/Makefile -------------------------------------------------------------------------------- /linux/CVE-2022-40768/poc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2022-40768/poc.c -------------------------------------------------------------------------------- /linux/CVE-2024-0684/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2024-0684/readme.md -------------------------------------------------------------------------------- /linux/CVE-2024-0684/split_me: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2024-0684/split_me -------------------------------------------------------------------------------- /linux/CVE-2024-21626/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2024-21626/.DS_Store -------------------------------------------------------------------------------- /linux/CVE-2024-21626/About.txt: -------------------------------------------------------------------------------- 1 | V0WKeep3r/CVE-2024-21626-runcPOC 2 | -------------------------------------------------------------------------------- /linux/CVE-2024-21626/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2024-21626/Dockerfile -------------------------------------------------------------------------------- /linux/CVE-2024-21626/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2024-21626/README.md -------------------------------------------------------------------------------- /linux/CVE-2024-21626/poc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2024-21626/poc.sh -------------------------------------------------------------------------------- /linux/CVE-2024-21626/poc2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2024-21626/poc2.sh -------------------------------------------------------------------------------- /linux/CVE-2024-21626/verify.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/linux/CVE-2024-21626/verify.sh -------------------------------------------------------------------------------- /mosec-2016/Android Root利用技术漫谈:绕过PXN.ppt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/mosec-2016/Android Root利用技术漫谈:绕过PXN.ppt -------------------------------------------------------------------------------- /qemu/cve-2015-5165/Makefile: -------------------------------------------------------------------------------- 1 | CFLAGS=-g -lpthread -std=c11 -D_DEFAULT_SOURCE 2 | 3 | all: vm-escape 4 | -------------------------------------------------------------------------------- /qemu/cve-2015-5165/build-exploit.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/qemu/cve-2015-5165/build-exploit.sh -------------------------------------------------------------------------------- /qemu/cve-2015-5165/cve-2015-5165.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/qemu/cve-2015-5165/cve-2015-5165.c -------------------------------------------------------------------------------- /qemu/cve-2015-5165/cve-2015-7504.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/qemu/cve-2015-5165/cve-2015-7504.c -------------------------------------------------------------------------------- /qemu/cve-2015-5165/mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/qemu/cve-2015-5165/mmu.c -------------------------------------------------------------------------------- /qemu/cve-2015-5165/qemu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/qemu/cve-2015-5165/qemu.h -------------------------------------------------------------------------------- /qemu/cve-2015-5165/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/qemu/cve-2015-5165/readme.md -------------------------------------------------------------------------------- /qemu/cve-2015-5165/reverse-crc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/qemu/cve-2015-5165/reverse-crc.c -------------------------------------------------------------------------------- /qemu/cve-2015-5165/vm-escape.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/qemu/cve-2015-5165/vm-escape.c -------------------------------------------------------------------------------- /tools/setools/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/readme.md -------------------------------------------------------------------------------- /tools/setools/setools-run-on-android/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-android/Android.mk -------------------------------------------------------------------------------- /tools/setools/setools-run-on-android/libapol/bst.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-android/libapol/bst.c -------------------------------------------------------------------------------- /tools/setools/setools-run-on-android/libsepol/VERSION: -------------------------------------------------------------------------------- 1 | 2.7-rc4 2 | -------------------------------------------------------------------------------- /tools/setools/setools-run-on-android/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-android/makefile -------------------------------------------------------------------------------- /tools/setools/setools-run-on-linux/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-linux/Makefile -------------------------------------------------------------------------------- /tools/setools/setools-run-on-linux/setools/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-linux/setools/COPYING -------------------------------------------------------------------------------- /tools/setools/setools-run-on-linux/setools/apol: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-linux/setools/apol -------------------------------------------------------------------------------- /tools/setools/setools-run-on-linux/setools/sediff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-linux/setools/sediff -------------------------------------------------------------------------------- /tools/setools/setools-run-on-linux/setools/sedta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-linux/setools/sedta -------------------------------------------------------------------------------- /tools/setools/setools-run-on-linux/setools/seinfo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-linux/setools/seinfo -------------------------------------------------------------------------------- /tools/setools/setools-run-on-linux/setools/tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jiayy/android_vuln_poc-exp/HEAD/tools/setools/setools-run-on-linux/setools/tox.ini --------------------------------------------------------------------------------