pymobiledevice3 4.21.8__py3-none-any.whl → 4.21.9__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.

Potentially problematic release.


This version of pymobiledevice3 might be problematic. Click here for more details.

@@ -17,5 +17,5 @@ __version__: str
17
17
  __version_tuple__: VERSION_TUPLE
18
18
  version_tuple: VERSION_TUPLE
19
19
 
20
- __version__ = version = '4.21.8'
21
- __version_tuple__ = version_tuple = (4, 21, 8)
20
+ __version__ = version = '4.21.9'
21
+ __version_tuple__ = version_tuple = (4, 21, 9)
@@ -56,7 +56,7 @@ class TSSResponse(dict):
56
56
 
57
57
  class TSSRequest:
58
58
  def __init__(self):
59
- self._request = {
59
+ self._request: dict[str, typing.Any] = {
60
60
  '@HostPlatformInfo': 'mac',
61
61
  '@VersionInfo': TSS_CLIENT_VERSION_STRING,
62
62
  '@UUID': str(uuid4()).upper(),
@@ -361,16 +361,21 @@ class TSSRequest:
361
361
  k = 'Ap,SikaFuse'
362
362
  self._request[k] = v
363
363
 
364
- uid_mode = parameters.get('UID_MODE', False)
364
+ uid_mode = parameters.get('UID_MODE')
365
365
 
366
366
  if 'NeRDEpoch' in parameters:
367
367
  self._request['PermitNeRDPivot'] = b''
368
368
 
369
- self._request['UID_MODE'] = uid_mode
369
+ if uid_mode is not None:
370
+ self._request['UID_MODE'] = uid_mode
370
371
  self._request['@ApImg4Ticket'] = True
371
372
  self._request['@BBTicket'] = True
372
373
 
373
374
  if parameters.get('RequiresUIDMode'):
375
+ # The logic here is missing why this value is expected to be 'false'
376
+ self._request['UID_MODE'] = False
377
+
378
+ # Workaround: We have only seen Ap,SikaFuse together with UID_MODE
374
379
  self._request['Ap,SikaFuse'] = 0
375
380
 
376
381
  def add_se_tags(self, parameters: dict, overrides=None):
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pymobiledevice3
3
- Version: 4.21.8
3
+ Version: 4.21.9
4
4
  Summary: Pure python3 implementation for working with iDevices (iPhone, etc...)
5
5
  Author-email: doronz88 <doron88@gmail.com>, matan <matan1008@gmail.com>
6
6
  Maintainer-email: doronz88 <doron88@gmail.com>, matan <matan1008@gmail.com>
@@ -8,7 +8,7 @@ misc/understanding_idevice_protocol_layers.md,sha256=8tEqRXWOUPoxOJLZVh7C7H9JGCh
8
8
  misc/usbmux_sniff.sh,sha256=iWtbucOEQ9_UEFXk9x-2VNt48Jg5zrPsnUbZ_LfZxwA,212
9
9
  pymobiledevice3/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  pymobiledevice3/__main__.py,sha256=nwUgfXBMii2MSXLUls2uMTG88uC13s4haPBM4LuGcaU,11530
11
- pymobiledevice3/_version.py,sha256=fN2o3W2zI_Gu2Ba3jnR9bIOjM9Nc67Zbt1_9YRVZe1s,513
11
+ pymobiledevice3/_version.py,sha256=swICO3_LgGCxc2_tgs6_Ul8fXh3Fpjj27a_mWws0wik,513
12
12
  pymobiledevice3/bonjour.py,sha256=FXa_x0Zdo6ims7N7F61hnnZEyn1tc2it3mQpHRMY0Kk,5560
13
13
  pymobiledevice3/ca.py,sha256=Ho0NaOtATe5hdruUSlVDRpfR9ltEYXjL3MoKwEvEJjw,2296
14
14
  pymobiledevice3/common.py,sha256=-PG6oaUkNFlB3jb7E0finMrX8wqhkS-cuTAfmLvZUmc,329
@@ -95,7 +95,7 @@ pymobiledevice3/restore/recovery.py,sha256=YB2wZST3uhQMO1DwewfHb2VdEb-gH8nW58RbT
95
95
  pymobiledevice3/restore/restore.py,sha256=GE86M79jd6nnd5GyY4ZLiEyhMKe0GxLTKe_bDcqtpJg,57479
96
96
  pymobiledevice3/restore/restore_options.py,sha256=qeh_wRa_bi0Ccl0p0JuX9EChEQBqwJt94EBImWcEJ3E,7255
97
97
  pymobiledevice3/restore/restored_client.py,sha256=h_yBZ_e1wfaIzi0f9-R8Ky2x6xFTkvDlpWIV561uxoU,3638
98
- pymobiledevice3/restore/tss.py,sha256=TzvA1_FVZSotHG_vZykKa8v9Ja8Som5zgMH7AY0wFis,29593
98
+ pymobiledevice3/restore/tss.py,sha256=egguhU3aVt8yWba-MFa2aoL999bn61kty8ON0QcTKoE,29853
99
99
  pymobiledevice3/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
100
100
  pymobiledevice3/services/accessibilityaudit.py,sha256=PtQujwFLL3E1OgOSUjkKHvgmk2e8Ij2XZIp8JicAphs,15547
101
101
  pymobiledevice3/services/afc.py,sha256=9Ddc0emUrwLPOi0DLy1MZ5w7zqotYNxBB2OU0WyIWsk,36244
@@ -164,9 +164,9 @@ pymobiledevice3/services/web_protocol/switch_to.py,sha256=hDddJUEePbRN-8xlllOeGh
164
164
  pymobiledevice3/tunneld/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
165
165
  pymobiledevice3/tunneld/api.py,sha256=EfGKXEWhsMSB__menPmRmL9R6dpazVJDUy7B3pn05MM,2357
166
166
  pymobiledevice3/tunneld/server.py,sha256=SvC57AV_R8YQhA0fCwGNUdhfy8TKMFWwL_fp_FmXrBI,22715
167
- pymobiledevice3-4.21.8.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
168
- pymobiledevice3-4.21.8.dist-info/METADATA,sha256=h_9eBcjfSZGl0bJX0v8IUvZ82Vqhei3jwImCKKWPRIM,17366
169
- pymobiledevice3-4.21.8.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
170
- pymobiledevice3-4.21.8.dist-info/entry_points.txt,sha256=jJMlOanHlVwUxcY__JwvKeWPrvBJr_wJyEq4oHIZNKE,66
171
- pymobiledevice3-4.21.8.dist-info/top_level.txt,sha256=MjZoRqcWPOh5banG-BbDOnKEfsS3kCxqV9cv-nzyg2Q,21
172
- pymobiledevice3-4.21.8.dist-info/RECORD,,
167
+ pymobiledevice3-4.21.9.dist-info/licenses/LICENSE,sha256=jOtLnuWt7d5Hsx6XXB2QxzrSe2sWWh3NgMfFRetluQM,35147
168
+ pymobiledevice3-4.21.9.dist-info/METADATA,sha256=IXo8ZFtOyRPWJ2GG72m_TJZ_p2Ws2wTpwcJhppkdcl0,17366
169
+ pymobiledevice3-4.21.9.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
170
+ pymobiledevice3-4.21.9.dist-info/entry_points.txt,sha256=jJMlOanHlVwUxcY__JwvKeWPrvBJr_wJyEq4oHIZNKE,66
171
+ pymobiledevice3-4.21.9.dist-info/top_level.txt,sha256=MjZoRqcWPOh5banG-BbDOnKEfsS3kCxqV9cv-nzyg2Q,21
172
+ pymobiledevice3-4.21.9.dist-info/RECORD,,