pymobiledevice3 4.14.6__py3-none-any.whl → 7.0.6__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- misc/plist_sniffer.py +15 -15
- misc/remotexpc_sniffer.py +29 -28
- misc/understanding_idevice_protocol_layers.md +15 -10
- pymobiledevice3/__main__.py +317 -127
- pymobiledevice3/_version.py +22 -4
- pymobiledevice3/bonjour.py +358 -113
- pymobiledevice3/ca.py +253 -16
- pymobiledevice3/cli/activation.py +31 -23
- pymobiledevice3/cli/afc.py +49 -40
- pymobiledevice3/cli/amfi.py +16 -21
- pymobiledevice3/cli/apps.py +87 -42
- pymobiledevice3/cli/backup.py +160 -90
- pymobiledevice3/cli/bonjour.py +44 -40
- pymobiledevice3/cli/cli_common.py +204 -198
- pymobiledevice3/cli/companion_proxy.py +14 -14
- pymobiledevice3/cli/crash.py +105 -56
- pymobiledevice3/cli/developer/__init__.py +62 -0
- pymobiledevice3/cli/developer/accessibility/__init__.py +65 -0
- pymobiledevice3/cli/developer/accessibility/settings.py +43 -0
- pymobiledevice3/cli/developer/arbitration.py +50 -0
- pymobiledevice3/cli/developer/condition.py +33 -0
- pymobiledevice3/cli/developer/core_device.py +294 -0
- pymobiledevice3/cli/developer/debugserver.py +244 -0
- pymobiledevice3/cli/developer/dvt/__init__.py +438 -0
- pymobiledevice3/cli/developer/dvt/core_profile_session.py +295 -0
- pymobiledevice3/cli/developer/dvt/simulate_location.py +56 -0
- pymobiledevice3/cli/developer/dvt/sysmon/__init__.py +69 -0
- pymobiledevice3/cli/developer/dvt/sysmon/process.py +188 -0
- pymobiledevice3/cli/developer/fetch_symbols.py +108 -0
- pymobiledevice3/cli/developer/simulate_location.py +51 -0
- pymobiledevice3/cli/diagnostics/__init__.py +75 -0
- pymobiledevice3/cli/diagnostics/battery.py +47 -0
- pymobiledevice3/cli/idam.py +42 -0
- pymobiledevice3/cli/lockdown.py +108 -103
- pymobiledevice3/cli/mounter.py +158 -99
- pymobiledevice3/cli/notification.py +38 -26
- pymobiledevice3/cli/pcap.py +45 -24
- pymobiledevice3/cli/power_assertion.py +18 -17
- pymobiledevice3/cli/processes.py +17 -23
- pymobiledevice3/cli/profile.py +165 -109
- pymobiledevice3/cli/provision.py +35 -34
- pymobiledevice3/cli/remote.py +217 -129
- pymobiledevice3/cli/restore.py +159 -143
- pymobiledevice3/cli/springboard.py +63 -53
- pymobiledevice3/cli/syslog.py +193 -86
- pymobiledevice3/cli/usbmux.py +73 -33
- pymobiledevice3/cli/version.py +5 -7
- pymobiledevice3/cli/webinspector.py +376 -214
- pymobiledevice3/common.py +3 -1
- pymobiledevice3/exceptions.py +182 -58
- pymobiledevice3/irecv.py +52 -53
- pymobiledevice3/irecv_devices.py +1489 -464
- pymobiledevice3/lockdown.py +473 -275
- pymobiledevice3/lockdown_service_provider.py +15 -8
- pymobiledevice3/osu/os_utils.py +27 -9
- pymobiledevice3/osu/posix_util.py +34 -15
- pymobiledevice3/osu/win_util.py +14 -8
- pymobiledevice3/pair_records.py +102 -21
- pymobiledevice3/remote/common.py +8 -4
- pymobiledevice3/remote/core_device/app_service.py +94 -67
- pymobiledevice3/remote/core_device/core_device_service.py +17 -14
- pymobiledevice3/remote/core_device/device_info.py +5 -5
- pymobiledevice3/remote/core_device/diagnostics_service.py +19 -4
- pymobiledevice3/remote/core_device/file_service.py +53 -23
- pymobiledevice3/remote/remote_service_discovery.py +79 -45
- pymobiledevice3/remote/remotexpc.py +73 -44
- pymobiledevice3/remote/tunnel_service.py +442 -317
- pymobiledevice3/remote/utils.py +14 -13
- pymobiledevice3/remote/xpc_message.py +145 -125
- pymobiledevice3/resources/dsc_uuid_map.py +19 -19
- pymobiledevice3/resources/firmware_notifications.py +20 -16
- pymobiledevice3/resources/notifications.txt +144 -0
- pymobiledevice3/restore/asr.py +27 -27
- pymobiledevice3/restore/base_restore.py +110 -21
- pymobiledevice3/restore/consts.py +87 -66
- pymobiledevice3/restore/device.py +59 -12
- pymobiledevice3/restore/fdr.py +46 -48
- pymobiledevice3/restore/ftab.py +19 -19
- pymobiledevice3/restore/img4.py +163 -0
- pymobiledevice3/restore/mbn.py +587 -0
- pymobiledevice3/restore/recovery.py +151 -151
- pymobiledevice3/restore/restore.py +562 -544
- pymobiledevice3/restore/restore_options.py +131 -110
- pymobiledevice3/restore/restored_client.py +51 -31
- pymobiledevice3/restore/tss.py +385 -267
- pymobiledevice3/service_connection.py +252 -59
- pymobiledevice3/services/accessibilityaudit.py +202 -120
- pymobiledevice3/services/afc.py +962 -365
- pymobiledevice3/services/amfi.py +24 -30
- pymobiledevice3/services/companion.py +23 -19
- pymobiledevice3/services/crash_reports.py +71 -47
- pymobiledevice3/services/debugserver_applist.py +3 -3
- pymobiledevice3/services/device_arbitration.py +8 -8
- pymobiledevice3/services/device_link.py +101 -79
- pymobiledevice3/services/diagnostics.py +973 -967
- pymobiledevice3/services/dtfetchsymbols.py +8 -8
- pymobiledevice3/services/dvt/dvt_secure_socket_proxy.py +4 -4
- pymobiledevice3/services/dvt/dvt_testmanaged_proxy.py +4 -4
- pymobiledevice3/services/dvt/instruments/activity_trace_tap.py +85 -74
- pymobiledevice3/services/dvt/instruments/application_listing.py +2 -3
- pymobiledevice3/services/dvt/instruments/condition_inducer.py +7 -6
- pymobiledevice3/services/dvt/instruments/core_profile_session_tap.py +466 -384
- pymobiledevice3/services/dvt/instruments/device_info.py +20 -11
- pymobiledevice3/services/dvt/instruments/energy_monitor.py +1 -1
- pymobiledevice3/services/dvt/instruments/graphics.py +1 -1
- pymobiledevice3/services/dvt/instruments/location_simulation.py +1 -1
- pymobiledevice3/services/dvt/instruments/location_simulation_base.py +10 -10
- pymobiledevice3/services/dvt/instruments/network_monitor.py +17 -17
- pymobiledevice3/services/dvt/instruments/notifications.py +1 -1
- pymobiledevice3/services/dvt/instruments/process_control.py +35 -10
- pymobiledevice3/services/dvt/instruments/screenshot.py +2 -2
- pymobiledevice3/services/dvt/instruments/sysmontap.py +15 -15
- pymobiledevice3/services/dvt/testmanaged/xcuitest.py +42 -52
- pymobiledevice3/services/file_relay.py +10 -10
- pymobiledevice3/services/heartbeat.py +9 -8
- pymobiledevice3/services/house_arrest.py +16 -15
- pymobiledevice3/services/idam.py +20 -0
- pymobiledevice3/services/installation_proxy.py +173 -81
- pymobiledevice3/services/lockdown_service.py +20 -10
- pymobiledevice3/services/misagent.py +22 -19
- pymobiledevice3/services/mobile_activation.py +147 -64
- pymobiledevice3/services/mobile_config.py +331 -294
- pymobiledevice3/services/mobile_image_mounter.py +141 -113
- pymobiledevice3/services/mobilebackup2.py +203 -145
- pymobiledevice3/services/notification_proxy.py +11 -11
- pymobiledevice3/services/os_trace.py +134 -74
- pymobiledevice3/services/pcapd.py +314 -302
- pymobiledevice3/services/power_assertion.py +10 -9
- pymobiledevice3/services/preboard.py +4 -4
- pymobiledevice3/services/remote_fetch_symbols.py +21 -14
- pymobiledevice3/services/remote_server.py +176 -146
- pymobiledevice3/services/restore_service.py +16 -16
- pymobiledevice3/services/screenshot.py +15 -12
- pymobiledevice3/services/simulate_location.py +7 -7
- pymobiledevice3/services/springboard.py +15 -15
- pymobiledevice3/services/syslog.py +5 -5
- pymobiledevice3/services/web_protocol/alert.py +11 -11
- pymobiledevice3/services/web_protocol/automation_session.py +251 -239
- pymobiledevice3/services/web_protocol/cdp_screencast.py +46 -37
- pymobiledevice3/services/web_protocol/cdp_server.py +19 -19
- pymobiledevice3/services/web_protocol/cdp_target.py +411 -373
- pymobiledevice3/services/web_protocol/driver.py +114 -111
- pymobiledevice3/services/web_protocol/element.py +124 -111
- pymobiledevice3/services/web_protocol/inspector_session.py +106 -102
- pymobiledevice3/services/web_protocol/selenium_api.py +49 -49
- pymobiledevice3/services/web_protocol/session_protocol.py +18 -12
- pymobiledevice3/services/web_protocol/switch_to.py +30 -27
- pymobiledevice3/services/webinspector.py +189 -155
- pymobiledevice3/tcp_forwarder.py +87 -69
- pymobiledevice3/tunneld/__init__.py +0 -0
- pymobiledevice3/tunneld/api.py +63 -0
- pymobiledevice3/tunneld/server.py +603 -0
- pymobiledevice3/usbmux.py +198 -147
- pymobiledevice3/utils.py +14 -11
- {pymobiledevice3-4.14.6.dist-info → pymobiledevice3-7.0.6.dist-info}/METADATA +55 -28
- pymobiledevice3-7.0.6.dist-info/RECORD +188 -0
- {pymobiledevice3-4.14.6.dist-info → pymobiledevice3-7.0.6.dist-info}/WHEEL +1 -1
- pymobiledevice3/cli/developer.py +0 -1215
- pymobiledevice3/cli/diagnostics.py +0 -99
- pymobiledevice3/tunneld.py +0 -524
- pymobiledevice3-4.14.6.dist-info/RECORD +0 -168
- {pymobiledevice3-4.14.6.dist-info → pymobiledevice3-7.0.6.dist-info}/entry_points.txt +0 -0
- {pymobiledevice3-4.14.6.dist-info → pymobiledevice3-7.0.6.dist-info/licenses}/LICENSE +0 -0
- {pymobiledevice3-4.14.6.dist-info → pymobiledevice3-7.0.6.dist-info}/top_level.txt +0 -0
|
@@ -2,17 +2,21 @@
|
|
|
2
2
|
ABAddressBookMeCardChangeDistributedNotification
|
|
3
3
|
ACDAccountStoreDidChangeNotification
|
|
4
4
|
AFAssistantEnablementDidChangeDarwinNotification
|
|
5
|
+
AFDictationEnablementDidChangeDarwinNotification
|
|
5
6
|
AFLanguageCodeDidChangeDarwinNotification
|
|
6
7
|
AppleDatePreferencesChangedNotification
|
|
7
8
|
AppleKeyboardsPreferencesChangedNotification
|
|
9
|
+
AppleKeyboardsSettingsChangedNotification
|
|
8
10
|
AppleLanguagePreferencesChangedNotification
|
|
9
11
|
AppleNumberPreferencesChangedNotification
|
|
10
12
|
ApplePreferredContentSizeCategoryChangedNotification
|
|
11
13
|
AppleTimePreferencesChangedNotification
|
|
14
|
+
BTSettingsHRMConnectedNotification
|
|
12
15
|
BYSetupAssistantFinishedDarwinNotification
|
|
13
16
|
CKAccountChangedNotification
|
|
14
17
|
CKIdentityUpdateNotification
|
|
15
18
|
CNContactStoreDidChangeNotification
|
|
19
|
+
CNContactStoreLimitedAccessDidChangeNotification
|
|
16
20
|
CNContactStoreMeContactDidChangeNotification
|
|
17
21
|
CNFavoritesChangedExternallyNotification
|
|
18
22
|
CSLDisableWristDetectionChangedNotification
|
|
@@ -28,6 +32,7 @@ FMLMeDeviceChangedNotification
|
|
|
28
32
|
FitnessPlusPlanCoachingDefaultsUpdatedNotification
|
|
29
33
|
HKHealthDaemonActiveDataCollectionWillStartNotification
|
|
30
34
|
HKHealthDaemonActiveWorkoutServersDidUpdateNotification
|
|
35
|
+
HKHealthPeripheralStatusDidChangeNotification
|
|
31
36
|
INVoocabularyChangedNotification
|
|
32
37
|
MFNanoMailImportantBridgeSettingHasChangedDarwinNotification
|
|
33
38
|
MISProvisioningProfileInstalled
|
|
@@ -35,23 +40,28 @@ MISProvisioningProfileRemoved
|
|
|
35
40
|
MPStoreClientTokenDidChangeNotification
|
|
36
41
|
NILocalDeviceStartedInteractingWithTokenNotification
|
|
37
42
|
NanoLifestylePreferencesChangedNotification
|
|
43
|
+
NanoLifestylePrivacyPreferencesChangedNotification
|
|
38
44
|
NewCarrierNotification
|
|
39
45
|
NewOperatorNotification
|
|
40
46
|
NoteContextDarwinNotificationWithLoggedChanges
|
|
41
47
|
PCPreferencesDidChangeNotification
|
|
42
48
|
RTLocationsOfInterestDidChangeNotification
|
|
49
|
+
RTLocationsOfInterestDidClearNotification
|
|
43
50
|
SBApplicationNotificationStateChanged
|
|
44
51
|
SLSharedWithYouAppSettingHasChanged
|
|
45
52
|
SLSharedWithYouSettingHasChanged
|
|
53
|
+
SPAccountRemovedNotification
|
|
46
54
|
SUPreferencesChangedNotification
|
|
47
55
|
SeymourWorkoutPlanChanged
|
|
48
56
|
SignificantTimeChangeNotification
|
|
57
|
+
TMRTCResetNotification
|
|
49
58
|
UIAccessibilityInvertColorsChanged
|
|
50
59
|
VMStoreSetTokenNotification
|
|
51
60
|
VT Phrase Type changed
|
|
52
61
|
VVMessageWaitingFallbackNotification
|
|
53
62
|
_CDPWalrusStateChangeDarwinNotification
|
|
54
63
|
_CalDatabaseChangedNotification
|
|
64
|
+
_CalDatabaseIntegrationDataChangedNotification
|
|
55
65
|
__ABDataBaseChangedByOtherProcessNotification
|
|
56
66
|
com.apple.AOSNotification.FMIPStateDidChange
|
|
57
67
|
com.apple.AirTunes.DACP.device-prevent-playback
|
|
@@ -66,23 +76,37 @@ com.apple.AirTunes.DACP.repeatadv
|
|
|
66
76
|
com.apple.AirTunes.DACP.shuffletoggle
|
|
67
77
|
com.apple.AirTunes.DACP.volumedown
|
|
68
78
|
com.apple.AirTunes.DACP.volumeup
|
|
79
|
+
com.apple.AppleMediaServices.accountCachedData.dataUpdated
|
|
80
|
+
com.apple.AppleMediaServices.activeicloudaccountchanged
|
|
69
81
|
com.apple.AppleMediaServices.deviceOffersChanged
|
|
82
|
+
com.apple.AppleMediaServices.eligibilityoverridechanged
|
|
83
|
+
com.apple.ApplicationService.replicatord.terminus
|
|
84
|
+
com.apple.BiometricKit.matchOperationStartAttempted
|
|
70
85
|
com.apple.BiometricKit.passcodeGracePeriodChanged
|
|
71
86
|
com.apple.CallHistoryPluginHelper.launchnotification
|
|
72
87
|
com.apple.Carousel.wristStateChanged
|
|
88
|
+
com.apple.CascadeSets.DonateNow
|
|
73
89
|
com.apple.CloudSubscriptionFeature.Changed
|
|
90
|
+
com.apple.CloudSubscriptionFeatures.OptIn.Changed
|
|
74
91
|
com.apple.ContinuityKeyBoard.enabled
|
|
75
92
|
com.apple.DuetHeuristic-BM.shutdowsoon
|
|
76
93
|
com.apple.EscrowSecurityAlert.record
|
|
77
94
|
com.apple.EscrowSecurityAlert.reset
|
|
78
95
|
com.apple.EscrowSecurityAlert.server
|
|
96
|
+
com.apple.FindMyDevice.LocatableStateReported
|
|
97
|
+
com.apple.FitnessCoaching.FCPauseRingsSampleChangedNotification
|
|
79
98
|
com.apple.GeoServices.PreferencesSync.SettingsChanged
|
|
99
|
+
com.apple.GeoServices.countryCodeChanged
|
|
100
|
+
com.apple.GeoServices.experimentsChanged
|
|
80
101
|
com.apple.GeoServices.navigation.started
|
|
81
102
|
com.apple.GeoServices.navigation.stopped
|
|
103
|
+
com.apple.GeoServices.pairedDeviceExperimentsConfigChanged
|
|
82
104
|
com.apple.InstallerDiagnostics.ReportFactoryInstall
|
|
83
105
|
com.apple.LaunchServices.ApplicationsChanged
|
|
84
106
|
com.apple.LaunchServices.applicationRegistered
|
|
85
107
|
com.apple.LaunchServices.applicationUnregistered
|
|
108
|
+
com.apple.LaunchServices.database
|
|
109
|
+
com.apple.LocalAuthentication.ratchet.StateDidChange
|
|
86
110
|
com.apple.LockdownMode.accountChanged
|
|
87
111
|
com.apple.LoginKit.isLoggedIn
|
|
88
112
|
com.apple.MCX._managementStatusChangedForDomains
|
|
@@ -97,10 +121,20 @@ com.apple.MediaRemote.nowPlayingApplicationIsPlayingDidChange
|
|
|
97
121
|
com.apple.MediaRemote.nowPlayingInfoDidChange
|
|
98
122
|
com.apple.MobileAsset.AppleKeyServicesCRL.new-asset-installed
|
|
99
123
|
com.apple.MobileAsset.AutoAssetAtomicNotification^ATOMIC_INSTANCE_DOWNLOADED
|
|
124
|
+
com.apple.MobileAsset.AutoAssetAtomicNotification^ATOMIC_INSTANCE_ELIMINATED
|
|
125
|
+
com.apple.MobileAsset.AutoAssetAtomicNotification^ATOMIC_INSTANCE_NO_ENTRIES
|
|
126
|
+
com.apple.MobileAsset.AutoAssetAtomicNotification^com.apple.MobileAsset.UAF.AONSenseConfiguration^ATOMIC_INSTANCE_DOWNLOADED
|
|
127
|
+
com.apple.MobileAsset.AutoAssetAtomicNotification^com.apple.MobileAsset.UAF.AONSenseConfiguration^ATOMIC_INSTANCE_NO_ENTRIES
|
|
128
|
+
com.apple.MobileAsset.AutoAssetAtomicNotification^com.apple.translation.assets^ATOMIC_INSTANCE_DOWNLOADED
|
|
129
|
+
com.apple.MobileAsset.AutoAssetAtomicNotification^com.apple.translation.assets^ATOMIC_INSTANCE_ELIMINATED
|
|
130
|
+
com.apple.MobileAsset.AutoAssetAtomicNotification^com.apple.translation.assets^ATOMIC_INSTANCE_NO_ENTRIES
|
|
131
|
+
com.apple.MobileAsset.AutoAssetNotification^com.apple.MobileAsset.MAAutoAsset^STARTUP_ACTIVATED
|
|
132
|
+
com.apple.MobileAsset.AutoAssetNotification^com.apple.MobileAsset.OSEligibility^ASSET_VERSION_DOWNLOADED
|
|
100
133
|
com.apple.MobileAsset.CoreTextAssets.ma.cached-metadata-updated
|
|
101
134
|
com.apple.MobileAsset.CoreTextAssets.ma.new-asset-installed
|
|
102
135
|
com.apple.MobileAsset.EmbeddedSpeech.ma.new-asset-installed
|
|
103
136
|
com.apple.MobileAsset.Font7.ma.cached-metadata-updated
|
|
137
|
+
com.apple.MobileAsset.Font8.ma.cached-metadata-updated
|
|
104
138
|
com.apple.MobileAsset.KextDenyList.ma.new-asset-installed
|
|
105
139
|
com.apple.MobileAsset.SecureElementServiceAssets.ma.cached-metadata-updated
|
|
106
140
|
com.apple.MobileAsset.SecureElementServiceAssets.ma.new-asset-installed
|
|
@@ -109,6 +143,7 @@ com.apple.MobileAsset.SpeechEndpointAssets.ma.cached-metadata-updated
|
|
|
109
143
|
com.apple.MobileAsset.TTSAXResourceModelAssets.ma.new-asset-installed
|
|
110
144
|
com.apple.MobileAsset.TimeZoneUpdate.ma.cached-metadata-updated
|
|
111
145
|
com.apple.MobileAsset.TimeZoneUpdate.ma.new-asset-installed
|
|
146
|
+
com.apple.MobileAsset.UAF.Siri.TextToSpeech.ma.new-asset-installed
|
|
112
147
|
com.apple.MobileAsset.VoiceServices.CustomVoice.ma.new-asset-installed
|
|
113
148
|
com.apple.MobileAsset.VoiceServices.GryphonVoice.ma.new-asset-installed
|
|
114
149
|
com.apple.MobileAsset.VoiceServices.VoiceResources.ma.new-asset-installed
|
|
@@ -134,7 +169,9 @@ com.apple.MobileAsset.VoiceTriggerHSAssetsIPad.ma.new-asset-installed
|
|
|
134
169
|
com.apple.MobileAsset.VoiceTriggerHSAssetsWatch.ma.cached-metadata-updated
|
|
135
170
|
com.apple.MobileAsset.VoiceTriggerHSAssetsWatch.ma.new-asset-installed
|
|
136
171
|
com.apple.MobileBackup.backgroundCellularAccessChanged
|
|
172
|
+
com.apple.MobileSMS.CKNanoCannedRepliesArray.changed
|
|
137
173
|
com.apple.MobileSoftwareUpdate.OSVersionChanged
|
|
174
|
+
com.apple.MobileStoreDemo.ShallowRefreshReady
|
|
138
175
|
com.apple.Music-AllowsCellularDataDownloads
|
|
139
176
|
com.apple.NanoPhotos.Library.changed
|
|
140
177
|
com.apple.OTACrashCopier.SubmissionPreferenceChanged
|
|
@@ -156,9 +193,11 @@ com.apple.SafariShared.Assistant.reload_plugin
|
|
|
156
193
|
com.apple.SafeEjectGPUStartupDaemon.received
|
|
157
194
|
com.apple.SensorKit.als
|
|
158
195
|
com.apple.SensorKit.deviceUsageReport
|
|
196
|
+
com.apple.SensorKit.hearing.acousticSettings
|
|
159
197
|
com.apple.SensorKit.mediaEvents
|
|
160
198
|
com.apple.SensorKit.messagesUsageReport
|
|
161
199
|
com.apple.SensorKit.phoneUsageReport
|
|
200
|
+
com.apple.SensorKit.sleep.sessions
|
|
162
201
|
com.apple.SensorKit.visits
|
|
163
202
|
com.apple.Sharing.prefsChanged
|
|
164
203
|
com.apple.SiriTTSTrainingAgent.taskEvent.cancelled
|
|
@@ -171,6 +210,9 @@ com.apple.SiriTTSTrainingAgent.taskEvent.undefined
|
|
|
171
210
|
com.apple.SoftwareUpdate.CheckForCatalogChange
|
|
172
211
|
com.apple.SoftwareUpdate.SUPreferencesChanged
|
|
173
212
|
com.apple.SoftwareUpdate.TriggerBackgroundCheck
|
|
213
|
+
com.apple.SoftwareUpdateServices.newUpdateFound
|
|
214
|
+
com.apple.SoftwareUpdateServices.updateFound
|
|
215
|
+
com.apple.StoreServices.SSAccountStore.activeaccountchanged
|
|
174
216
|
com.apple.StoreServices.StorefrontChanged
|
|
175
217
|
com.apple.SynthesisProvider.updatedVoices
|
|
176
218
|
com.apple.TVRemoteCore.connectionRequested
|
|
@@ -179,11 +221,13 @@ com.apple.TVScreenSaver.IdleScreenScreenSaverTypeChanged
|
|
|
179
221
|
com.apple.TVScreenSaver.PhotosSharingFilterChanged
|
|
180
222
|
com.apple.TVScreenSaver.RequestMemoriesRefresh
|
|
181
223
|
com.apple.TVScreenSaver.TVScreenSaverAssetServiceManagerUpdated
|
|
224
|
+
com.apple.TelephonyUtilities.DefaultAppRelayTelephonySettingChanged
|
|
182
225
|
com.apple.TextInput.RemoveAllDynamicDictionariesNotification
|
|
183
226
|
com.apple.UsageTrackingAgent.registration.application
|
|
184
227
|
com.apple.UsageTrackingAgent.registration.now-playing
|
|
185
228
|
com.apple.UsageTrackingAgent.registration.video
|
|
186
229
|
com.apple.UsageTrackingAgent.registration.web-domain
|
|
230
|
+
com.apple.UserProfiles.ProfileStoreDidUpdate
|
|
187
231
|
com.apple.VideoSubscriberAccount.DidRegisterSubscription
|
|
188
232
|
com.apple.VideosUI.PlayHistoryUpdatedNotification
|
|
189
233
|
com.apple.VideosUI.StoreAcquisitionCrossProcessNotification
|
|
@@ -215,6 +259,11 @@ com.apple.ap.adprivacyd.iTunesActiveStorefrontDidChangeNotification
|
|
|
215
259
|
com.apple.ap.adprivacyd.launch
|
|
216
260
|
com.apple.ap.adprivacyd.reconcile
|
|
217
261
|
com.apple.appletv.backgroundstate
|
|
262
|
+
com.apple.appplaceholdersyncd.replicatorclient.message
|
|
263
|
+
com.apple.appplaceholdersyncd.replicatorclient.record
|
|
264
|
+
com.apple.appprotection.change
|
|
265
|
+
com.apple.appprotection.change.hidden
|
|
266
|
+
com.apple.appprotection.change.locked
|
|
218
267
|
com.apple.appstored.ActivitySubEntitlementsCacheUpdated
|
|
219
268
|
com.apple.appstored.AppStoreSubEntitlementsCacheUpdated
|
|
220
269
|
com.apple.appstored.HWBundleSubEntitlementsCacheUpdated
|
|
@@ -224,6 +273,9 @@ com.apple.appstored.PodcastSubEntitlementsCacheUpdated
|
|
|
224
273
|
com.apple.appstored.TVSubEntitlementsCacheUpdated
|
|
225
274
|
com.apple.appstored.iCloudSubEntitlementsCacheUpdated
|
|
226
275
|
com.apple.assistant.app_vocabulary
|
|
276
|
+
com.apple.assistant.domain.didChange
|
|
277
|
+
com.apple.assistant.domain.preferences.didChange
|
|
278
|
+
com.apple.assistant.domain.priority.didChange
|
|
227
279
|
com.apple.assistant.siri_settings_did_change
|
|
228
280
|
com.apple.assistant.speech-capture.finished
|
|
229
281
|
com.apple.assistant.sync_data_changed
|
|
@@ -240,6 +292,7 @@ com.apple.bluetooth.accessory-authentication.success
|
|
|
240
292
|
com.apple.bluetooth.connection
|
|
241
293
|
com.apple.bluetooth.daemonStarted
|
|
242
294
|
com.apple.bluetooth.pairing
|
|
295
|
+
com.apple.bluetooth.pairingWithReason
|
|
243
296
|
com.apple.bluetooth.state
|
|
244
297
|
com.apple.bookmarks.BookmarksFileChanged
|
|
245
298
|
com.apple.calendar.database.preference.notification.kCalPreferredDaysToSyncKey
|
|
@@ -247,6 +300,7 @@ com.apple.calendar.database.preference.notification.suggestEventLocations
|
|
|
247
300
|
com.apple.callhistory.RecentsClearedNotification
|
|
248
301
|
com.apple.callhistory.notification.calls-changed
|
|
249
302
|
com.apple.callhistorysync.idslaunchnotification
|
|
303
|
+
com.apple.callkit.calldirectorymanager.identificationentrieschanged
|
|
250
304
|
com.apple.carkit.capabilities-changed
|
|
251
305
|
com.apple.carkit.carplay-attached
|
|
252
306
|
com.apple.cddcommunicator.batteryChanged
|
|
@@ -254,6 +308,8 @@ com.apple.cddcommunicator.nwchanged
|
|
|
254
308
|
com.apple.cddcommunicator.pluginChanged
|
|
255
309
|
com.apple.cddcommunicator.thermalChanged
|
|
256
310
|
com.apple.chatkit.groups.siri_data_changed
|
|
311
|
+
com.apple.chronod.replicator.message
|
|
312
|
+
com.apple.chronod.replicator.record
|
|
257
313
|
com.apple.cloud.quota.simulate.vfs.almostfull
|
|
258
314
|
com.apple.cloud.quota.simulate.vfs.notfull
|
|
259
315
|
com.apple.cloudd.pcsIdentityUpdate-com.apple.ProactivePredictionsBackup
|
|
@@ -264,14 +320,18 @@ com.apple.cmio.VDCAssistant.attach-notification
|
|
|
264
320
|
com.apple.commcenter.DataSettingsChangedNotification
|
|
265
321
|
com.apple.commcenter.InternationalRoamingEDGE.changed
|
|
266
322
|
com.apple.contacts.clientDidDisplayFavorites
|
|
323
|
+
com.apple.coreaudio.BorealisToggled
|
|
324
|
+
com.apple.coreaudio.IORunning
|
|
267
325
|
com.apple.coreaudio.RoutingConfiguration
|
|
268
326
|
com.apple.coreaudio.borealisTrigger
|
|
327
|
+
com.apple.coreaudio.components.changed
|
|
269
328
|
com.apple.coreaudio.speechDetectionVAD.created
|
|
270
329
|
com.apple.coreduet.client-needs-help.coreduetd
|
|
271
330
|
com.apple.coreduet.idslaunchnotification
|
|
272
331
|
com.apple.coreduetd.knowledgebase.launch.duetexpertd
|
|
273
332
|
com.apple.coreduetd.nearbydeviceschanged
|
|
274
333
|
com.apple.coreduetd.remoteDeviceChange
|
|
334
|
+
com.apple.coregraphics.GUIConsoleSessionChanged
|
|
275
335
|
com.apple.coremedia.carplayisconnected
|
|
276
336
|
com.apple.corerecents.iCloudAccountChanged
|
|
277
337
|
com.apple.corespotlight.developer.ReindexAllItems
|
|
@@ -282,6 +342,7 @@ com.apple.dataaccess.checkHolidayCalendarAccount
|
|
|
282
342
|
com.apple.dataaccess.ping
|
|
283
343
|
com.apple.datamigrator.datamigrationcompletecontinuerestore
|
|
284
344
|
com.apple.datamigrator.migrationDidFinish
|
|
345
|
+
com.apple.devicemanagementclient.devicePostureChanged
|
|
285
346
|
com.apple.devicemanagementclient.longLivedTokenChanged
|
|
286
347
|
com.apple.dmd.budget.didChange
|
|
287
348
|
com.apple.dmd.iCloudAccount.didChange
|
|
@@ -324,13 +385,18 @@ com.apple.duetexpertd.ms.nowplayingplay
|
|
|
324
385
|
com.apple.duetexpertd.prefschanged
|
|
325
386
|
com.apple.duetexpertd.sportsTeamsChanged
|
|
326
387
|
com.apple.duetexpertd.updateDefaultsDueToRelevantHomeScreenConfigUpdate
|
|
388
|
+
com.apple.eventkit.preference.notification.AlertInviteeDeclines
|
|
327
389
|
com.apple.eventkit.preference.notification.UnselectedCalendarIdentifiersForFocusMode
|
|
328
390
|
com.apple.exchangesyncd.ping
|
|
329
391
|
com.apple.fairplayd.resync-fpkeybag
|
|
330
392
|
com.apple.family.family_updated
|
|
331
393
|
com.apple.fitness.FitnessAppInstalled
|
|
394
|
+
com.apple.fitnessintelligence.network-service
|
|
332
395
|
com.apple.gamepolicy.daemon.launch
|
|
396
|
+
com.apple.generativepartnerservicesettings
|
|
333
397
|
com.apple.geoservices.siri_data_changed
|
|
398
|
+
com.apple.gms.availability.notification
|
|
399
|
+
com.apple.gms.availability.notification.private
|
|
334
400
|
com.apple.hangtracerd.htse_state_changed
|
|
335
401
|
com.apple.healthlite.SleepDetectedActivity
|
|
336
402
|
com.apple.healthlite.SleepSessionEndRequest
|
|
@@ -356,6 +422,7 @@ com.apple.icloud.findmydeviced.localActivationLockInfoChanged
|
|
|
356
422
|
com.apple.icloud.fmip.lostmode.enable
|
|
357
423
|
com.apple.icloud.fmip.siri_data_changed
|
|
358
424
|
com.apple.icloud.searchparty.accessoryDidPair
|
|
425
|
+
com.apple.icloud.searchparty.secureLocations.liteLocationPublishRequest
|
|
359
426
|
com.apple.icloud.searchparty.selfbeaconchanged
|
|
360
427
|
com.apple.icloudpairing.idslaunchnotification
|
|
361
428
|
com.apple.idscredentials.idslaunchnotification
|
|
@@ -387,13 +454,18 @@ com.apple.kvs.store-did-change.com.apple.cloudsettings.mouse
|
|
|
387
454
|
com.apple.kvs.store-did-change.com.apple.cloudsettings.pencil
|
|
388
455
|
com.apple.kvs.store-did-change.com.apple.cloudsettings.sound
|
|
389
456
|
com.apple.kvs.store-did-change.com.apple.cloudsettings.trackpad
|
|
457
|
+
com.apple.kvs.store-did-change.com.apple.devicesharingd.deviceEnrollmentData
|
|
390
458
|
com.apple.kvs.store-did-change.com.apple.iBooks
|
|
391
459
|
com.apple.kvs.store-did-change.com.apple.reminders
|
|
392
460
|
com.apple.kvs.store-did-change.com.apple.sleepd
|
|
393
461
|
com.apple.language.changed
|
|
462
|
+
com.apple.liveactivitiesd.replicatorParticipant.message
|
|
463
|
+
com.apple.liveactivitiesd.replicatorParticipant.record
|
|
394
464
|
com.apple.livespeech.localprefschanged
|
|
395
465
|
com.apple.locationd.appreset
|
|
396
466
|
com.apple.locationd.authorization
|
|
467
|
+
com.apple.locationd.gathering.bufferedDevicesReceived
|
|
468
|
+
com.apple.locationd.gathering.came_up
|
|
397
469
|
com.apple.locationd.vehicle.connected
|
|
398
470
|
com.apple.locationd.vehicle.disconnected
|
|
399
471
|
com.apple.locationd.vehicle.exit
|
|
@@ -404,19 +476,25 @@ com.apple.managedconfiguration.effectivesettingschanged
|
|
|
404
476
|
com.apple.managedconfiguration.managedorginfochanged
|
|
405
477
|
com.apple.managedconfiguration.passcodechanged
|
|
406
478
|
com.apple.managedconfiguration.restrictionchanged
|
|
479
|
+
com.apple.managedconfiguration.rrts
|
|
407
480
|
com.apple.media.entities.siri_data_changed
|
|
408
481
|
com.apple.media.podcasts.siri_data_changed
|
|
409
482
|
com.apple.mediaaccessibility.displayFilterSettingsChanged
|
|
483
|
+
com.apple.migrationkit.internalsettings.dismissed
|
|
410
484
|
com.apple.mobile.disk_image_mounted
|
|
411
485
|
com.apple.mobile.keybagd.first_unlock
|
|
412
486
|
com.apple.mobile.keybagd.lock_status
|
|
487
|
+
com.apple.mobile.keybagd.user_changed
|
|
413
488
|
com.apple.mobile.lockdown.BonjourPairingServiceChanged
|
|
414
489
|
com.apple.mobile.lockdown.BonjourServiceChanged
|
|
415
490
|
com.apple.mobile.lockdown.activation_state
|
|
416
491
|
com.apple.mobile.lockdown.device_name_changed
|
|
492
|
+
com.apple.mobile.lockdown.host_paired
|
|
493
|
+
com.apple.mobile.lockdown.trusted_host_attached
|
|
417
494
|
com.apple.mobile.storage_unmounted
|
|
418
495
|
com.apple.mobilecal.invitationalertschanged
|
|
419
496
|
com.apple.mobilecal.preference.notification.calendarsExcludedFromNotifications
|
|
497
|
+
com.apple.mobilecal.preference.notification.overlayCalendarID
|
|
420
498
|
com.apple.mobilecal.preference.notification.weekStart
|
|
421
499
|
com.apple.mobilecal.timezonechanged
|
|
422
500
|
com.apple.mobileipod-prefsChanged
|
|
@@ -427,6 +505,7 @@ com.apple.mobileipod.libraryimportdidfinish
|
|
|
427
505
|
com.apple.mobileipod.noncontentspropertieschanged
|
|
428
506
|
com.apple.mobilemail.afc.poll
|
|
429
507
|
com.apple.mobileme.fmf1.allowFindMyFriendsModification
|
|
508
|
+
com.apple.mobilerepair.refreshui
|
|
430
509
|
com.apple.mobileslideshow.ICPLStateChanged
|
|
431
510
|
com.apple.mobileslideshow.PLNotificationKeepOriginalsChanged
|
|
432
511
|
com.apple.mobiletimerd.bedtimetest
|
|
@@ -437,38 +516,60 @@ com.apple.mobiletimerd.reset
|
|
|
437
516
|
com.apple.mobiletimerd.resttest
|
|
438
517
|
com.apple.mobiletimerd.waketest
|
|
439
518
|
com.apple.mobiletimerd.wakeuptest
|
|
519
|
+
com.apple.modelcatalog.generative-experiences-readiness
|
|
440
520
|
com.apple.nanomusic.sync.defaults
|
|
441
521
|
com.apple.nanophotos.prefs.LibraryCollectionTargetMapData-changed
|
|
522
|
+
com.apple.nanopreferencessync.initialSyncCompletion
|
|
442
523
|
com.apple.nanoregistry.devicedidpair
|
|
443
524
|
com.apple.nanoregistry.devicedidunpair
|
|
444
525
|
com.apple.nanoregistry.pairedSync.initialSyncDidComplete
|
|
445
526
|
com.apple.nanoregistry.paireddevicedidchangecapabilities
|
|
446
527
|
com.apple.nanoregistry.paireddevicedidchangeversion
|
|
447
528
|
com.apple.nanoregistry.watchdidbecomeactive
|
|
529
|
+
com.apple.nanotimekit.replicator.library.message
|
|
530
|
+
com.apple.nanotimekit.replicator.library.record
|
|
448
531
|
com.apple.navd.backgroundCommute.startPredicting
|
|
449
532
|
com.apple.navd.wakeUpForHypothesisUpdate
|
|
450
533
|
com.apple.nearfield.handoff.terminal
|
|
451
534
|
com.apple.networkextension.app-paths-changed
|
|
452
535
|
com.apple.networkextension.apps-changed
|
|
453
536
|
com.apple.networkextension.nehelper-init
|
|
537
|
+
com.apple.networkrelay.launch.phs
|
|
454
538
|
com.apple.networkserviceproxy.reset
|
|
539
|
+
com.apple.newdeviceoutreach.coverageupdated
|
|
455
540
|
com.apple.nfcacd.multitag.state.change
|
|
541
|
+
com.apple.os-eligibility-domain.change
|
|
542
|
+
com.apple.os-eligibility-domain.change.aluminum
|
|
543
|
+
com.apple.os-eligibility-domain.change.chromium
|
|
544
|
+
com.apple.os-eligibility-domain.change.greymatter
|
|
545
|
+
com.apple.os-eligibility-domain.change.iron
|
|
546
|
+
com.apple.os-eligibility-domain.change.manganese
|
|
547
|
+
com.apple.os-eligibility-domain.change.silicon
|
|
548
|
+
com.apple.os-eligibility-domain.input-needed
|
|
549
|
+
com.apple.osintelligence.iblm.mitigationchanged
|
|
456
550
|
com.apple.pairedsync.syncDidComplete
|
|
457
551
|
com.apple.parsec-fbf.FLUploadImmediately
|
|
458
552
|
com.apple.parsecd.bag
|
|
459
553
|
com.apple.parsecd.queries.clearData
|
|
460
554
|
com.apple.pasteboard.notify.changed
|
|
555
|
+
com.apple.perfpowermetricmonitor.monitoring_timed_out
|
|
461
556
|
com.apple.pex.connections.focalappchanged
|
|
462
557
|
com.apple.photos.DidUpdateAutonamingUserFeedback
|
|
558
|
+
com.apple.photosface.network-service
|
|
463
559
|
com.apple.photostream.idslaunchnotification
|
|
560
|
+
com.apple.powerexperienced.testdevicecontext.changed
|
|
561
|
+
com.apple.powerexperienced.testmobilechargingcontroller.changed
|
|
464
562
|
com.apple.powerlog.batteryServiceNotification
|
|
465
563
|
com.apple.powermanagement.idlesleeppreventers
|
|
466
564
|
com.apple.powermanagement.restartpreventers
|
|
467
565
|
com.apple.powermanagement.systempowerstate
|
|
468
566
|
com.apple.powermanagement.systemsleeppreventers
|
|
567
|
+
com.apple.powerui.mclstatuschanged
|
|
469
568
|
com.apple.powerui.requiredFullCharge
|
|
470
569
|
com.apple.powerui.smartcharge
|
|
471
570
|
com.apple.private.SensorKit.pedometer.stridecalibration
|
|
571
|
+
com.apple.private.restrict-post.MobileBackup.backgroundCellularAccessChanged
|
|
572
|
+
com.apple.private.restrict-post.fmip.lostmode.enable
|
|
472
573
|
com.apple.proactive.PersonalizationPortrait.namedEntitiesInvalidated
|
|
473
574
|
com.apple.proactive.information.source.weather
|
|
474
575
|
com.apple.proactive.queries.clearData
|
|
@@ -477,14 +578,20 @@ com.apple.purplebuddy.setupdone
|
|
|
477
578
|
com.apple.purplebuddy.setupexited
|
|
478
579
|
com.apple.pushproxy.idslaunchnotification
|
|
479
580
|
com.apple.rapport.CompanionLinkDeviceAdded
|
|
581
|
+
com.apple.rapport.CompanionLinkDeviceRemoved
|
|
480
582
|
com.apple.rapport.prefsChanged
|
|
481
583
|
com.apple.remindd.nano_preferences_sync
|
|
584
|
+
com.apple.reminderkit.storeChanged
|
|
482
585
|
com.apple.remotemanagement.accountsChanged
|
|
586
|
+
com.apple.remotepairingdevice.host_paired
|
|
587
|
+
com.apple.replicatord.devicesChanged
|
|
588
|
+
com.apple.request.hipuncap
|
|
483
589
|
com.apple.sbd.kvstorechange
|
|
484
590
|
com.apple.screensharing.idslaunchnotification
|
|
485
591
|
com.apple.security.cloudkeychain.forceupdate
|
|
486
592
|
com.apple.security.cloudkeychainproxy.kvstorechange3
|
|
487
593
|
com.apple.security.itembackup
|
|
594
|
+
com.apple.security.kcsharing.groupsupdated
|
|
488
595
|
com.apple.security.octagon.joined-with-bottle
|
|
489
596
|
com.apple.security.octagon.peer-changed
|
|
490
597
|
com.apple.security.octagon.trust-status-change
|
|
@@ -495,13 +602,16 @@ com.apple.security.secureobjectsync.holdlock
|
|
|
495
602
|
com.apple.security.secureobjectsync.viewschanged
|
|
496
603
|
com.apple.security.view-change.PCS
|
|
497
604
|
com.apple.security.view-change.SE-PTC
|
|
605
|
+
com.apple.security.view-ready.Manatee
|
|
498
606
|
com.apple.security.view-ready.SE-PTC
|
|
499
607
|
com.apple.sessionagent.screenIsLocked
|
|
500
608
|
com.apple.sessionagent.screenIsUnlocked
|
|
609
|
+
com.apple.sharing.authentication.enabled-devices-changed
|
|
501
610
|
com.apple.shortcuts.daemon-wakeup-request
|
|
502
611
|
com.apple.shortcuts.runner-prewarm-request
|
|
503
612
|
com.apple.siri.ShortcutsCloudKitAccountAddedNotification
|
|
504
613
|
com.apple.siri.ShortcutsCloudKitAccountModifiedNotification
|
|
614
|
+
com.apple.siri.VoiceShortcuts.DataDidUpdateNotification
|
|
505
615
|
com.apple.siri.client.state.DynamiteClientState.siri_data_changed
|
|
506
616
|
com.apple.siri.cloud.storage.deleted
|
|
507
617
|
com.apple.siri.cloud.synch.changed
|
|
@@ -510,10 +620,23 @@ com.apple.siri.inference.audio-app-signals-update
|
|
|
510
620
|
com.apple.siri.koa.donate
|
|
511
621
|
com.apple.siri.power.PowerContextPolicy.updated
|
|
512
622
|
com.apple.siri.preheat.quiet
|
|
623
|
+
com.apple.siri.uaf.com.apple.MobileAsset.UAF.FM.Overrides
|
|
624
|
+
com.apple.siri.uaf.com.apple.MobileAsset.UAF.FM.Overrides.root
|
|
625
|
+
com.apple.siri.uaf.com.apple.MobileAsset.UAF.FM.Visual
|
|
626
|
+
com.apple.siri.uaf.com.apple.MobileAsset.UAF.Photos.MagicCleanup
|
|
627
|
+
com.apple.siri.uaf.com.apple.if.planner
|
|
628
|
+
com.apple.siri.uaf.com.apple.if.planner.overrides
|
|
629
|
+
com.apple.siri.uaf.com.apple.modelcatalog
|
|
630
|
+
com.apple.siri.uaf.com.apple.modelcatalog.root
|
|
631
|
+
com.apple.siri.uaf.com.apple.siri.understanding
|
|
632
|
+
com.apple.siri.uaf.com.apple.siri.understanding.nl.overrides
|
|
633
|
+
com.apple.siri.uaf.com.apple.speech.automaticspeechrecognition
|
|
634
|
+
com.apple.siri.uaf.com.apple.voiceassistant.perception
|
|
513
635
|
com.apple.siri.vocabulary.contacts_changed
|
|
514
636
|
com.apple.sleep.sync.SleepRecordDidChange
|
|
515
637
|
com.apple.sleep.sync.SleepScheduleDidChange
|
|
516
638
|
com.apple.sleep.sync.SleepSettingsDidChange
|
|
639
|
+
com.apple.sleepd.analytics
|
|
517
640
|
com.apple.sleepd.cloudkit.reset
|
|
518
641
|
com.apple.sleepd.diagnostics
|
|
519
642
|
com.apple.sleepd.ids.test
|
|
@@ -532,6 +655,7 @@ com.apple.softwareupdateservicesd.activity.installAlert
|
|
|
532
655
|
com.apple.softwareupdateservicesd.activity.presentBanner
|
|
533
656
|
com.apple.softwareupdateservicesd.activity.rollbackReboot
|
|
534
657
|
com.apple.softwareupdateservicesd.activity.splatAutoScan
|
|
658
|
+
com.apple.spatialphotosrelive.enablement.changed
|
|
535
659
|
com.apple.spotlight.SyndicatedContentDeleted
|
|
536
660
|
com.apple.spotlight.SyndicatedContentRefreshed
|
|
537
661
|
com.apple.spotlightui.prefschanged
|
|
@@ -545,8 +669,12 @@ com.apple.suggestions.settingsChanged
|
|
|
545
669
|
com.apple.symptoms.materialLinkQualityChange
|
|
546
670
|
com.apple.sysdiagnose.sysdiagnoseStarted
|
|
547
671
|
com.apple.sysdiagnose.sysdiagnoseStopped
|
|
672
|
+
com.apple.system.accpowersources.attach
|
|
673
|
+
com.apple.system.accpowersources.source
|
|
548
674
|
com.apple.system.clock_set
|
|
549
675
|
com.apple.system.config.network_change
|
|
676
|
+
com.apple.system.console_mode_changed
|
|
677
|
+
com.apple.system.earlythermalnotification
|
|
550
678
|
com.apple.system.hostname
|
|
551
679
|
com.apple.system.logging.power_button_notification
|
|
552
680
|
com.apple.system.loginwindow.desktopUp
|
|
@@ -554,9 +682,11 @@ com.apple.system.lowdiskspace.system
|
|
|
554
682
|
com.apple.system.lowpowermode
|
|
555
683
|
com.apple.system.lowpowermode.auto_disabled
|
|
556
684
|
com.apple.system.lowpowermode.first_time
|
|
685
|
+
com.apple.system.powermanagement.clamshellstate
|
|
557
686
|
com.apple.system.powermanagement.poweradapter
|
|
558
687
|
com.apple.system.powermanagement.useractivity2
|
|
559
688
|
com.apple.system.powermanagement.uservisiblepowerevent
|
|
689
|
+
com.apple.system.powersources.chargingiconography
|
|
560
690
|
com.apple.system.powersources.criticallevel
|
|
561
691
|
com.apple.system.powersources.percent
|
|
562
692
|
com.apple.system.powersources.source
|
|
@@ -569,10 +699,15 @@ com.apple.tcc.access.changed
|
|
|
569
699
|
com.apple.telephonyutilities.callservicesd.fakeincomingmessage
|
|
570
700
|
com.apple.telephonyutilities.callservicesd.fakeoutgoingmessage
|
|
571
701
|
com.apple.telephonyutilities.callservicesdaemon.voicemailcallended
|
|
702
|
+
com.apple.textunderstanding.pipeline.distributedDeletion
|
|
703
|
+
com.apple.textunderstanding.pipeline.distributedResults
|
|
572
704
|
com.apple.thermalmonitor.ageAwareMitigationsEnabled
|
|
573
705
|
com.apple.timezone.prefschanged
|
|
574
706
|
com.apple.timezonesync.idslaunchnotification
|
|
575
707
|
com.apple.touchsetupd.launch
|
|
708
|
+
com.apple.trial.NamespaceUpdate.COREOS_FAST_PREWARMING
|
|
709
|
+
com.apple.trial.NamespaceUpdate.COREOS_GMPOWER_VM_TUNING_PAGE_SHORTAGE_THRESHOLDS
|
|
710
|
+
com.apple.trial.NamespaceUpdate.COREOS_VM_OBJECT_COPY_DELAYED_NO_WAIT
|
|
576
711
|
com.apple.trial.NamespaceUpdate.FREEZER_POLICIES
|
|
577
712
|
com.apple.trial.NamespaceUpdate.NETWORK_SERVICE_PROXY_CONFIG_UPDATE
|
|
578
713
|
com.apple.trial.NamespaceUpdate.SIRI_DICTATION_ASSETS
|
|
@@ -581,6 +716,7 @@ com.apple.trial.NamespaceUpdate.SIRI_UNDERSTANDING_ASR_ASSISTANT
|
|
|
581
716
|
com.apple.trial.NamespaceUpdate.SIRI_UNDERSTANDING_ATTENTION_ASSETS
|
|
582
717
|
com.apple.trial.NamespaceUpdate.SIRI_UNDERSTANDING_NL
|
|
583
718
|
com.apple.trial.NamespaceUpdate.SIRI_UNDERSTANDING_NL_OVERRIDES
|
|
719
|
+
com.apple.trial.NamespaceUpdate.STEEL_ROSE_CHECK_IN_COHORT
|
|
584
720
|
com.apple.trial.bmlt.activated
|
|
585
721
|
com.apple.triald.new-experiment
|
|
586
722
|
com.apple.triald.system.wake
|
|
@@ -589,6 +725,8 @@ com.apple.ttsasset.NewAssetNotification
|
|
|
589
725
|
com.apple.tv.TVWidgetExtension.Register
|
|
590
726
|
com.apple.tv.appRemoved
|
|
591
727
|
com.apple.tv.updateAppVisibility
|
|
728
|
+
com.apple.uarp.BTLEServer.personalizationNeeded
|
|
729
|
+
com.apple.uarp.UARPUpdaterServiceHID.personalizationNeeded
|
|
592
730
|
com.apple.videos.migrationCompleted
|
|
593
731
|
com.apple.voicemail.ReloadService
|
|
594
732
|
com.apple.voicemail.VVVerifierCheckpointDictionaryChanged
|
|
@@ -602,11 +740,17 @@ com.apple.voicetrigger.RemoteDarwin.EarlyDetect
|
|
|
602
740
|
com.apple.voicetrigger.XPCRestarted
|
|
603
741
|
com.apple.voicetrigger.enablePolicyChanged
|
|
604
742
|
com.apple.wcd.wake-up
|
|
743
|
+
com.apple.webinspectord.disabled
|
|
744
|
+
com.apple.webinspectord.enabled
|
|
605
745
|
com.apple.welcomekitinternalsettings.dismissed
|
|
606
746
|
com.apple.wirelessinsightsd.anonymity
|
|
607
747
|
com.apple.wirelessproximity.launch
|
|
748
|
+
com.vpg.managedassets.notify.iCloudSyncDown
|
|
749
|
+
com.vpg.managedassets.notify.iCloudSyncUp
|
|
608
750
|
dmf.policy.monitor.app
|
|
609
751
|
kAFPreferencesDidChangeDarwinNotification
|
|
752
|
+
kCFLocaleCurrentLocaleDidChangeNotification
|
|
753
|
+
kCTSMSCellBroadcastConfigChangedNotification
|
|
610
754
|
kCalBirthdayDefaultAlarmChangedNote
|
|
611
755
|
kCalEventOccurrenceCacheChangedNotification
|
|
612
756
|
kFZACAppBundleIdentifierLaunchNotification
|
pymobiledevice3/restore/asr.py
CHANGED
|
@@ -29,28 +29,28 @@ class ASRClient:
|
|
|
29
29
|
|
|
30
30
|
def __init__(self, udid: str) -> None:
|
|
31
31
|
self._udid: str = udid
|
|
32
|
-
self.logger = logging.getLogger(f
|
|
32
|
+
self.logger = logging.getLogger(f"{asyncio.current_task().get_name()}-{__name__}")
|
|
33
33
|
self.service: typing.Optional[ServiceConnection] = None
|
|
34
34
|
self.checksum_chunks: bool = False
|
|
35
35
|
|
|
36
36
|
async def connect(self, port: int = DEFAULT_ASR_SYNC_PORT) -> None:
|
|
37
|
-
self.service = ServiceConnection.create_using_usbmux(self._udid, port, connection_type=
|
|
37
|
+
self.service = ServiceConnection.create_using_usbmux(self._udid, port, connection_type="USB")
|
|
38
38
|
await self.service.aio_start()
|
|
39
39
|
|
|
40
40
|
# receive Initiate command message
|
|
41
41
|
data = await self.recv_plist()
|
|
42
|
-
self.logger.debug(f
|
|
42
|
+
self.logger.debug(f"got command: {data}")
|
|
43
43
|
|
|
44
|
-
command = data.get(
|
|
45
|
-
if command !=
|
|
46
|
-
raise PyMobileDevice3Exception(f
|
|
44
|
+
command = data.get("Command")
|
|
45
|
+
if command != "Initiate":
|
|
46
|
+
raise PyMobileDevice3Exception(f"invalid command received: {command}")
|
|
47
47
|
|
|
48
|
-
self.checksum_chunks = data.get(
|
|
49
|
-
self.logger.debug(f
|
|
48
|
+
self.checksum_chunks = data.get("Checksum Chunks", False)
|
|
49
|
+
self.logger.debug(f"Checksum Chunks: {self.checksum_chunks}")
|
|
50
50
|
|
|
51
51
|
async def recv_plist(self) -> dict:
|
|
52
|
-
buf = b
|
|
53
|
-
while not buf.endswith(b
|
|
52
|
+
buf = b""
|
|
53
|
+
while not buf.endswith(b"</plist>\n"):
|
|
54
54
|
buf += await self.service.aio_recvall(1)
|
|
55
55
|
return plistlib.loads(buf)
|
|
56
56
|
|
|
@@ -62,8 +62,8 @@ class ASRClient:
|
|
|
62
62
|
await self.service.aio_sendall(buf)
|
|
63
63
|
|
|
64
64
|
async def handle_oob_data_request(self, packet: dict, filesystem: typing.IO):
|
|
65
|
-
oob_length = packet[
|
|
66
|
-
oob_offset = packet[
|
|
65
|
+
oob_length = packet["OOB Length"]
|
|
66
|
+
oob_offset = packet["OOB Offset"]
|
|
67
67
|
filesystem.seek(oob_offset, os.SEEK_SET)
|
|
68
68
|
|
|
69
69
|
oob_data = filesystem.read(oob_length)
|
|
@@ -77,36 +77,36 @@ class ASRClient:
|
|
|
77
77
|
filesystem.seek(0, os.SEEK_SET)
|
|
78
78
|
|
|
79
79
|
payload_info = {
|
|
80
|
-
|
|
81
|
-
|
|
80
|
+
"Port": 1,
|
|
81
|
+
"Size": length,
|
|
82
82
|
}
|
|
83
83
|
|
|
84
|
-
packet_info =
|
|
84
|
+
packet_info = {}
|
|
85
85
|
if self.checksum_chunks:
|
|
86
|
-
packet_info[
|
|
86
|
+
packet_info["Checksum Chunk Size"] = ASR_CHECKSUM_CHUNK_SIZE
|
|
87
87
|
|
|
88
|
-
packet_info[
|
|
89
|
-
packet_info[
|
|
90
|
-
packet_info[
|
|
91
|
-
packet_info[
|
|
92
|
-
packet_info[
|
|
93
|
-
packet_info[
|
|
88
|
+
packet_info["FEC Slice Stride"] = ASR_FEC_SLICE_STRIDE
|
|
89
|
+
packet_info["Packet Payload Size"] = ASR_PAYLOAD_PACKET_SIZE
|
|
90
|
+
packet_info["Packets Per FEC"] = ASR_PACKETS_PER_FEC
|
|
91
|
+
packet_info["Payload"] = payload_info
|
|
92
|
+
packet_info["Stream ID"] = ASR_STREAM_ID
|
|
93
|
+
packet_info["Version"] = ASR_VERSION
|
|
94
94
|
|
|
95
95
|
await self.send_plist(packet_info)
|
|
96
96
|
|
|
97
97
|
while True:
|
|
98
98
|
packet = await self.recv_plist()
|
|
99
|
-
self.logger.debug(f
|
|
100
|
-
command = packet[
|
|
99
|
+
self.logger.debug(f"perform_validation: {packet}")
|
|
100
|
+
command = packet["Command"]
|
|
101
101
|
|
|
102
|
-
if command ==
|
|
102
|
+
if command == "Payload":
|
|
103
103
|
break
|
|
104
104
|
|
|
105
|
-
elif command ==
|
|
105
|
+
elif command == "OOBData":
|
|
106
106
|
await self.handle_oob_data_request(packet, filesystem)
|
|
107
107
|
|
|
108
108
|
else:
|
|
109
|
-
raise PyMobileDevice3Exception(f
|
|
109
|
+
raise PyMobileDevice3Exception(f"unknown packet: {packet}")
|
|
110
110
|
|
|
111
111
|
async def send_payload(self, filesystem: typing.IO) -> None:
|
|
112
112
|
filesystem.seek(0, os.SEEK_END)
|