mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-06 17:57:38 +02:00
Merge pull request #1667 from volatilityfoundation/fix_slot_access
Ensure slot address is valid inside of array
This commit is contained in:
@@ -702,7 +702,11 @@ class IDStorage(ABC):
|
||||
node = self.nodep_to_node(nodep)
|
||||
node_slots = node.slots
|
||||
for off in range(self.CHUNK_SIZE):
|
||||
slot = node_slots[off]
|
||||
try:
|
||||
slot = node_slots[off]
|
||||
except exceptions.InvalidAddressException:
|
||||
continue
|
||||
|
||||
if slot == 0:
|
||||
continue
|
||||
|
||||
|
||||
Reference in New Issue
Block a user