-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathdtfabric.yaml
67 lines (67 loc) · 1.25 KB
/
dtfabric.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
name: scca
type: format
description: Windows Prefetch File (PF) format
urls: ["https://github.com/libyal/libscca/blob/main/documentation/Windows%20Prefetch%20File%20(PF)%20format.asciidoc"]
metadata:
authors: ['Joachim Metz <[email protected]>']
year: 2011
attributes:
byte_order: little-endian
layout:
- data_type: file_header
offset: 0
---
name: byte
type: integer
attributes:
format: unsigned
size: 1
units: bytes
---
name: uint32
type: integer
attributes:
format: unsigned
size: 4
---
name: wchar16
type: character
attributes:
size: 2
units: bytes
units: bytes
---
name: file_header
type: structure
description: File header
members:
- name: format_version
data_type: uint32
- name: signature
type: stream
element_data_type: byte
elements_data_size: 4
value: "SCCA"
- name: file_size
data_type: uint32
- name: executable_filename
type: string
encoding: utf-16-le
element_data_type: wchar16
elements_data_size: 60
- name: prefetch_hash
data_type: uint32
- name: unknown1
data_type: uint32
---
name: compressed_file_header
type: structure
description: File header
members:
- name: signature
type: stream
element_data_type: byte
elements_data_size: 4
value: "MAM\x04"
- name: uncompressed_data_size
data_type: uint32