mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-09-02 23:58:45 +02:00
13 lines
285 B
Python
13 lines
285 B
Python
__author__ = 'mike'
|
|
|
|
import volatility.framework
|
|
|
|
class CommandLine():
|
|
def __init__(self):
|
|
pass
|
|
|
|
def run(self):
|
|
sys.stdout.write("Volatility Framework 3 (version "+ "{0}.{1}.{2}".format(volatility.framework.version()) + ")")
|
|
|
|
def main():
|
|
CommandLine().run() |