pypush-plus-plus/demo.py

144 lines
4 KiB
Python
Raw Normal View History

2023-05-02 12:39:11 +00:00
import json
2023-05-09 21:03:27 +00:00
from base64 import b64encode
from getpass import getpass
2023-05-09 22:43:51 +00:00
from base64 import b64decode
2023-05-09 19:36:33 +00:00
import apns
2023-05-09 21:03:27 +00:00
import ids
2023-05-02 12:39:11 +00:00
2023-07-23 22:55:13 +00:00
import logging
from rich.logging import RichHandler
FORMAT = "%(message)s"
logging.basicConfig(
level="NOTSET", format=FORMAT, datefmt="[%X]", handlers=[RichHandler()]
)
# Set sane log levels
logging.getLogger("urllib3").setLevel(logging.WARNING)
logging.getLogger("jelly").setLevel(logging.INFO)
logging.getLogger("nac").setLevel(logging.INFO)
2023-07-24 20:37:53 +00:00
logging.getLogger("apns").setLevel(logging.DEBUG)
2023-07-24 13:18:21 +00:00
logging.getLogger("albert").setLevel(logging.INFO)
logging.getLogger("ids").setLevel(logging.DEBUG)
logging.getLogger("bags").setLevel(logging.DEBUG)
2023-05-03 00:53:18 +00:00
2023-05-02 18:10:13 +00:00
def input_multiline(prompt):
print(prompt)
lines = []
while True:
line = input()
if line == "":
break
lines.append(line)
return "\n".join(lines)
2023-05-03 00:53:18 +00:00
2023-05-09 21:03:27 +00:00
# Try and load config.json
try:
with open("config.json", "r") as f:
2023-05-02 12:39:11 +00:00
2023-05-09 21:03:27 +00:00
CONFIG = json.load(f)
except FileNotFoundError:
CONFIG = {}
2023-05-02 12:39:11 +00:00
2023-05-09 22:43:51 +00:00
def convert_config(old):
new = {}
new["id"] = {
"key": old["key"],
"cert": old["ids_cert"],
}
new["auth"] = {
"key": old["key"],
"cert": old["auth_cert"],
"user_id": old["user_id"],
"handles": [
"mailto:user_test2@icloud.com",
]
#"handles": old["handles"],
}
new["push"] = {
"token": old["push"]["token"],
"key": old["push"]["key"],
"cert": old["push"]["cert"],
}
return new
2023-05-09 22:48:44 +00:00
# Uncomment this to change from an old config.json to a new one
#CONFIG = convert_config(CONFIG)
2023-05-09 22:43:51 +00:00
2023-05-02 12:39:11 +00:00
2023-05-09 21:03:27 +00:00
conn = apns.APNSConnection(
CONFIG.get("push", {}).get("key"), CONFIG.get("push", {}).get("cert")
)
2023-05-02 17:40:06 +00:00
2023-05-09 22:48:44 +00:00
def safe_b64decode(s):
try:
return b64decode(s)
except:
return None
conn.connect(token=safe_b64decode(CONFIG.get("push", {}).get("token")))
2023-07-24 20:37:53 +00:00
conn.set_state(1)
2023-07-24 20:43:11 +00:00
conn.filter(["com.apple.madrid"])
2023-05-09 22:48:44 +00:00
#print(b64encode(conn.token).decode())
2023-05-09 21:03:27 +00:00
user = ids.IDSUser(conn)
2023-05-02 17:40:06 +00:00
2023-05-09 21:03:27 +00:00
if CONFIG.get("auth", {}).get("cert") is not None:
auth_keypair = ids._helpers.KeyPair(CONFIG["auth"]["key"], CONFIG["auth"]["cert"])
user_id = CONFIG["auth"]["user_id"]
handles = CONFIG["auth"]["handles"]
user.restore_authentication(auth_keypair, user_id, handles)
2023-05-02 18:10:13 +00:00
else:
2023-05-09 21:03:27 +00:00
username = input("Username: ")
password = getpass("Password: ")
2023-05-03 00:53:18 +00:00
2023-05-09 21:03:27 +00:00
user.authenticate(username, password)
2023-05-09 21:03:27 +00:00
if CONFIG.get("id", {}).get("cert") is not None:
id_keypair = ids._helpers.KeyPair(CONFIG["id"]["key"], CONFIG["id"]["cert"])
user.restore_identity(id_keypair)
else:
2023-07-23 19:47:35 +00:00
#vd = input_multiline("Enter validation data: ")
import emulated.nac
vd = emulated.nac.generate_validation_data()
vd = b64encode(vd).decode()
2023-05-09 21:03:27 +00:00
user.register(vd)
#logging.info(f"Looked up textgpt@icloud.com, got response: {user.lookup(['mailto:textgpt@icloud.com'])}")
logging.info("Enter a username to look up, for example: mailto:textgpt@icloud.com")
while True:
# Read a line from stdin
line = input("> ")
if line == "":
break
# Look up the username
2023-07-24 20:37:53 +00:00
resp = user.lookup([line])
#logging.info(f"Looked up {line}, got response: {user.lookup([line])}")
info = resp[line]
identities = info["identities"]
logging.info(f"Identities: {len(identities)}")
for identity in identities:
logging.info(f"Identity: [yellow]{b64encode(identity['push-token']).decode()}[/] ({len(identity)} properties)", extra={"markup": True})
if len(identity) > 5:
logging.warning(identity)
2023-05-09 22:01:32 +00:00
2023-05-09 21:03:27 +00:00
# Write config.json
2023-07-24 20:37:53 +00:00
#CONFIG["id"] = {
# "key": user._id_keypair.key,
# "cert": user._id_keypair.cert,
#}
2023-05-09 21:03:27 +00:00
CONFIG["auth"] = {
"key": user._auth_keypair.key,
"cert": user._auth_keypair.cert,
"user_id": user.user_id,
"handles": user.handles,
}
CONFIG["push"] = {
"token": b64encode(user.push_connection.token).decode(),
"key": user.push_connection.private_key,
"cert": user.push_connection.cert,
}
2023-05-03 00:51:02 +00:00
2023-05-09 22:48:44 +00:00
with open("config.json", "w") as f:
2023-05-03 00:53:18 +00:00
json.dump(CONFIG, f, indent=4)