apple-data 1.0.1 → 1.0.388

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.
Files changed (85) hide show
  1. checksums.yaml +4 -4
  2. data/lib/apple_data/boot_args.rb +0 -1
  3. data/lib/apple_data/fdr.rb +0 -1
  4. data/lib/apple_data/ioreg.rb +0 -1
  5. data/lib/apple_data/lockdown.rb +0 -1
  6. data/lib/apple_data/macho.rb +0 -1
  7. data/lib/apple_data/version.rb +1 -1
  8. data/lib/apple_data.rb +0 -1
  9. data/share/4cc.yaml +293 -297
  10. data/share/apns.yaml +364 -367
  11. data/share/backup.yaml +44 -47
  12. data/share/baseband.yaml +1 -290
  13. data/share/bluetooth.yaml +71 -75
  14. data/share/boot_args.yaml +855 -863
  15. data/share/bridgeos.yaml +131 -174
  16. data/share/bundles.yaml +60 -56
  17. data/share/cores.yaml +68 -33
  18. data/share/dnssd.yaml +166 -171
  19. data/share/fdr.yaml +148 -150
  20. data/share/homekit.yaml +14 -14
  21. data/share/icloud.yaml +8 -11
  22. data/share/img4.yaml +453 -454
  23. data/share/ioreg.yaml +5642 -5647
  24. data/share/ipsw.yaml +1099 -51505
  25. data/share/kext.yaml +1718 -3491
  26. data/share/lightning.yaml +23 -26
  27. data/share/lockdownd.yaml +71 -74
  28. data/share/mach_o.yaml +172 -204
  29. data/share/mobile_assets.yaml +127 -113
  30. data/share/mobile_gestalt.yaml +2444 -2447
  31. data/share/nvram.yaml +441 -463
  32. data/share/ota.yaml +1 -4
  33. data/share/pki.yaml +99 -103
  34. data/share/platforms.yaml +31 -35
  35. data/share/pmu.yaml +26 -52
  36. data/share/registers.yaml +1603 -1579
  37. data/share/resources.yaml +198 -202
  38. data/share/sep.yaml +206 -210
  39. data/share/services.yaml +636 -641
  40. data/share/syscfg.yaml +1 -4
  41. metadata +2 -46
  42. data/lib/apple_data/ipsw.rb +0 -25
  43. data/lib/apple_data/keybag.rb +0 -56
  44. data/share/baseband/qualcomm/mav13.yaml +0 -26
  45. data/share/baseband/qualcomm/mav20.yaml +0 -45
  46. data/share/baseband/qualcomm/mav21.yaml +0 -254
  47. data/share/coprocessor.yaml +0 -64
  48. data/share/debug.yaml +0 -13
  49. data/share/defaults.yaml +0 -5
  50. data/share/entitlements.yaml +0 -10391
  51. data/share/environment_variables.yaml +0 -354
  52. data/share/esim.yaml +0 -7
  53. data/share/firmware.yaml +0 -1310
  54. data/share/iboot.yaml +0 -143
  55. data/share/keybags/7000.yaml +0 -44342
  56. data/share/keybags/7001.yaml +0 -19430
  57. data/share/keybags/7002.yaml +0 -292
  58. data/share/keybags/8000.yaml +0 -82065
  59. data/share/keybags/8001.yaml +0 -29655
  60. data/share/keybags/8004.yaml +0 -295
  61. data/share/keybags/8006.yaml +0 -65
  62. data/share/keybags/8010.yaml +0 -23899
  63. data/share/keybags/8011.yaml +0 -4409
  64. data/share/keybags/8015.yaml +0 -23626
  65. data/share/keybags/8020.yaml +0 -4488
  66. data/share/keybags/8027.yaml +0 -43
  67. data/share/keybags/8030.yaml +0 -8687
  68. data/share/keybags/8101.yaml +0 -8595
  69. data/share/keybags/8720.yaml +0 -2026
  70. data/share/keybags/8900.yaml +0 -2344
  71. data/share/keybags/8920.yaml +0 -6761
  72. data/share/keybags/8922.yaml +0 -3141
  73. data/share/keybags/8930.yaml +0 -20583
  74. data/share/keybags/8940.yaml +0 -36319
  75. data/share/keybags/8942.yaml +0 -17343
  76. data/share/keybags/8945.yaml +0 -23360
  77. data/share/keybags/8947.yaml +0 -1384
  78. data/share/keybags/8950.yaml +0 -16258
  79. data/share/keybags/8955.yaml +0 -52163
  80. data/share/keybags/8960.yaml +0 -49499
  81. data/share/keys.yaml +0 -56
  82. data/share/sip.yaml +0 -64
  83. data/share/smc.yaml +0 -7
  84. data/share/tipw_sync.yaml +0 -79103
  85. data/share/vmapple.yaml +0 -35
