mirror of
https://github.com/volatilityfoundation/volatility3.git
synced 2026-08-17 20:35:40 +02:00
Initial volatility3 commit.
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<projectDescription>
|
||||
<name>volatility3</name>
|
||||
<comment></comment>
|
||||
<projects>
|
||||
</projects>
|
||||
<buildSpec>
|
||||
<buildCommand>
|
||||
<name>org.python.pydev.PyDevBuilder</name>
|
||||
<arguments>
|
||||
</arguments>
|
||||
</buildCommand>
|
||||
</buildSpec>
|
||||
<natures>
|
||||
<nature>org.python.pydev.pythonNature</nature>
|
||||
</natures>
|
||||
</projectDescription>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||
<?eclipse-pydev version="1.0"?><pydev_project>
|
||||
<pydev_pathproperty name="org.python.pydev.PROJECT_SOURCE_PATH">
|
||||
<path>/volatility3</path>
|
||||
</pydev_pathproperty>
|
||||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_VERSION">python 3.0</pydev_property>
|
||||
<pydev_property name="org.python.pydev.PYTHON_PROJECT_INTERPRETER">python3</pydev_property>
|
||||
</pydev_project>
|
||||
@@ -0,0 +1,33 @@
|
||||
"""
|
||||
Created on 11 Nov 2012
|
||||
|
||||
@author: mike
|
||||
"""
|
||||
|
||||
class ObjectInterface(object):
|
||||
"""
|
||||
classdocs
|
||||
"""
|
||||
|
||||
def __init__(self, profileset, offset, data):
|
||||
"""
|
||||
Constructor
|
||||
"""
|
||||
|
||||
def cast(self):
|
||||
|
||||
# Properties = [size, layer, offset]
|
||||
|
||||
|
||||
class TransformLayerInterface(object):
|
||||
"""
|
||||
classdocs
|
||||
"""
|
||||
|
||||
def __init__(self):
|
||||
"""
|
||||
Constructor
|
||||
"""
|
||||
|
||||
def
|
||||
|
||||
Reference in New Issue
Block a user