netflow/analyze_json.py

150 lines
4.8 KiB
Python
Raw Normal View History

#!/usr/bin/env python3
2017-10-29 11:52:59 +01:00
"""
Example analyzing script for saved exports (as JSON).
This file belongs to https://github.com/cooox/python-netflow-v9-softflowd.
Copyright 2017, 2018 Dominik Pataky <dev@bitkeks.eu>
2017-10-29 11:52:59 +01:00
Licensed under MIT License. See LICENSE.
"""
from datetime import datetime
import ipaddress
import json
2017-10-29 11:52:59 +01:00
import os.path
import sys
2017-10-29 11:52:59 +01:00
import socket
from collections import namedtuple
Pair = namedtuple('Pair', 'src dest')
def getIPs(flow):
use_ipv4 = False # optimistic default case of IPv6
if 'IP_PROTOCOL_VERSION' in flow and flow['IP_PROTOCOL_VERSION'] == 4:
use_ipv4 = True
elif 'IPV4_SRC_ADDR' in flow or 'IPV4_DST_ADDR' in flow:
use_ipv4 = True
if use_ipv4:
2017-10-29 11:52:59 +01:00
return Pair(
ipaddress.ip_address(flow['IPV4_SRC_ADDR']),
ipaddress.ip_address(flow['IPV4_DST_ADDR']))
# else: return IPv6 pair
return Pair(
ipaddress.ip_address(flow['IPV6_SRC_ADDR']),
ipaddress.ip_address(flow['IPV6_DST_ADDR']))
2017-10-29 11:52:59 +01:00
class Connection:
"""Connection model for two flows.
The direction of the data flow can be seen by looking at the size.
'src' describes the peer which sends more data towards the other. This
does NOT have to mean, that 'src' was the initiator of the connection.
"""
def __init__(self, flow1, flow2):
if flow1['IN_BYTES'] >= flow2['IN_BYTES']:
src = flow1
dest = flow2
else:
src = flow2
dest = flow1
ips = getIPs(src)
self.src = ips.src
self.dest = ips.dest
self.src_port = src['L4_SRC_PORT']
self.dest_port = src['L4_DST_PORT']
self.size = src['IN_BYTES']
2017-10-29 19:38:33 +01:00
# Duration is given in milliseconds
self.duration = src['LAST_SWITCHED'] - src['FIRST_SWITCHED']
if self.duration < 0:
# 32 bit int has its limits. Handling overflow here
self.duration = (2**32 - src['FIRST_SWITCHED']) + src['LAST_SWITCHED']
2017-10-29 11:52:59 +01:00
def __repr__(self):
return "<Connection from {} to {}, size {}>".format(
self.src, self.dest, self.human_size)
@property
def human_size(self):
# Calculate a human readable size of the traffic
if self.size < 1024:
2017-10-29 19:38:33 +01:00
return "%dB" % self.size
2017-10-29 11:52:59 +01:00
elif self.size / 1024. < 1024:
return "%.2fK" % (self.size / 1024.)
elif self.size / 1024.**2 < 1024:
return "%.2fM" % (self.size / 1024.**2)
else:
return "%.2fG" % (self.size / 1024.**3)
2017-10-29 19:38:33 +01:00
@property
def human_duration(self):
duration = self.duration // 1000 # uptime in milliseconds, floor it
if duration < 60:
# seconds
return "%d sec" % duration
if duration / 60 > 60:
# hours
return "%d:%02d.%02d hours" % (duration / 60**2, duration % 60**2 / 60, duration % 60)
# minutes
return "%02d:%02d min" % (duration / 60, duration % 60)
2017-10-29 11:52:59 +01:00
@property
def hostnames(self):
# Resolve the IPs of this flows to their hostname
2017-10-29 19:38:33 +01:00
src_hostname = socket.getfqdn(self.src.compressed)
dest_hostname = socket.getfqdn(self.dest.compressed)
return Pair(src_hostname, dest_hostname)
2017-10-29 11:52:59 +01:00
@property
def service(self):
# Resolve ports to their services, if known
service = "unknown"
try:
2017-10-29 19:38:33 +01:00
# Try service of sending peer first
2017-10-29 11:52:59 +01:00
service = socket.getservbyport(self.src_port)
except OSError:
# Resolving the sport did not work, trying dport
try:
service = socket.getservbyport(self.dest_port)
except OSError:
pass
return service
2017-10-29 19:38:33 +01:00
# Handle CLI args and load the data dump
if len(sys.argv) < 2:
exit("Use {} <filename>.json".format(sys.argv[0]))
filename = sys.argv[1]
2017-10-29 11:52:59 +01:00
if not os.path.exists(filename):
exit("File {} does not exist!".format(filename))
with open(filename, 'r') as fh:
data = json.loads(fh.read())
2017-10-29 19:38:33 +01:00
# Go through data and disect every flow saved inside the dump
for export in sorted(data):
2017-10-29 11:52:59 +01:00
timestamp = datetime.fromtimestamp(float(export)).strftime("%Y-%m-%d %H:%M.%S")
flows = data[export]
2017-10-29 11:52:59 +01:00
pending = None # Two flows normally appear together for duplex connection
for flow in flows:
2017-10-29 11:52:59 +01:00
if not pending:
pending = flow
else:
con = Connection(pending, flow)
if con.size > 1024**2:
2017-10-29 19:38:33 +01:00
#~ if con.service == "http":
print("{timestamp}: {service:7} | {size:8} | {duration:9} | {src_host} ({src}) to"\
" {dest_host} ({dest})".format(
timestamp=timestamp, service=con.service.upper(),
2017-10-29 11:52:59 +01:00
src_host=con.hostnames.src, src=con.src,
2017-10-29 19:38:33 +01:00
dest_host=con.hostnames.dest, dest=con.dest,
size=con.human_size, duration=con.human_duration))
2017-10-29 11:52:59 +01:00
pending = None