libdebug.snapshots.memory.snapshot_memory_view
SnapshotMemoryView
Bases: AbstractMemoryView
Memory view for a thread / process snapshot.
Source code in libdebug/snapshots/memory/snapshot_memory_view.py
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 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 |
|
maps
property
Returns a list of memory maps in the target process.
Returns:
Name | Type | Description |
---|---|---|
MemoryMapList |
MemoryMapSnapshotList
|
The memory maps. |
__init__(snapshot, symbols)
Initializes the MemoryView.
find(value, file='all', start=None, end=None)
Searches for the given value in the saved memory maps of the snapshot.
The start and end addresses can be used to limit the search to a specific range. If not specified, the search will be performed on the whole memory map.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
value
|
bytes | str | int
|
The value to search for. |
required |
file
|
str
|
The backing file to search the value in. Defaults to "all", which means all memory. |
'all'
|
start
|
int | None
|
The start address of the search. Defaults to None. |
None
|
end
|
int | None
|
The end address of the search. Defaults to None. |
None
|
Returns:
Type | Description |
---|---|
list[int]
|
list[int]: A list of offset where the value was found. |
Source code in libdebug/snapshots/memory/snapshot_memory_view.py
read(address, size)
Reads memory from the target snapshot.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address
|
int
|
The address to read from. |
required |
size
|
int
|
The number of bytes to read. |
required |
Returns:
Name | Type | Description |
---|---|---|
bytes |
bytes
|
The read bytes. |
Source code in libdebug/snapshots/memory/snapshot_memory_view.py
resolve_address(address, backing_file, skip_absolute_address_validation=False)
Normalizes and validates the specified address.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address
|
int
|
The address to normalize and validate. |
required |
backing_file
|
str
|
The backing file to resolve the address in. |
required |
skip_absolute_address_validation
|
bool
|
Whether to skip bounds checking for absolute addresses. Defaults to False. |
False
|
Returns:
Name | Type | Description |
---|---|---|
int |
int
|
The normalized and validated address. |
Raises:
Type | Description |
---|---|
ValueError
|
If the substring |
Source code in libdebug/snapshots/memory/snapshot_memory_view.py
resolve_symbol(symbol, file)
Resolve a symbol from the symbol list.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
symbol
|
str
|
The symbol to resolve. |
required |
file
|
str
|
The backing file to resolve the address in. |
required |
Returns:
Name | Type | Description |
---|---|---|
Symbol |
Symbol
|
The resolved address. |
Source code in libdebug/snapshots/memory/snapshot_memory_view.py
write(address, data)
Writes memory to the target snapshot.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
address
|
int
|
The address to write to. |
required |
data
|
bytes
|
The data to write. |
required |