├── CVE-2017-0781 ├── CVE-2017-0781.py └── README.md ├── CVE-2017-0785-master ├── CVE-2017-0785.py └── README.md ├── CVE-2017-0785 ├── 1 ├── 2 ├── 3 ├── 4 ├── 5 ├── 6 ├── 7 ├── 8 ├── 9 ├── 1.txt ├── CVE-2017-0785.py ├── README.md ├── cmd └── diff.py ├── README.md ├── blueborne-nexus5.py ├── blueborne ├── LICENSE ├── README.md ├── android │ ├── README.md │ ├── bluedroid.py │ ├── bluedroid.pyc │ ├── btsock.py │ ├── btsock.pyc │ ├── connectback.py │ ├── connectback.pyc │ ├── doit.py │ ├── sdp.py │ ├── sdp.pyc │ ├── utils.py │ └── utils.pyc ├── l2cap_infra │ ├── README.md │ ├── l2cap_infra.py │ ├── pcap_file.py │ └── traced_bt_user_sock.py ├── linux-bluez │ ├── README.md │ ├── amazon_echo │ │ └── exploit.py │ └── samsung_gear_s3 │ │ └── exploit.py └── nRF24_BDADDR_Sniffer │ ├── nrf.py │ └── nrf_readme.txt ├── bluedroid.py ├── bluedroid.pyc ├── btsock.py ├── btsock.pyc ├── cmd ├── connectback.py ├── connectback.pyc ├── diff.py ├── doit.py ├── littl_tools ├── CVE-2017-0781 │ ├── CVE-2017-0781.c │ ├── README │ └── test ├── CVE-2017-0782 │ ├── CVE-2017-0782-PoC.c │ ├── README │ └── test ├── CVE-2017-0785 │ ├── README │ ├── poc_remote_info_leak_android.c │ └── test ├── CVE-2017-1000250 │ ├── README │ └── poc_remote_info_leak.c ├── CVE-2017-1000251 │ ├── README │ └── poc_remote_dos.c ├── CVE_2017_6074 │ └── dccp_POC.c ├── android_root │ ├── aliroot_B │ │ ├── 2.c │ │ ├── Android.mk │ │ └── ImageB │ ├── cve-2015-3636 │ │ ├── Android.mk │ │ └── exploit.c │ └── root_utils │ │ ├── Android.mk │ │ ├── get_root.c │ │ └── get_root.h └── exploit │ ├── acceptshell.py │ ├── dev_config.h │ └── exp.c ├── sdp.py ├── sdp.pyc ├── test.pcap ├── utils.py └── utils.pyc /CVE-2017-0781/CVE-2017-0781.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0781/CVE-2017-0781.py -------------------------------------------------------------------------------- /CVE-2017-0781/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0781/README.md -------------------------------------------------------------------------------- /CVE-2017-0785-master/CVE-2017-0785.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785-master/CVE-2017-0785.py -------------------------------------------------------------------------------- /CVE-2017-0785-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785-master/README.md -------------------------------------------------------------------------------- /CVE-2017-0785/1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/1 -------------------------------------------------------------------------------- /CVE-2017-0785/1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/1.txt -------------------------------------------------------------------------------- /CVE-2017-0785/2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/2 -------------------------------------------------------------------------------- /CVE-2017-0785/3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/3 -------------------------------------------------------------------------------- /CVE-2017-0785/4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/4 -------------------------------------------------------------------------------- /CVE-2017-0785/5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/5 -------------------------------------------------------------------------------- /CVE-2017-0785/6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/6 -------------------------------------------------------------------------------- /CVE-2017-0785/7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/7 -------------------------------------------------------------------------------- /CVE-2017-0785/8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/8 -------------------------------------------------------------------------------- /CVE-2017-0785/9: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/9 -------------------------------------------------------------------------------- /CVE-2017-0785/CVE-2017-0785.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/CVE-2017-0785.py -------------------------------------------------------------------------------- /CVE-2017-0785/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/README.md -------------------------------------------------------------------------------- /CVE-2017-0785/cmd: -------------------------------------------------------------------------------- 1 | python CVE-2017-0785.py TARGET=F8:A9:D0:9F:19:89 2 | 3 | -------------------------------------------------------------------------------- /CVE-2017-0785/diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/CVE-2017-0785/diff.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/README.md -------------------------------------------------------------------------------- /blueborne-nexus5.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne-nexus5.py -------------------------------------------------------------------------------- /blueborne/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/LICENSE -------------------------------------------------------------------------------- /blueborne/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/README.md -------------------------------------------------------------------------------- /blueborne/android/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/README.md -------------------------------------------------------------------------------- /blueborne/android/bluedroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/bluedroid.py -------------------------------------------------------------------------------- /blueborne/android/bluedroid.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/bluedroid.pyc -------------------------------------------------------------------------------- /blueborne/android/btsock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/btsock.py -------------------------------------------------------------------------------- /blueborne/android/btsock.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/btsock.pyc -------------------------------------------------------------------------------- /blueborne/android/connectback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/connectback.py -------------------------------------------------------------------------------- /blueborne/android/connectback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/connectback.pyc -------------------------------------------------------------------------------- /blueborne/android/doit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/doit.py -------------------------------------------------------------------------------- /blueborne/android/sdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/sdp.py -------------------------------------------------------------------------------- /blueborne/android/sdp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/sdp.pyc -------------------------------------------------------------------------------- /blueborne/android/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/utils.py -------------------------------------------------------------------------------- /blueborne/android/utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/android/utils.pyc -------------------------------------------------------------------------------- /blueborne/l2cap_infra/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/l2cap_infra/README.md -------------------------------------------------------------------------------- /blueborne/l2cap_infra/l2cap_infra.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/l2cap_infra/l2cap_infra.py -------------------------------------------------------------------------------- /blueborne/l2cap_infra/pcap_file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/l2cap_infra/pcap_file.py -------------------------------------------------------------------------------- /blueborne/l2cap_infra/traced_bt_user_sock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/l2cap_infra/traced_bt_user_sock.py -------------------------------------------------------------------------------- /blueborne/linux-bluez/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/linux-bluez/README.md -------------------------------------------------------------------------------- /blueborne/linux-bluez/amazon_echo/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/linux-bluez/amazon_echo/exploit.py -------------------------------------------------------------------------------- /blueborne/linux-bluez/samsung_gear_s3/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/linux-bluez/samsung_gear_s3/exploit.py -------------------------------------------------------------------------------- /blueborne/nRF24_BDADDR_Sniffer/nrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/nRF24_BDADDR_Sniffer/nrf.py -------------------------------------------------------------------------------- /blueborne/nRF24_BDADDR_Sniffer/nrf_readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/blueborne/nRF24_BDADDR_Sniffer/nrf_readme.txt -------------------------------------------------------------------------------- /bluedroid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/bluedroid.py -------------------------------------------------------------------------------- /bluedroid.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/bluedroid.pyc -------------------------------------------------------------------------------- /btsock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/btsock.py -------------------------------------------------------------------------------- /btsock.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/btsock.pyc -------------------------------------------------------------------------------- /cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/cmd -------------------------------------------------------------------------------- /connectback.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/connectback.py -------------------------------------------------------------------------------- /connectback.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/connectback.pyc -------------------------------------------------------------------------------- /diff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/diff.py -------------------------------------------------------------------------------- /doit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/doit.py -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0781/CVE-2017-0781.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0781/CVE-2017-0781.c -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0781/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0781/README -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0781/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0781/test -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0782/CVE-2017-0782-PoC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0782/CVE-2017-0782-PoC.c -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0782/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0782/README -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0782/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0782/test -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0785/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0785/README -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0785/poc_remote_info_leak_android.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0785/poc_remote_info_leak_android.c -------------------------------------------------------------------------------- /littl_tools/CVE-2017-0785/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-0785/test -------------------------------------------------------------------------------- /littl_tools/CVE-2017-1000250/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-1000250/README -------------------------------------------------------------------------------- /littl_tools/CVE-2017-1000250/poc_remote_info_leak.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-1000250/poc_remote_info_leak.c -------------------------------------------------------------------------------- /littl_tools/CVE-2017-1000251/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-1000251/README -------------------------------------------------------------------------------- /littl_tools/CVE-2017-1000251/poc_remote_dos.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE-2017-1000251/poc_remote_dos.c -------------------------------------------------------------------------------- /littl_tools/CVE_2017_6074/dccp_POC.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/CVE_2017_6074/dccp_POC.c -------------------------------------------------------------------------------- /littl_tools/android_root/aliroot_B/2.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/android_root/aliroot_B/2.c -------------------------------------------------------------------------------- /littl_tools/android_root/aliroot_B/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/android_root/aliroot_B/Android.mk -------------------------------------------------------------------------------- /littl_tools/android_root/aliroot_B/ImageB: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/android_root/aliroot_B/ImageB -------------------------------------------------------------------------------- /littl_tools/android_root/cve-2015-3636/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/android_root/cve-2015-3636/Android.mk -------------------------------------------------------------------------------- /littl_tools/android_root/cve-2015-3636/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/android_root/cve-2015-3636/exploit.c -------------------------------------------------------------------------------- /littl_tools/android_root/root_utils/Android.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/android_root/root_utils/Android.mk -------------------------------------------------------------------------------- /littl_tools/android_root/root_utils/get_root.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/android_root/root_utils/get_root.c -------------------------------------------------------------------------------- /littl_tools/android_root/root_utils/get_root.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/android_root/root_utils/get_root.h -------------------------------------------------------------------------------- /littl_tools/exploit/acceptshell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/exploit/acceptshell.py -------------------------------------------------------------------------------- /littl_tools/exploit/dev_config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/exploit/dev_config.h -------------------------------------------------------------------------------- /littl_tools/exploit/exp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/littl_tools/exploit/exp.c -------------------------------------------------------------------------------- /sdp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/sdp.py -------------------------------------------------------------------------------- /sdp.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/sdp.pyc -------------------------------------------------------------------------------- /test.pcap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/test.pcap -------------------------------------------------------------------------------- /utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/utils.py -------------------------------------------------------------------------------- /utils.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miracle963/bluetooth-cve/HEAD/utils.pyc --------------------------------------------------------------------------------