mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-21 22:12:23 +02:00
15 lines
508 B
Python
15 lines
508 B
Python
# This file is Copyright 2019 Volatility Foundation and licensed under the Volatility Software License 1.0
|
|
# which is available at https://www.volatilityfoundation.org/license/vsl-v1.0
|
|
#
|
|
|
|
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)
|