Initial imlementation of a mapping from volatility config trees to Argparse arguments.

This commit is contained in:
Mike Auty
2015-09-28 00:57:06 +01:00
parent 813750c81e
commit 897d8bd574
8 changed files with 78 additions and 36 deletions
+3 -3
View File
@@ -33,9 +33,9 @@ def test_symbols():
def utils_load_as():
# TODO: This should hold the smarts for determining the physical layers and guessing at various values and so on
c = framework.contexts
factory = c.LayerFactory([c.physical.PhysicalContextModifier(None),
c.intel.IntelContextModifier(None),
c.windows.WindowsContextModifier(None)])
factory = c.LayerFactory([c.physical.PhysicalContextModifier,
c.intel.IntelContextModifier,
c.windows.WindowsContextModifier])
return factory()