data/share/mach_o.yaml CHANGED
@@ -1,79 +1,90 @@
1
1
  ---
2
- metadata:
3
- description:
4
- credits:
5
2
  cpu_types:
6
3
  file_types:
7
- MH_BUNDLE:
8
- description: A loadable bundle (often essentially a plugin) should be a complete
9
- closure on symbols such as a executable but intended to be loaded into another
10
- process's virtual memory space. A reason for the usage of `MH_BUNDLE` is that
11
- the object must be explicitly late bound by calling `dlopen` or related APIs,
12
- it cannot be linked to as though it were a library.
13
- value: 8
4
+ MH_OBJECT:
5
+ description: An intermediate object file that results from a compile unit (e.g. single .c file)
6
+ value: 1
7
+ MH_EXECUTE:
8
+ description: A complete executable MachO file (typically a user mode binary)
9
+ value: 2
10
+ MH_FVMLIB:
11
+ description: A FVM (fixed virtual memory, or non-relocatable/non-position independenct code PIC) dynamic library
12
+ value: 3
14
13
  MH_CORE:
15
14
  description: A core dump (user or kernel)
16
15
  value: 4
17
- MH_DSYM:
18
- description: A compile unit containing only debugging symbols
19
- value: 10
16
+ MH_PRELOAD:
17
+ description: \"Preloaded\" images. Used for firmware payloads
18
+ value: 5
20
19
  MH_DYLIB:
21
20
  description: A dynamic (read bound at runtime) library
22
21
  value: 6
23
- MH_DYLIB_STUB:
24
- description: An object used for linking that contains no content. Somewhat similar
25
- in nature to a `.tlb` file and no longer in common usage as Apple uses TLB files
26
- as a replacement.
27
- value: 9
28
22
  MH_DYLINKER:
