-
Notifications
You must be signed in to change notification settings - Fork 49
/
Copy pathdtfabric.yaml
67 lines (67 loc) · 1.29 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: evtx
type: format
description: Windows XML Event Log (EVTX) format
urls: ["https://github.com/libyal/libevtx/blob/main/documentation/Windows%20XML%20Event%20Log%20(EVTX).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
units: bytes
---
name: uint64
type: integer
attributes:
format: unsigned
size: 8
units: bytes
---
name: file_header
type: structure
description: File header
members:
- name: signature
type: stream
element_data_type: byte
elements_data_size: 8
value: "ElfFile\x00"
- name: first_chunk_number
data_type: uint64
- name: last_chunk_number
data_type: uint64
- name: next_record_identifier
data_type: uint64
- name: header_size
data_type: uint32
- name: minor_format_version
data_type: uint16
- name: major_format_version
data_type: uint16
- name: header_block_size
data_type: uint16
- name: number_of_chunks
data_type: uint16
- name: unknown1
type: stream
element_data_type: byte
elements_data_size: 76
- name: file_flags
data_type: uint32
- name: checksum
data_type: uint32