mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
82 lines
3.1 KiB
Python
82 lines
3.1 KiB
Python
# Volatility
|
|
#
|
|
# Authors:
|
|
# Mike Auty <mike.auty@gmail.com>
|
|
#
|
|
# This file is part of Volatility.
|
|
#
|
|
# Volatility is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# Volatility is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with Volatility. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
|
|
#pylint: disable-msg=C0111
|
|
|
|
import volatility.plugins.common as common
|
|
import volatility.win32.network as network
|
|
import volatility.cache as cache
|
|
import volatility.utils as utils
|
|
import volatility.debug as debug
|
|
from volatility.renderers import TreeGrid
|
|
from volatility.renderers.basic import Address
|
|
|
|
class Connections(common.AbstractWindowsCommand):
|
|
"""
|
|
Print list of open connections [Windows XP and 2003 Only]
|
|
---------------------------------------------
|
|
|
|
This module follows the handle table in tcpip.sys and prints
|
|
current connections.
|
|
|
|
Note that if you are using a hibernated image this might not work
|
|
because Windows closes all connections before hibernating. You might
|
|
find it more effective to do connscan instead.
|
|
"""
|
|
def __init__(self, config, *args, **kwargs):
|
|
common.AbstractWindowsCommand.__init__(self, config, *args, **kwargs)
|
|
config.add_option("PHYSICAL-OFFSET", short_option = 'P', default = False,
|
|
cache_invalidator = False,
|
|
help = "Physical Offset", action = "store_true")
|
|
|
|
@staticmethod
|
|
def is_valid_profile(profile):
|
|
return (profile.metadata.get('os', 'unknown') == 'windows' and
|
|
profile.metadata.get('major', 0) == 5)
|
|
|
|
def unified_output(self, data):
|
|
offsettype = "(V)" if not self._config.PHYSICAL_OFFSET else "(P)"
|
|
return TreeGrid([("Offset{0}".format(offsettype), Address),
|
|
("LocalAddress", str),
|
|
("RemoteAddress", str),
|
|
("PID", int)],
|
|
self.generator(data))
|
|
|
|
def generator(self, data):
|
|
for conn in data:
|
|
if not self._config.PHYSICAL_OFFSET:
|
|
offset = conn.obj_offset
|
|
else:
|
|
offset = conn.obj_vm.vtop(conn.obj_offset)
|
|
local = "{0}:{1}".format(conn.LocalIpAddress, conn.LocalPort)
|
|
remote = "{0}:{1}".format(conn.RemoteIpAddress, conn.RemotePort)
|
|
yield (0, [Address(offset), str(local), str(remote), int(conn.Pid)])
|
|
|
|
|
|
@cache.CacheDecorator("tests/connections")
|
|
def calculate(self):
|
|
addr_space = utils.load_as(self._config)
|
|
|
|
if not self.is_valid_profile(addr_space.profile):
|
|
debug.error("This command does not support the selected profile.")
|
|
|
|
return network.determine_connections(addr_space)
|