mirror of
https://github.com/volatilityfoundation/volatility
synced 2026-06-08 18:04:46 +00:00
150 lines
4.3 KiB
Python
150 lines
4.3 KiB
Python
# Volatility
|
|
#
|
|
# This program 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.
|
|
#
|
|
# This program 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 this program; if not, write to the Free Software
|
|
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
|
|
"""
|
|
@author: Andrew Case
|
|
@license: GNU General Public License 2.0 or later
|
|
@contact: atcuno@gmail.com
|
|
@organization:
|
|
"""
|
|
|
|
import volatility.obj as obj
|
|
import lsof
|
|
import common
|
|
|
|
tcp_states = ("",
|
|
"ESTABLISHED",
|
|
"SYN_SENT",
|
|
"SYN_RECV",
|
|
"FIN_WAIT1",
|
|
"FIN_WAIT2",
|
|
"TIME_WAIT",
|
|
"CLOSE",
|
|
"CLOSE_WAIT",
|
|
"LAST_ACK",
|
|
"LISTEN",
|
|
"CLOSING")
|
|
|
|
class mac_netstat(lsof.mac_lsof):
|
|
""" Lists active per-process network connections """
|
|
|
|
def render_text(self, outfd, data):
|
|
for (data_ptr, data_type, i) in data:
|
|
# socket
|
|
if data_type == 2:
|
|
socket = obj.Object("socket", offset=data_ptr.v(), vm=self.addr_space)
|
|
|
|
family = socket.so_proto.pr_domain.dom_family
|
|
ipcb = obj.Object("inpcb", offset=socket.so_pcb, vm=self.addr_space)
|
|
upcb = obj.Object("unpcb", offset=socket.so_pcb, vm=self.addr_space)
|
|
|
|
(proto, state) = self.get_proto(socket.so_proto.pr_protocol)
|
|
|
|
(lip, lport, rip, rport) = ("", "", "", "")
|
|
|
|
if family == 1:
|
|
path = self.parse_unix(upcb)
|
|
print "UNIX %s" % (path)
|
|
|
|
elif family == 2:
|
|
(lip, lport, rip, rport) = self.parse_ipv4(socket, ipcb, proto)
|
|
print "%s %s:%s %s:%s %s" % (proto, lip, lport, rip, rport, state)
|
|
|
|
elif family == 30:
|
|
(lip, lport, rip, rport) = self.parse_ipv6(socket, ipcb, proto)
|
|
print "%s %s:%s %s:%s %s" % (proto, lip, lport, rip, rport, state)
|
|
|
|
def get_tcp_state(self, state):
|
|
return tcp_states[state]
|
|
|
|
def get_proto(self, proto):
|
|
if proto == 6:
|
|
ret = ("TCP", self.get_tcp_state(proto))
|
|
|
|
elif proto == 17:
|
|
ret = ("UDP", "")
|
|
|
|
else:
|
|
ret = ("", "")
|
|
|
|
return ret
|
|
|
|
def ip2str(self, ip):
|
|
ip = ip & 0xffffffff
|
|
|
|
a = ip & 0xff
|
|
b = (ip >> 8) & 0xff
|
|
c = (ip >> 16) & 0xff
|
|
d = (ip >> 24) & 0xff
|
|
|
|
return "%d.%d.%d.%d" % (a, b, c, d)
|
|
|
|
def port(self, p):
|
|
a = ((p & 0xff00) >> 8) & 0xff
|
|
b = ((p & 0x00ff) << 8) & 0xff
|
|
|
|
c = a | b
|
|
|
|
return c
|
|
|
|
def parse_ipv4(self, socket, pcb, proto):
|
|
lip = self.ip2str(pcb.inp_dependladdr.inp46_local.ia46_addr4.s_addr.v())
|
|
lport = self.port(pcb.inp_lport.v())
|
|
|
|
rip = self.ip2str(pcb.inp_dependfaddr.inp46_foreign.ia46_addr4.s_addr.v())
|
|
rport = self.port(pcb.inp_fport.v())
|
|
|
|
return (lip, lport, rip, rport)
|
|
|
|
|
|
def ip62str(self, ipbytes):
|
|
ret = ""
|
|
ctr = 0
|
|
|
|
for byte in ipbytes:
|
|
ret = ret + "%.02x" % byte
|
|
|
|
# make it the : notation
|
|
if ctr % 2 and ctr != 15:
|
|
ret = ret + ":"
|
|
|
|
ctr = ctr + 1
|
|
|
|
return ret
|
|
|
|
def parse_ipv6(self, socket, pcb, proto):
|
|
lip = self.ip62str(pcb.inp_dependladdr.inp6_local.__u6_addr.__u6_addr8)
|
|
lport = self.port(pcb.inp_lport.v())
|
|
|
|
|
|
rip = self.ip62str(pcb.inp_dependfaddr.inp6_foreign.__u6_addr.__u6_addr8)
|
|
rport = self.port(pcb.inp_fport.v())
|
|
|
|
return (lip, lport, rip, rport)
|
|
|
|
def parse_unix(self, pcb):
|
|
path = pcb.unp_addr.sun_path
|
|
|
|
if path[0] == 0:
|
|
ret = ""
|
|
else:
|
|
ret = common.get_string(path.obj_offset, self.addr_space, 105)
|
|
|
|
return ret
|
|
|
|
|
|
|