diff --git a/volatility/framework/layers/lime.py b/volatility/framework/layers/lime.py index 72abb4a1f..c1b2bfe17 100644 --- a/volatility/framework/layers/lime.py +++ b/volatility/framework/layers/lime.py @@ -9,9 +9,11 @@ import struct from volatility.framework import interfaces, exceptions from volatility.framework.configuration import requirements + class LimeFormatException(exceptions.LayerException): """Thrown when an error occurs with the underlying Lime file format""" + class LimeLayer(interfaces.layers.TranslationLayerInterface): """A Lime format TranslationLayer. Lime is generally used to store physical memory images where there are large holes in the physical @@ -79,7 +81,6 @@ class LimeLayer(interfaces.layers.TranslationLayerInterface): self._minaddr = segments[0][0] self._maxaddr = maxaddr - def _find_segment(self, offset): """Finds the segment containing a given offset