This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import annotations | |
import re | |
from itertools import cycle | |
MAX_SETTINGS = 128 | |
def load_mapping(filename: str) -> dict[int, int]: | |
"""Processes textual Volatility memmap output into a page mapping.""" |