mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-13 13:17:38 +02:00
11 lines
320 B
Python
11 lines
320 B
Python
from volatility.framework.symbols import intermed
|
|
from volatility.framework.symbols.linux.extensions import bash
|
|
|
|
|
|
class BashIntermedSymbols(intermed.IntermediateSymbolTable):
|
|
|
|
def __init__(self, *args, **kwargs):
|
|
super().__init__(*args, **kwargs)
|
|
|
|
self.set_type_class('hist_entry', bash.hist_entry)
|