fix ai spoofing

This commit is contained in:
leminlimez
2024-10-28 18:09:56 -04:00
parent a312c7b2b0
commit 6f6cd20c34
5 changed files with 5010 additions and 4 deletions

View File

@@ -2,12 +2,14 @@ from enum import Enum
from pymobiledevice3.lockdown import LockdownClient
class Device:
def __init__(self, uuid: int, name: str, version: str, build: str, model: str, locale: str, ld: LockdownClient):
def __init__(self, uuid: int, name: str, version: str, build: str, model: str, hardware: str, cpu: str, locale: str, ld: LockdownClient):
self.uuid = uuid
self.name = name
self.version = version
self.build = build
self.model = model
self.hardware = hardware
self.cpu = cpu
self.locale = locale
self.ld = ld