Files

104 lines
3.7 KiB
Python

# Volatility
# Copyright (C) 2007-2013 Volatility Foundation
#
# 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/>.
#
"""
@author: Andrew Case
@license: GNU General Public License 2.0
@contact: atcuno@gmail.com
@organization:
"""
import volatility.obj as obj
import volatility.plugins.mac.common as common
class mac_network_conns(common.AbstractMacCommand):
""" Lists network connections from kernel network structures """
# in_pcblookup_hash - bsd/netinet/in_pcb.c
def _walk_pcb_hash(self, proto_pcbinfo):
pcb_hash = obj.Object("Array", offset = proto_pcbinfo.hashbase, vm = self.addr_space, targetType = "Pointer", count = proto_pcbinfo.hashmask + 1)
for pcb_ent in pcb_hash:
head = pcb_ent.dereference_as("inpcbhead")
if not head:
continue
inpcb = head.lh_first.dereference_as("inpcb")
while inpcb:
yield inpcb
inpcb = inpcb.inp_hash.le_next
# in_pcblookup_hash - bsd/netinet/in_pcb.c
def _walk_pcb_list(self, proto_pcbinfo):
inpcb = proto_pcbinfo.listhead.lh_first.dereference_as("inpcb")
while inpcb:
yield inpcb
inpcb = inpcb.inp_list.le_next
def _walk_pcb_entries(self, inpcbinfo_addr):
pcbs = {}
inpcbinfo = obj.Object("inpcbinfo", offset = inpcbinfo_addr, vm = self.addr_space)
for pcbinfo in self._walk_pcb_list(inpcbinfo):
pcbs[pcbinfo.obj_offset] = pcbinfo
for pcbinfo in self._walk_pcb_hash(inpcbinfo):
pcbs[pcbinfo.obj_offset] = pcbinfo
for pcbinfo in pcbs.values():
(lip, lport, rip, rport) = pcbinfo.ipv4_info()
yield (pcbinfo, lip, lport, rip, rport)
def calculate(self):
common.set_plugin_members(self)
entries = []
tcbinfo_addr = self.addr_space.profile.get_symbol("_tcbinfo")
udbinfo_addr = self.addr_space.profile.get_symbol("_udbinfo")
ripdbinfo_addr = self.addr_space.profile.get_symbol("_ripcbinfo")
info_addrs = [("TCP", tcbinfo_addr), ("UDP", udbinfo_addr), ("RAW", ripdbinfo_addr)]
for (proto_str, info_addr) in info_addrs:
for (pcbinfo, lip, lport, rip, rport) in self._walk_pcb_entries(info_addr):
if proto_str == "TCP":
state = pcbinfo.get_tcp_state()
else:
state = ""
yield (proto_str, pcbinfo, lip, lport, rip, rport, state)
def render_text(self, outfd, data):
self.table_header(outfd, [("Offset (V)", "[addrpad]"),
("Protocol", "4"),
("Local IP", "20"),
("Local Port", "6"),
("Remote IP", "20"),
("Remote Port", "6"),
("State", ""),
])
for (proto, pcb, lip, lport, rip, rport, state) in data:
self.table_row(outfd, pcb.obj_offset, proto, lip, lport, rip, rport, state)