From 11d60b9f7f3c4f6942100de1e4985df76b72eb61 Mon Sep 17 00:00:00 2001 From: Mike Auty Date: Thu, 3 Nov 2016 01:03:38 +0000 Subject: [PATCH] Update the accepted format version. --- volatility/framework/symbols/intermed.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/volatility/framework/symbols/intermed.py b/volatility/framework/symbols/intermed.py index 964643b44..03c2cb317 100644 --- a/volatility/framework/symbols/intermed.py +++ b/volatility/framework/symbols/intermed.py @@ -63,9 +63,9 @@ class ISFormatTable(interfaces.symbols.SymbolTableInterface): class Version1Format(ISFormatTable): """Class for storing intermediate debugging data as objects and classes""" - current = 0 + current = 1 revision = 0 - age = 0 + age = 1 version = (current - age, age, revision) def __init__(self, name, json_object, native_types = None):