pypush-plus-plus/bags.py

56 lines
1.3 KiB
Python
Raw Normal View History

2023-04-12 12:13:47 -05:00
import plistlib
import requests
def apns_init_bag():
r = requests.get("https://init.push.apple.com/bag", verify=False)
if r.status_code != 200:
raise Exception("Failed to get APNs init bag")
# Parse the config as a plist
bag = plistlib.loads(r.content)
return bag
# This is the same as the above, but the response has a signature which we unwrap
def apns_init_bag_2():
r = requests.get("http://init-p01st.push.apple.com/bag", verify=False)
if r.status_code != 200:
raise Exception("Failed to get APNs init bag 2")
content = plistlib.loads(r.content)
bag = plistlib.loads(content["bag"])
return bag
def ids_bag():
r = requests.get(
"https://init.ess.apple.com/WebObjects/VCInit.woa/wa/getBag?ix=3", verify=False
)
if r.status_code != 200:
raise Exception("Failed to get IDS bag")
# Parse the config as a plist
content = plistlib.loads(r.content)
# Load the inner bag
bag = plistlib.loads(content["bag"])
return bag
if __name__ == "__main__":
# config = get_config()
# print(config)
# print(apns_init_bag_2())
2023-04-14 07:29:39 -05:00
#print(apns_init_bag_2() == apns_init_bag())
bag = ids_bag()
for key in bag:
#print(key)
#print(bag[key])
if type(bag[key]) == str:
if 'http' in bag[key]:
print(key, bag[key])