dissect.regf.regf¶
Module Contents¶
Classes¶
Functions¶
Adapted function to read null terminated wide strings. |
|
Attributes¶
- dissect.regf.regf.log¶
- type dissect.regf.regf.CellType = 'IndexLeaf | FastLeaf | HashLeaf | IndexRoot | KeyNode | KeyValue'¶
- dissect.regf.regf.STABLE = 0¶
- dissect.regf.regf.VOLATILE = 1¶
- class dissect.regf.regf.RegistryHive(fh: BinaryIO)¶
- fh¶
- header¶
- version¶
- filename¶
- dirty¶
- in_transaction¶
- cell¶
- open(path: str) CellType¶
- class dissect.regf.regf.Cell(hive: RegistryHive, data: bytes, strict: bool = True)¶
- __signature__ = b''¶
- __struct__ = None¶
- hive¶
- cell¶
- class dissect.regf.regf.KeyNode(hive: RegistryHive, data: bytes)¶
Bases:
Cell- __signature__ = b'nk'¶
- __struct__¶
- class_name = None¶
- name¶
- __repr__() str¶
- property timestamp: datetime.datetime¶
- property path: str¶
- class dissect.regf.regf.ValueList(hive: RegistryHive, data: bytes, count: int)¶
- hive¶
- class dissect.regf.regf.KeyValue(hive: RegistryHive, data: bytes)¶
Bases:
Cell- __signature__ = b'vk'¶
- __struct__¶
- __repr__() str¶
- property type: int¶
- property size: int¶
- property is_big_value: bool¶
- class dissect.regf.regf.KeyIndex(hive: RegistryHive, data: bytes, strict: bool = True)¶
Bases:
Cell- abstract __len__() int¶
- property count: int¶
- Abstractmethod:
- class dissect.regf.regf.IndexRoot(hive: RegistryHive, data: bytes, strict: bool = True)¶
Bases:
KeyIndex- __signature__ = b'ri'¶
- __struct__¶
- __len__() int¶
- property count: int¶
- class dissect.regf.regf.IndexLeaf(hive: RegistryHive, data: bytes, strict: bool = True)¶
Bases:
KeyIndex- __signature__ = b'li'¶
- __struct__¶
- __len__() int¶
- property count: int¶
- class dissect.regf.regf.HashLeaf(hive: RegistryHive, data: bytes, strict: bool = True)¶
Bases:
KeyIndex- __signature__ = b'lh'¶
- __struct__¶
- __len__() int¶
- property count: int¶
- class dissect.regf.regf.FastLeaf(hive: RegistryHive, data: bytes, strict: bool = True)¶
Bases:
KeyIndex- __signature__ = b'lf'¶
- __struct__¶
- __len__() int¶
- property count: int¶
- class dissect.regf.regf.KeySecurity(hive: RegistryHive, data: bytes, strict: bool = True)¶
Bases:
Cell- __signature__ = b'sk'¶
- __struct__¶
- class dissect.regf.regf.BigData(hive: RegistryHive, data: bytes, strict: bool = True)¶
Bases:
Cell- __signature__ = b'db'¶
- __struct__¶
- dissect.regf.regf.read_null_terminated_wstring(stream: BinaryIO, encoding: str = 'utf-16-le') str¶
Adapted function to read null terminated wide strings.
The cstruct way raises EOFError when the end of the stream is reached. This is fine, but not what we want for this particular implementation.
- dissect.regf.regf.hashname(name: str) int¶