Skip to content

Instantly share code, notes, and snippets.

View MeBlackHat's full-sized avatar
😀
Building iOS tweaks..

Mr-BlackHat MeBlackHat

😀
Building iOS tweaks..
View GitHub Profile
@MeBlackHat
MeBlackHat / downloadiOSHeaders.py
Last active June 25, 2023 15:58 — forked from menushka/downloadiOSHeaders.py
Download iOS Headers from http://developer.limneos.net. Includes settings for iOS version, download path and only downloading select frameworks.
from lxml import html
import requests
import re
import os
def createDir(path):
if not os.path.exists(path): os.makedirs(path)
# Settings
iosVersion = "14.4"