29
23
  description: A dynamic linker (typically only one exists and is
30
24
  value: 7
31
- MH_EXECUTE:
32
- description: A complete executable MachO file (typically a user mode binary)
33
- value: 2
25
+ MH_BUNDLE:
26
+ description: A loadable bundle (often essentially a plugin) should be a complete closure on symbols such as a
27
+ executable but intended to be loaded into another process's virtual memory space. A reason for the usage of
28
+ `MH_BUNDLE` is that the object must be explicitly late bound by calling `dlopen` or related APIs, it cannot
29
+ be linked to as though it were a library.
30
+ value: 8
31
+ MH_DYLIB_STUB:
32
+ description: An object used for linking that contains no content. Somewhat similar in nature to a `.tlb` file and
33
+ no longer in common usage as Apple uses TLB files as a replacement.
34
+ value: 9
35
+ MH_DSYM:
36
+ description: A compile unit containing only debugging symbols
37
+ value: 10
38
+ MH_KEXT_BUNDLE:
39
+ description: A kernel extension bundle. Name comes from 32bit lineage where MH_BUNDLE were kexts on non-64bit
40
+ platforms
41
+ value: 11
34
42
  MH_FILESET:
35
43
  description: A collection of other MachO files, used by KernelCollections
36
44
  value: 12
37
- MH_FVMLIB:
38
- description: A FVM (fixed virtual memory, or non-relocatable/non-position independenct
39
- code PIC) dynamic library
40
- value: 3
41
- MH_KEXT_BUNDLE:
42
- description: A kernel extension bundle. Name comes from 32bit lineage where MH_BUNDLE
43
- were kexts.rake on non-64bit platforms
44
- value: 11
45
- MH_OBJECT:
46
- description: An intermediate object file that results from a compile unit (e.g.
47
- single .c file)
48
- value: 1
49
- MH_PRELOAD:
50
- description: \"Preloaded\" images. Used for firmware payloads
51
- value: 5
52
45
  segments:
53
- __AUTH:
54
- description: Used by arm64e for pointer authenticaton codes (PAC) mutable data
55
- __data:
56
- description: General purpose PAC authenticated data
57
- __objc_data:
58
- description: ObjC specific PAC authenticated data
59
- __AUTH_CONST:
60
- description: Used by arm64e pointer authentication codes (PAC) and read only
46
+ __TEXT:
47
+ description: The text region contains any executable code (in the machine code
48
+ of the platform for this binary) and therefore will always be a read-only (write
49
+ protected) region of memory when mapped into a process. (r-x)
50
+ __text:
51
+ description: Generic code region. This area will have the execute flag set
52
+ on it's content
61
53
  __const:
62
- description: Authenticated constants
63
- __auth_got:
64
- description: Authenticated Global offset Table
65
- __cfstring:
66
- description: Authenticated CoreFoundation strings
67
- __auth_ptr:
54
+ description: Constant variables. This region will be non-execute on platforms
55
+ that support execute never, DEP or NX concepts. See `__DATA_CONST.__const`
56
+ __cstring:
57
+ description: ASCII strings null terminated. This region can be split on `\0`
58
+ into strings.
59
+ __os_log:
60
+ description: Specific support for Apple OSLog facility containing the patterns
61
+ used
62
+ __eh_frame:
63
+ description: Execption handling frame
64
+ __stubs:
65
+ description: Locations that text calls that initially point to a helper thunk (see __stub_helper) but will be
66
+ late bound to the dynamic symbol
67
+ __stub_helper:
68
+ description: A helper function that when called binds the prior call site to the proper dyld import
69
+ __info_plist:
70
+ description:
71
+ __unwind_info:
72
+ description: Information to help debuggers / exception handlers unwind the stack (info about prolouge etc)
73
+ allowing for parts of the stack to remain a compiler implementation detail.
74
+ __auth_stubs:
75
+ description:
76
+ __init_offsets:
77
+ description:
78
+ __objc_methlist:
79
+ description:
80
+ __gcc_except_tab:
81
+ description: GCC exception handler table
82
+ __objc_classname:
83
+ description: A collection of strings that provide the names for Objective-C classes in this object file
84
+ __objc_methname:
85
+ description: A colleciton of strings that provide the names of Objective-C methods for a given class (selectors)
86
+ __objc_methtype:
68
87
  description:
69
- __objc_const:
70
- description: Authenticated Objective-C constant values
71
- __got:
72
- description: Global offset Table
73
- __CTF:
74
- description: Compact C Type Format
75
- __ctf:
76
- description: https://github.com/apple-oss-distributions/dtrace/tree/main/tools/ctfconvert
77
88
  __DATA:
78
89
  description: Mutable data region (rw-)
79
90
  __data:
@@ -140,16 +151,30 @@ segments:
140
151
  description:
141
152
  __objc_const:
142
153
  description: Constant ObjC data
154
+ __KLDDATA:
155
+ description: Data region for KLD or kernel linker
156
+ __init:
157
+ description:
158
+ __init_entry_set:
159
+ description:
160
+ __cstring:
161
+ description: C-Style (null terminated) strings for the kernel linker
162
+ __const:
163
+ description: Constant data
164
+ __mod_init_func:
165
+ description: Module initializer funtion
166
+ __mod_term_func:
167
+ description: Module termination function
168
+ __bss:
169
+ description: Initialized data
143
170
  __HIB:
144
- description: Hardware specific information for coming out of hibernation. This
145
- section is solely responsable for ensuring that the sleepimage is restored. Note
146
- that it all operates at the same protection levels (code, const, and data) and
147
- therefore doesn't take advantage of some hardware protections.
171
+ description: Hardware specific information for coming out of hibernation. This section is solely responsable for
172
+ ensuring that the sleepimage is restored. Note that it all operates at the same protection levels (code, const,
173
+ and data) and therefore doesn't take advantage of some hardware protections.
148
174
  __text:
149
175
  description: Executable code used to pull a machine out of hibernation
150
176
  __bootPT:
151
- description: Initial page table for use during boot up from a hibernation for
152
- protected mode
177
+ description: Initial page table for use during boot up from a hibernation for protected mode
153
178
  __desc:
154
179
  description:
155
180
  __data:
@@ -162,127 +187,81 @@ segments:
162
187
  description: Initialized mutable data
163
188
  __common:
164
189
  description:
190
+ __VECTORS:
191
+ description: Vector table. Often used to configure a kernel / coprocessor for reset, exception etc. See ARM-M
192
+ profile for an example
193
+ __recover:
194
+ description:
165
195
  __KLD:
166
- description: The kernel linker (used to dynamiclly bind a kernel extension) analagous
167
- to dyld in user-mode
196
+ description: The kernel linker (used to dynamiclly bind a kernel extension) analagous to dyld in user-mode
168
197
  __text:
169
198
  description: The executable code for the kernel linker
170
- __KLDDATA:
171
- description: Data region for KLD or kernel linker
172
- __init:
173
- description:
174
- __init_entry_set:
175
- description:
176
- __cstring:
177
- description: C-Style (null terminated) strings for the kernel linker
178
- __const:
179
- description: Constant data
180
- __mod_init_func:
181
- description: Module initializer funtion
182
- __mod_term_func:
183
- description: Module termination function
184
- __bss:
185
- description: Initialized data
186
- __LAST:
187
- description: Segment that contains the last kernel symbol exported
188
- __last:
189
- description: Contains `_last_kernel_symbol` which is the last exported kernel
190
- symbol
191
199
  __LASTDATA_CONST:
192
200
  description: Last exported symbol from the const region of the kernel or object
193
201
  __mod_init_func:
194
202
  description: Module initialization function
195
- __LINKEDIT:
196
- description: Though named "LINKEDIT" this segment actually contains any metadata
197
- of this Mach-O object. For example this area contains code signature, as well
198
- as dynamic linker opcodes. This area is always read only. The contents of
199
- this area are described by various `LC_` load commands.
200
- __LINKINFO:
201
- description:
202
- __symbolsets:
203
- description:
204
- __OBJC_CONST:
205
- description: A region of Objective-C metadata that is read-only
206
- __objc_class_ro:
207
- description: ObjC class info that is read-only to prevent runtime tampering
208
- (swizzling for example)
209
- __PAGEZERO:
210
- description: A dummy page used to mark addresses at low memory as not readable. This
211
- causes a dereference of a low integer to cause a page fault helping not propogate
212
- type errors when casting pointers.
213
- __PRELINK_INFO:
214
- description: Descriptive information about the prelinked region of this object
215
- __info:
216
- description:
203
+ __LAST:
204
+ description: Segment that contains the last kernel symbol exported
205
+ __last:
206
+ description: Contains `_last_kernel_symbol` which is the last exported kernel symbol
217
207
  __PRELINK_TEXT:
218
- description: A region of executable code that is the combination of multiple linkable
219
- objects having been prebound
208
+ description: A region of executable code that is the combination of multiple linkable objects having been prebound
220
209
  __text:
221
210
  description: The prelinked, executable code region
222
- __TEXT:
223
- description: The text region contains any executable code (in the machine code
224
- of the platform for this binary) and therefore will always be a read-only (write
225
- protected) region of memory when mapped into a process. (r-x)
226
- __text:
227
- description: Generic code region. This area will have the execute flag set
228
- on it's content
229
- __const:
230
- description: Constant variables. This region will be non-execute on platforms
231
- that support execute never, DEP or NX concepts. See `__DATA_CONST.__const`
232
- __cstring:
233
- description: ASCII strings null terminated. This region can be split on `\0`
234
- into strings.
235
- __os_log:
236
- description: Specific support for Apple OSLog facility containing the patterns
237
- used
238
- __eh_frame:
239
- description: Execption handling frame
240
- __stubs:
241
- description: Locations that text calls that initially point to a helper thunk
242
- (see __stub_helper) but will be late bound to the dynamic symbol
243
- __stub_helper:
244
- description: A helper function that when called binds the prior call site to
245
- the proper dyld import
246
- __info_plist:
247
- description:
248
- __unwind_info:
249
- description: Information to help debuggers / exception handlers unwind the stack
250
- (info about prolouge etc) allowing for parts of the stack to remain a compiler
251
- implementation detail.
252
- __auth_stubs:
253
- description:
254
- __init_offsets:
255
- description:
256
- __objc_methlist:
211
+ __PRELINK_INFO:
212
+ description: Descriptive information about the prelinked region of this object
213
+ __info:
257
214
  description:
258
- __gcc_except_tab:
259
- description: GCC exception handler table
260
- __objc_classname:
261
- description: A collection of strings that provide the names for Objective-C
262
- classes in this object file
263
- __objc_methname:
264
- description: A colleciton of strings that provide the names of Objective-C methods
265
- for a given class (selectors)
266
- __objc_methtype:
215
+ __LINKINFO:
216
+ description:
217
+ __symbolsets:
267
218
  description:
219
+ __CTF:
220
+ description: Compact C Type Format
221
+ __ctf:
222
+ description: https://github.com/apple-oss-distributions/dtrace/tree/main/tools/ctfconvert
223
+ __LINKEDIT:
224
+ description: Though named "LINKEDIT" this segment actually contains any metadata of this Mach-O object. For example
225
+ this area contains code signature, as well as dynamic linker opcodes. This area is always read only. The
226
+ contents of this area are described by various `LC_` load commands.
268
227
  __TEXT_EXEC:
269
228
  description:
270
- __VECTORS:
271
- description: Vector table. Often used to configure a kernel / coprocessor for
272
- reset, exception etc. See ARM-M profile for an example
273
- __recover:
229
+ __PAGEZERO:
230
+ description: A dummy page used to mark addresses at low memory as not readable. This causes a dereference of a low
231
+ integer to cause a page fault helping not propogate type errors when casting pointers.
232
+ __AUTH_CONST:
233
+ description: Used by arm64e pointer authentication codes (PAC) and read only
234
+ __const:
235
+ description: Authenticated constants
236
+ __auth_got:
237
+ description: Authenticated Global offset Table
238
+ __cfstring:
239
+ description: Authenticated CoreFoundation strings
240
+ __auth_ptr:
274
241
  description:
242
+ __objc_const:
243
+ description: Authenticated Objective-C constant values
244
+ __got:
245
+ description: Global offset Table
246
+ __AUTH:
247
+ description: Used by arm64e for pointer authenticaton codes (PAC) mutable data
248
+ __data:
249
+ description: General purpose PAC authenticated data
250
+ __objc_data:
251
+ description: ObjC specific PAC authenticated data
252
+ __OBJC_CONST:
253
+ description: A region of Objective-C metadata that is read-only
254
+ __objc_class_ro:
255
+ description: ObjC class info that is read-only to prevent runtime tampering (swizzling for example)
275
256
  commands:
276
257
  LC_SEGMENT:
277
- description: Causes the loading of a 32bit segment with a given protection level. Contains
278
- 0 or more sections
258
+ description: Causes the loading of a 32bit segment with a given protection level. Contains 0 or more sections
279
259
  value: 1
280
260
  LC_SYMTAB:
281
261
  description: Classical symbol table (direct symbols defined in this object)
282
262
  value: 2
283
263
  LC_SYMSEG:
284
- description: Classical GCC compatible "symbol segment". Not commonly used as
285
- it is replaced with dyld opcodes.
264
+ description: Classical GCC compatible "symbol segment". Not commonly used as it is replaced with dyld opcodes.
286
265
  value: 3
287
266
  LC_THREAD:
288
267
  description: Initial state of the Mach thread for a executable Mach-O
@@ -309,35 +288,31 @@ commands:
309
288
  description: Dynamic or indirect symbol table.
310
289
  value: 11
311
290
  LC_LOAD_DYLIB:
312
- description: Load a dynamic library (dylib) by it's identity. This occurs before
313
- process start.
291
+ description: Load a dynamic library (dylib) by it's identity. This occurs before process start.
314
292
  value: 12
315
293
  LC_ID_DYLIB:
316
- description: Unique identifier for this dynamic library to be used in locating
317
- it for import
294
+ description: Unique identifier for this dynamic library to be used in locating it for import
318
295
  value: 13
319
296
  LC_LOAD_DYLINKER:
320
- description: Command to load a specific dynamic linker to bind dylibs into this
321
- object
297
+ description: Command to load a specific dynamic linker to bind dylibs into this object
322
298
  value: 14
323
299
  LC_ID_DYLINKER:
324
- description: The identity of the dynamic linker (dyld) expected to be used to
325
- bind this object in memory
300
+ description: The identity of the dynamic linker (dyld) expected to be used to bind this object in memory
326
301
  value: 15
327
302
  LC_PREBOUND_DYLIB:
328
303
  description:
329
304
  value: 16
330
305
  LC_ROUTINES:
331
- description: Used to define initialize / finalize functions on 32bit platforms. Historical
332
- as _init_func/_term_func are now how this is handled.
306
+ description: Used to define initialize / finalize functions on 32bit platforms. Historical as _init_func/_term_func
307
+ are now how this is handled.
333
308
  value: 17
334
309
  LC_SUB_FRAMEWORK:
335
- description: Used by "Umbrella Frameworks" to declare the frameworks that the
336
- umbrella re-exports. For an example see Cocoa, AppKit and Foundation
310
+ description: Used by "Umbrella Frameworks" to declare the frameworks that the umbrella re-exports. For an example
311
+ see Cocoa, AppKit and Foundation
337
312
  value: 18
338
313
  LC_SUB_UMBRELLA:
339
- description: Used by "Umbrella Frameworks" that re-export other frameworks (Cocoa
340
- exports Foundation, AppKit for example of this)
314
+ description: Used by "Umbrella Frameworks" that re-export other frameworks (Cocoa exports Foundation, AppKit for
315
+ example of this)
341
316
  value: 19
342
317
  LC_SUB_CLIENT:
343
318
  description:
@@ -346,29 +321,25 @@ commands:
346
321
  description:
347
322
  value: 21
348
323
  LC_TWOLEVEL_HINTS:
349
- description: Two level namespacing allows for the binding to a symbol that may
350
- have the same name in two different libraries. The first namespace is the dylib
351
- contining the symbol and the second namespace is the symbol itself.
324
+ description: Two level namespacing allows for the binding to a symbol that may have the same name in two different
325
+ libraries. The first namespace is the dylib contining the symbol and the second namespace is the symbol itself.
352
326
  value: 22
353
327
  LC_PREBIND_CKSUM:
354
- description: Checksum data to know if this "optimized" or prebound object is still
355
- valid for the files it was generated from.
328
+ description: Checksum data to know if this "optimized" or prebound object is still valid for the files it was
329
+ generated from.
356
330
  value: 23
357
331
  LC_LOAD_WEAK_DYLIB:
358
- description: Attempt to load a Dylib but do not fail if binding cannot occur due
359
- to its absence
332
+ description: Attempt to load a Dylib but do not fail if binding cannot occur due to its absence
360
333
  value: 2147483672
361
334
  LC_SEGMENT_64:
362
- description: Causes the loading of a 64bit segment with a given protection level. Contains
363
- 0 or more sections
335
+ description: Causes the loading of a 64bit segment with a given protection level. Contains 0 or more sections
364
336
  value: 25
365
337
  LC_ROUTINES_64:
366
- description: Used to define initialize / finalize functions on 64bit platforms. Historical
367
- as _init_func/_term_func are now how this is handled.
338
+ description: Used to define initialize / finalize functions on 64bit platforms. Historical as _init_func/_term_func
339
+ are now how this is handled.
368
340
  value: 26
369
341
  LC_UUID:
370
- description: A UUID (GUID) that uniquely identifies this object. Should only
371
- occur once
342
+ description: A UUID (GUID) that uniquely identifies this object. Should only occur once
372
343
  value: 27
373
344
  LC_RPATH:
374
345
  description:
@@ -383,12 +354,11 @@ commands:
383
354
  description: Used to export symbols from an object file that this object imported
384
355
  value: 2147483679
385
356
  LC_LAZY_LOAD_DYLIB:
386
- description: Dylibs that should be included in this objects dependencies but should
387
- only be loaded and bound when a reference is made to them
357
+ description: Dylibs that should be included in this objects dependencies but should only be loaded and bound when
358
+ a reference is made to them
388
359
  value: 32
389
360
  LC_ENCRYPTION_INFO:
390
- description: Used by FairPlay / DSMOS to protect a binary from dump / reverse
391
- engineering (DRM, be mindful of DMCA)
361
+ description: Used by FairPlay / DSMOS to protect a binary from dump / reverse engineering (DRM, be mindful of DMCA)
392
362
  value: 33
393
363
  LC_DYLD_INFO:
394
364
  description:
@@ -421,12 +391,11 @@ commands:
421
391
  description: The verion of source code this Mach-O file was built from
422
392
  value: 42
423
393
  LC_DYLIB_CODE_SIGN_DRS:
424
- description: Classical code signing "designated requirements". No longer in common
425
- usage as this is now in a LC_CODE_SIGNATURE "magic page"
394
+ description: Classical code signing "designated requirements". No longer in common usage as this is now in a
395
+ LC_CODE_SIGNATURE "magic page"
426
396
  value: 43
427
397
  LC_ENCRYPTION_INFO_64:
428
- description: Used by FairPlay / DSMOS to protect a binary from dump / reverse
429
- engineering (DRM, be mindful of DMCA)
398
+ description: Used by FairPlay / DSMOS to protect a binary from dump / reverse engineering (DRM, be mindful of DMCA)
430
399
  value: 44
431
400
  LC_LINKER_OPTION:
432
401
  description:
@@ -441,12 +410,11 @@ commands:
441
410
  description: The minimum watchOS to laod and execute this binary
442
411
  value: 48
443
412
  LC_NOTE:
444
- description: An arbitrary human readable text note included in this Mach-O. These
445
- should not be used by automated tooling as their unstructured
413
+ description: An arbitrary human readable text note included in this Mach-O. These should not be used by automated
414
+ tooling as their unstructured
446
415
  value: 49
447
416
  LC_BUILD_VERSION:
448
- description: Contains information about the binaries platform, it's target and
449
- minimum SDK
417
+ description: Contains information about the binaries platform, it's target and minimum SDK
450
418
  value: 50
451
419
  LC_DYLD_EXPORTS_TRIE:
452
420
  description: The exporeted DYLD symbols from this dylib
@@ -455,6 +423,6 @@ commands:
455
423
  description:
456
424
  value: 2147483700
457
425
  LC_FILESET_ENTRY:
458
- description: An entry of a Mach-O object containing other Mach-O files. Current
459
- usage is in macOS 11+ KernelCollections
426
+ description: An entry of a Mach-O object containing other Mach-O files. Current usage is in macOS
427
+ 11+ KernelCollections
460
428
  value: 2147483701