mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-21 14:02:22 +02:00
9 lines
265 B
Python
9 lines
265 B
Python
"""Volatility 3 Constants
|
|
|
|
Stores all the constant values that are generally fixed throughout volatiltiy
|
|
This includes default scanning block sizes, etc."""
|
|
|
|
import os.path
|
|
|
|
PLUGINS_PATH = [os.path.abspath(os.path.join(os.path.dirname(__file__), "..", "plugins"))]
|