mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-07 10:17:38 +02:00
Merge pull request #416 from volatilityfoundation/issues/intel-pae-metadata
Layers: Ensure intel PAE reports pae in the metadata
This commit is contained in:
@@ -247,6 +247,7 @@ class IntelPAE(Intel):
|
||||
_maxphyaddr = 40
|
||||
_maxvirtaddr = 32
|
||||
_structure = [('page directory pointer', 2, False), ('page directory', 9, True), ('page table', 9, True)]
|
||||
_direct_metadata = collections.ChainMap({'pae', True}, Intel._direct_metadata)
|
||||
|
||||
|
||||
class Intel32e(Intel):
|
||||
|
||||
@@ -6,9 +6,8 @@ import collections.abc
|
||||
import datetime
|
||||
import functools
|
||||
import logging
|
||||
import struct
|
||||
import math
|
||||
from typing import Iterable, Iterator, Optional, Union, Dict, Tuple, List
|
||||
from typing import Iterable, Iterator, Optional, Union, Tuple, List
|
||||
|
||||
from volatility.framework import constants, exceptions, interfaces, objects, renderers, symbols
|
||||
from volatility.framework.layers import intel
|
||||
|
||||
Reference in New Issue
Block a user