Skip to content

Instantly share code, notes, and snippets.

@profiles
profiles / ipsw_research.py
Last active June 13, 2025 23:54 — forked from ptrstr/ipsw_research.py
Small script to find all IPSW files with research (symbolicated) kernelcaches. Uses ipsw.me API
from remotezip import RemoteZip
import requests
import concurrent.futures
def ipsw_api(endpoint):
return requests.get('https://api.ipsw.me/v4/' + endpoint).json()
def process_firmware(firmware):
try:
with RemoteZip(firmware['url']) as zip: