Skip to content

Instantly share code, notes, and snippets.

@profiles
profiles / ipsw_research.py
Last active August 9, 2024 03:34 — 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:
@profiles
profiles / disable_macOS_software_update_notifications.sh
Created April 5, 2025 05:15
disable macOS software update notifications
# https://github.com/bilousoleksandr/ncmanager
ncmanager write _SYSTEM_CENTER_:com.apple.SoftwareUpdateNotification -n false