apple-data 1.0.419 → 1.0.423

Sign up to get free protection for your applications and to get access to all the features.
data/share/mach_o.yaml CHANGED
@@ -4,90 +4,76 @@ metadata:
4
4
  credits:
5
5
  cpu_types:
6
6
  file_types:
7
- MH_OBJECT:
8
- description: An intermediate object file that results from a compile unit (e.g. single .c file)
9
- value: 1
10
- MH_EXECUTE:
11
- description: A complete executable MachO file (typically a user mode binary)
12
- value: 2
13
- MH_FVMLIB:
14
- description: A FVM (fixed virtual memory, or non-relocatable/non-position independenct code PIC) dynamic library
15
- value: 3
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
16
14
  MH_CORE:
17
15
  description: A core dump (user or kernel)
18
16
  value: 4
19
- MH_PRELOAD:
20
- description: \"Preloaded\" images. Used for firmware payloads
21
- value: 5
17
+ MH_DSYM:
18
+ description: A compile unit containing only debugging symbols
19
+ value: 10
22
20
  MH_DYLIB:
23
21
  description: A dynamic (read bound at runtime) library
24
22
  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
25
28
  MH_DYLINKER:
26
29
  description: A dynamic linker (typically only one exists and is
27
30
  value: 7
28
- MH_BUNDLE:
29
- description: A loadable bundle (often essentially a plugin) should be a complete closure on symbols such as a
30
- executable but intended to be loaded into another process's virtual memory space. A reason for the usage of
31
- `MH_BUNDLE` is that the object must be explicitly late bound by calling `dlopen` or related APIs, it cannot
32
- be linked to as though it were a library.
33
- value: 8
34
- MH_DYLIB_STUB:
35
- description: An object used for linking that contains no content. Somewhat similar in nature to a `.tlb` file and
36
- no longer in common usage as Apple uses TLB files as a replacement.
37
- value: 9
38
- MH_DSYM:
39
- description: A compile unit containing only debugging symbols
40
- value: 10
41
- MH_KEXT_BUNDLE:
42
- description: A kernel extension bundle. Name comes from 32bit lineage where MH_BUNDLE were kexts.rake on non-64bit
43
- platforms
44
- value: 11
31
+ MH_EXECUTE:
32
+ description: A complete executable MachO file (typically a user mode binary)
33
+ value: 2
45
34
  MH_FILESET:
46
35
  description: A collection of other MachO files, used by KernelCollections
47
36
  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
48
52
  segments:
49
- __TEXT:
50
- description: The text region contains any executable code (in the machine code
51
- of the platform for this binary) and therefore will always be a read-only (write
52
- protected) region of memory when mapped into a process. (r-x)
53
- __text:
54
- description: Generic code region. This area will have the execute flag set
55
- on it's content
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
56
61
  __const:
57
- description: Constant variables. This region will be non-execute on platforms
58
- that support execute never, DEP or NX concepts. See `__DATA_CONST.__const`
59
- __cstring:
60
- description: ASCII strings null terminated. This region can be split on `\0`
61
- into strings.
62
- __os_log:
63
- description: Specific support for Apple OSLog facility containing the patterns
64
- used
65
- __eh_frame:
66
- description: Execption handling frame
67
- __stubs:
68
- description: Locations that text calls that initially point to a helper thunk (see __stub_helper) but will be
69
- late bound to the dynamic symbol
70
- __stub_helper:
71
- description: A helper function that when called binds the prior call site to the proper dyld import
72
- __info_plist:
73
- description:
74
- __unwind_info:
75
- description: Information to help debuggers / exception handlers unwind the stack (info about prolouge etc)
76
- allowing for parts of the stack to remain a compiler implementation detail.
77
- __auth_stubs:
78
- description:
79
- __init_offsets:
80
- description:
81
- __objc_methlist:
82
- description:
83
- __gcc_except_tab:
84
- description: GCC exception handler table
85
- __objc_classname:
86
- description: A collection of strings that provide the names for Objective-C classes in this object file
87
- __objc_methname:
88
- description: A colleciton of strings that provide the names of Objective-C methods for a given class (selectors)
89
- __objc_methtype:
62
+ description: Authenticated constants
63
+ __auth_got:
64
+ description: Authenticated Global offset Table
65
+ __cfstring:
66
+ description: Authenticated CoreFoundation strings
67
+ __auth_ptr:
90
68
  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
91
77
  __DATA:
92
78
  description: Mutable data region (rw-)
93
79
  __data:
@@ -154,30 +140,16 @@ segments:
154
140
  description:
155
141
  __objc_const:
156
142
  description: Constant ObjC data
157
- __KLDDATA:
158
- description: Data region for KLD or kernel linker
159
- __init:
160
- description:
161
- __init_entry_set:
162
- description:
163
- __cstring:
164
- description: C-Style (null terminated) strings for the kernel linker
165
- __const:
166
- description: Constant data
167
- __mod_init_func:
168
- description: Module initializer funtion
169
- __mod_term_func:
170
- description: Module termination function
171
- __bss:
172
- description: Initialized data
173
143
  __HIB:
174
- description: Hardware specific information for coming out of hibernation. This section is solely responsable for
175
- ensuring that the sleepimage is restored. Note that it all operates at the same protection levels (code, const,
176
- and data) and therefore doesn't take advantage of some hardware protections.
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.
177
148
  __text:
178
149
  description: Executable code used to pull a machine out of hibernation
179
150
  __bootPT:
180
- description: Initial page table for use during boot up from a hibernation for protected mode
151
+ description: Initial page table for use during boot up from a hibernation for
152
+ protected mode
181
153
  __desc:
182
154
  description:
183
155
  __data:
@@ -190,81 +162,127 @@ segments:
190
162
  description: Initialized mutable data
191
163
  __common:
192
164
  description:
193
- __VECTORS:
194
- description: Vector table. Often used to configure a kernel / coprocessor for reset, exception etc. See ARM-M
195
- profile for an example
196
- __recover:
197
- description:
198
165
  __KLD:
199
- description: The kernel linker (used to dynamiclly bind a kernel extension) analagous to dyld in user-mode
166
+ description: The kernel linker (used to dynamiclly bind a kernel extension) analagous
167
+ to dyld in user-mode
200
168
  __text:
201
169
  description: The executable code for the kernel linker
202
- __LASTDATA_CONST:
203
- description: Last exported symbol from the const region of the kernel or object
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
204
180
  __mod_init_func:
205
- description: Module initialization function
181
+ description: Module initializer funtion
182
+ __mod_term_func:
183
+ description: Module termination function
184
+ __bss:
185
+ description: Initialized data
206
186
  __LAST:
207
187
  description: Segment that contains the last kernel symbol exported
208
188
  __last:
209
- description: Contains `_last_kernel_symbol` which is the last exported kernel symbol
210
- __PRELINK_TEXT:
211
- description: A region of executable code that is the combination of multiple linkable objects having been prebound
212
- __text:
213
- description: The prelinked, executable code region
189
+ description: Contains `_last_kernel_symbol` which is the last exported kernel
190
+ symbol
191
+ __LASTDATA_CONST:
192
+ description: Last exported symbol from the const region of the kernel or object
193
+ __mod_init_func:
194
+ 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.
214
213
  __PRELINK_INFO:
215
214
  description: Descriptive information about the prelinked region of this object
216
215
  __info:
217
216
  description:
218
- __LINKINFO:
219
- description:
220
- __symbolsets:
217
+ __PRELINK_TEXT:
218
+ description: A region of executable code that is the combination of multiple linkable
219
+ objects having been prebound
220
+ __text:
221
+ 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:
257
+ 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:
221
267
  description:
222
- __CTF:
223
- description: Compact C Type Format
224
- __ctf:
225
- description: https://github.com/apple-oss-distributions/dtrace/tree/main/tools/ctfconvert
226
- __LINKEDIT:
227
- description: Though named "LINKEDIT" this segment actually contains any metadata of this Mach-O object. For example
228
- this area contains code signature, as well as dynamic linker opcodes. This area is always read only. The
229
- contents of this area are described by various `LC_` load commands.
230
268
  __TEXT_EXEC:
231
269
  description:
232
- __PAGEZERO:
233
- description: A dummy page used to mark addresses at low memory as not readable. This causes a dereference of a low
234
- integer to cause a page fault helping not propogate type errors when casting pointers.
235
- __AUTH_CONST:
236
- description: Used by arm64e pointer authentication codes (PAC) and read only
237
- __const:
238
- description: Authenticated constants
239
- __auth_got:
240
- description: Authenticated Global offset Table
241
- __cfstring:
242
- description: Authenticated CoreFoundation strings
243
- __auth_ptr:
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:
244
274
  description:
245
- __objc_const:
246
- description: Authenticated Objective-C constant values
247
- __got:
248
- description: Global offset Table
249
- __AUTH:
250
- description: Used by arm64e for pointer authenticaton codes (PAC) mutable data
251
- __data:
252
- description: General purpose PAC authenticated data
253
- __objc_data:
254
- description: ObjC specific PAC authenticated data
255
- __OBJC_CONST:
256
- description: A region of Objective-C metadata that is read-only
257
- __objc_class_ro:
258
- description: ObjC class info that is read-only to prevent runtime tampering (swizzling for example)
259
275
  commands:
260
276
  LC_SEGMENT:
261
- description: Causes the loading of a 32bit segment with a given protection level. Contains 0 or more sections
277
+ description: Causes the loading of a 32bit segment with a given protection level. Contains
278
+ 0 or more sections
262
279
  value: 1
263
280
  LC_SYMTAB:
264
281
  description: Classical symbol table (direct symbols defined in this object)
265
282
  value: 2
266
283
  LC_SYMSEG:
267
- description: Classical GCC compatible "symbol segment". Not commonly used as it is replaced with dyld opcodes.
284
+ description: Classical GCC compatible "symbol segment". Not commonly used as
285
+ it is replaced with dyld opcodes.
268
286
  value: 3
269
287
  LC_THREAD:
270
288
  description: Initial state of the Mach thread for a executable Mach-O
@@ -291,31 +309,35 @@ commands:
291
309
  description: Dynamic or indirect symbol table.
292
310
  value: 11
293
311
  LC_LOAD_DYLIB:
294
- description: Load a dynamic library (dylib) by it's identity. This occurs before process start.
312
+ description: Load a dynamic library (dylib) by it's identity. This occurs before
313
+ process start.
295
314
  value: 12
296
315
  LC_ID_DYLIB:
297
- description: Unique identifier for this dynamic library to be used in locating it for import
316
+ description: Unique identifier for this dynamic library to be used in locating
317
+ it for import
298
318
  value: 13
299
319
  LC_LOAD_DYLINKER:
300
- description: Command to load a specific dynamic linker to bind dylibs into this object
320
+ description: Command to load a specific dynamic linker to bind dylibs into this
321
+ object
301
322
  value: 14
302
323
  LC_ID_DYLINKER:
303
- description: The identity of the dynamic linker (dyld) expected to be used to bind this object in memory
324
+ description: The identity of the dynamic linker (dyld) expected to be used to
325
+ bind this object in memory
304
326
  value: 15
305
327
  LC_PREBOUND_DYLIB:
306
328
  description:
307
329
  value: 16
308
330
  LC_ROUTINES:
309
- description: Used to define initialize / finalize functions on 32bit platforms. Historical as _init_func/_term_func
310
- are now how this is handled.
331
+ description: Used to define initialize / finalize functions on 32bit platforms. Historical
332
+ as _init_func/_term_func are now how this is handled.
311
333
  value: 17
312
334
  LC_SUB_FRAMEWORK:
313
- description: Used by "Umbrella Frameworks" to declare the frameworks that the umbrella re-exports. For an example
314
- see Cocoa, AppKit and Foundation
335
+ description: Used by "Umbrella Frameworks" to declare the frameworks that the
336
+ umbrella re-exports. For an example see Cocoa, AppKit and Foundation
315
337
  value: 18
316
338
  LC_SUB_UMBRELLA:
317
- description: Used by "Umbrella Frameworks" that re-export other frameworks (Cocoa exports Foundation, AppKit for
318
- example of this)
339
+ description: Used by "Umbrella Frameworks" that re-export other frameworks (Cocoa
340
+ exports Foundation, AppKit for example of this)
319
341
  value: 19
320
342
  LC_SUB_CLIENT:
321
343
  description:
@@ -324,25 +346,29 @@ commands:
324
346
  description:
325
347
  value: 21
326
348
  LC_TWOLEVEL_HINTS:
327
- description: Two level namespacing allows for the binding to a symbol that may have the same name in two different
328
- libraries. The first namespace is the dylib contining the symbol and the second namespace is the symbol itself.
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.
329
352
  value: 22
330
353
  LC_PREBIND_CKSUM:
331
- description: Checksum data to know if this "optimized" or prebound object is still valid for the files it was
332
- generated from.
354
+ description: Checksum data to know if this "optimized" or prebound object is still
355
+ valid for the files it was generated from.
333
356
  value: 23
334
357
  LC_LOAD_WEAK_DYLIB:
335
- description: Attempt to load a Dylib but do not fail if binding cannot occur due to its absence
358
+ description: Attempt to load a Dylib but do not fail if binding cannot occur due
359
+ to its absence
336
360
  value: 2147483672
337
361
  LC_SEGMENT_64:
338
- description: Causes the loading of a 64bit segment with a given protection level. Contains 0 or more sections
362
+ description: Causes the loading of a 64bit segment with a given protection level. Contains
363
+ 0 or more sections
339
364
  value: 25
340
365
  LC_ROUTINES_64:
341
- description: Used to define initialize / finalize functions on 64bit platforms. Historical as _init_func/_term_func
342
- are now how this is handled.
366
+ description: Used to define initialize / finalize functions on 64bit platforms. Historical
367
+ as _init_func/_term_func are now how this is handled.
343
368
  value: 26
344
369
  LC_UUID:
345
- description: A UUID (GUID) that uniquely identifies this object. Should only occur once
370
+ description: A UUID (GUID) that uniquely identifies this object. Should only
371
+ occur once
346
372
  value: 27
347
373
  LC_RPATH:
348
374
  description:
@@ -357,11 +383,12 @@ commands:
357
383
  description: Used to export symbols from an object file that this object imported
358
384
  value: 2147483679
359
385
  LC_LAZY_LOAD_DYLIB:
360
- description: Dylibs that should be included in this objects dependencies but should only be loaded and bound when
361
- a reference is made to them
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
362
388
  value: 32
363
389
  LC_ENCRYPTION_INFO:
364
- description: Used by FairPlay / DSMOS to protect a binary from dump / reverse engineering (DRM, be mindful of DMCA)
390
+ description: Used by FairPlay / DSMOS to protect a binary from dump / reverse
391
+ engineering (DRM, be mindful of DMCA)
365
392
  value: 33
366
393
  LC_DYLD_INFO:
367
394
  description:
@@ -394,11 +421,12 @@ commands:
394
421
  description: The verion of source code this Mach-O file was built from
395
422
  value: 42
396
423
  LC_DYLIB_CODE_SIGN_DRS:
397
- description: Classical code signing "designated requirements". No longer in common usage as this is now in a
398
- LC_CODE_SIGNATURE "magic page"
424
+ description: Classical code signing "designated requirements". No longer in common
425
+ usage as this is now in a LC_CODE_SIGNATURE "magic page"
399
426
  value: 43
400
427
  LC_ENCRYPTION_INFO_64:
401
- description: Used by FairPlay / DSMOS to protect a binary from dump / reverse engineering (DRM, be mindful of DMCA)
428
+ description: Used by FairPlay / DSMOS to protect a binary from dump / reverse
429
+ engineering (DRM, be mindful of DMCA)
402
430
  value: 44
403
431
  LC_LINKER_OPTION:
404
432
  description:
@@ -413,11 +441,12 @@ commands:
413
441
  description: The minimum watchOS to laod and execute this binary
414
442
  value: 48
415
443
  LC_NOTE:
416
- description: An arbitrary human readable text note included in this Mach-O. These should not be used by automated
417
- tooling as their unstructured
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
418
446
  value: 49
419
447
  LC_BUILD_VERSION:
420
- description: Contains information about the binaries platform, it's target and minimum SDK
448
+ description: Contains information about the binaries platform, it's target and
449
+ minimum SDK
421
450
  value: 50
422
451
  LC_DYLD_EXPORTS_TRIE:
423
452
  description: The exporeted DYLD symbols from this dylib
@@ -426,6 +455,6 @@ commands:
426
455
  description:
427
456
  value: 2147483700
428
457
  LC_FILESET_ENTRY:
429
- description: An entry of a Mach-O object containing other Mach-O files. Current usage is in macOS
430
- 11+ KernelCollections
458
+ description: An entry of a Mach-O object containing other Mach-O files. Current
459
+ usage is in macOS 11+ KernelCollections
431
460
  value: 2147483701
data/share/nvram.yaml CHANGED
@@ -199,8 +199,8 @@ nvram_variables:
199
199
  - common
200
200
  fmm-mobileme-token-FMM:
201
201
  fmm-mobileme-token-FMM-BridgeHasAccount:
202
- description: If this value is true FMM is handled by the T2 coprocessor. This is
203
- always false on Apple Silicon as there is no bridgeOS device
202
+ description: If this value is true FMM is handled by the T2 coprocessor. This
203
+ is always false on Apple Silicon as there is no bridgeOS device
204
204
  type: boolean
205
205
  platforms:
206
206
  - macOS
data/share/pmu.yaml CHANGED
@@ -3,11 +3,11 @@ metadata:
3
3
  description:
4
4
  credits:
5
5
  pmu_errors:
6
- btn_shdn:
7
6
  btn_rst:
8
7
  subtypes:
9
8
  two_finger_rst:
10
9
  btn_seq_reset:
10
+ btn_shdn:
11
11
  crash:
12
12
  subtypes:
13
13
  crash_in:
@@ -15,27 +15,31 @@ pmu_errors:
15
15
  description: debug based reset
16
16
  subtypes:
17
17
  reset_in_2:
18
+ ntc_shdn:
19
+ ot:
20
+ description: over-temprature
21
+ subtypes:
22
+ overtemp:
23
+ otp_crc:
24
+ description: one-type-passcode, cyclic redundancy check
25
+ ov:
26
+ description: over-voltage
27
+ subtypes:
28
+ vddmain_ovlo:
29
+ por:
30
+ description: power-on reset
18
31
  rst:
19
32
  description: reset
20
- wdog:
21
- description: watchdog timer
22
- subtypes:
23
- reset_in_1:
24
33
  sochot:
25
34
  subtypes:
26
35
  reset_in_3:
36
+ spmi:
37
+ subtypes:
38
+ spmi_fault:
27
39
  sstate:
28
40
  subtypes:
29
41
  wallet_crash_seq:
30
42
  btn_dfu_recover:
31
- por:
32
- description: power-on reset
33
- otp_crc:
34
- description: one-type-passcode, cyclic redundancy check
35
- ot:
36
- description: over-temprature
37
- subtypes:
38
- overtemp:
39
43
  timeout:
40
44
  subytpes:
41
45
  watchdog_timeout:
@@ -46,14 +50,7 @@ pmu_errors:
46
50
  vddmain_uvlo:
47
51
  vddmain_uvlo_hold:
48
52
  vdd_boost_uvlo:
49
- ov:
50
- description: over-voltage
51
- subtypes:
52
- vddmain_ovlo:
53
-
54
-
55
- spmi:
53
+ wdog:
54
+ description: watchdog timer
56
55
  subtypes:
57
- spmi_fault:
58
-
59
- ntc_shdn:
56
+ reset_in_1:
data/share/services.yaml CHANGED
@@ -206,8 +206,8 @@ launchd_services:
206
206
  com.apple.facebook.xpc:
207
207
  description: Facebook account handler
208
208
  com.apple.fairplay.H2:
209
- description: FairPlay is the DRM (digital rights management) system for Apple -
210
- research in this area is dangorous
209
+ description: FairPlay is the DRM (digital rights management) system for Apple
210
+ - research in this area is dangorous
211
211
  danger: true
212
212
  com.apple.familycircled:
213
213
  description: iCloud Family Management
@@ -266,8 +266,8 @@ launchd_services:
266
266
  com.apple.icloud.fmflocatord:
267
267
  description: Find my friends
268
268
  com.apple.icloud.searchpartyd:
269
- description: The searching component looking for offline devices broadcasging for
270
- FindMy and sending to Apple
269
+ description: The searching component looking for offline devices broadcasging
270
+ for FindMy and sending to Apple
271
271
  com.apple.iconservices.iconservicesagent:
272
272
  com.apple.idamd:
273
273
  binary: "/usr/libexec/idamd"
@@ -432,12 +432,12 @@ launchd_services:
432
432
  com.apple.pipelined:
433
433
  com.apple.pluginkit.pkd:
434
434
  binary: "/usr/libexec/pkd"
435
- description: pkd manages plug-ins for the PlugInKit subsystem. It is a classic launch
436
- agent managed by launchd.
435
+ description: pkd manages plug-ins for the PlugInKit subsystem. It is a classic
436
+ launch agent managed by launchd.
437
437
  platforms:
438
- - macOS Intel
438
+ - macOS Intel
439
439
  endpoints:
440
- - com.apple.pluginkit.pkd
440
+ - com.apple.pluginkit.pkd
441
441
  com.apple.pluginkit.pkreporter:
442
442
  com.apple.PointerUI.pointeruid:
443
443
  com.apple.powerd:
@@ -485,7 +485,7 @@ launchd_services:
485
485
  com.apple.safarifetcherd:
486
486
  com.apple.SCHelper:
487
487
  platforms:
488
- - macOS
488
+ - macOS
489
489
  description: Smart Card helper
490
490
  com.apple.screensharingserver:
491
491
  description: AirPlay