libdebug.snapshots.memory.memory_map_diff_list
MemoryMapDiffList
Bases: list
A list of memory map snapshot diffs from the target process.
Source code in libdebug/snapshots/memory/memory_map_diff_list.py
__init__(memory_maps, process_name, full_process_path)
Initializes the MemoryMapSnapshotList.
Source code in libdebug/snapshots/memory/memory_map_diff_list.py
_search_by_address(address)
Searches for a memory map diff by address.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address
|
int
|
The address to search for. |
required |
Returns:
Type | Description |
---|---|
list[MemoryMapDiff]
|
list[MemoryMapDiff]: The memory map diff matching the specified address. |
Source code in libdebug/snapshots/memory/memory_map_diff_list.py
_search_by_backing_file(backing_file)
Searches for a memory map diff by backing file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
backing_file
|
str
|
The backing file to search for. |
required |
Returns:
Type | Description |
---|---|
list[MemoryMapDiff]
|
list[MemoryMapDiff]: The memory map diff matching the specified backing file. |
Source code in libdebug/snapshots/memory/memory_map_diff_list.py
filter(value)
Filters the memory maps according to the specified value.
If the value is an integer, it is treated as an address. If the value is a string, it is treated as a backing file.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
int | str
|
The value to search for. |
required |
Returns:
Type | Description |
---|---|
MemoryMapDiffList[MemoryMapDiff]
|
MemoryMapDiffList[MemoryMapDiff]: The memory maps matching the specified value. |