brassfork

command module
v0.0.0-...-cf8343f Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 3, 2017 License: MIT Imports: 12 Imported by: 0

README

Brassfork

This application helps in visualizing network traffic. It does that by reading pcap files and outputting files that can be read by graphing applications, for example Gephi.

Supported protocols are IPv4, IPv6, TCP, UDP, and SCTP.

Example result

Simple graph made with Gephi from resulting data:

Simple graph made with Gephi

Requirements and building

Dependencies (tested with):

  • libpcap 1.5+
  • go 1.3+

Recommended:

To build, just use go get and build:

go get github.com/mikkolehtisalo/brassfork
go build github.com/mikkolehtisalo/brassfork

Usage

First capture some network traffic, and save it as pcap file. Then run brassfork:

GOMAXPROCS=8 ./brassfork -in=capture.pcap -edges=edges.csv -nodes=nodes.csv

The resulting edge and node files can then be imported to Gephi for graphing.

Attributes

Extra attributes generated for edges:

  • Packages: Amount of packages related to edge
  • SYNs: SYN packages (attempted new TCP connections)
  • FINs: FIN packages (by the source node)
  • Unfinished: For TCP, SYNs-FINs (rough indication to how many connections have not been closed already/properly)
  • Avg: Average TCP connection duration in milliseconds, for completed connections
  • Bytes: Cumulative counter of bytes transported. This is also the Weight of edges.

Extra attributes generated for nodes:

  • Network: Name of the network, based on CIDR network mask (see below)

Network names

Network names are useful for partitioning data in Gephi. Create a valid JSON file containing information about your known networks. Take a look at example.json for example:

[
  {
    "CIDR": "192.168.1.0/24",
    "Name": "Home network"
  },
  {
    "CIDR": "192.168.2.0/24",
    "Name": "Other network"
  }
]

After creating the file run brassfork with the -networks parameter, like

./brassfork -in=capture.pcap -edges=edges.csv -nodes=nodes.csv -networks=example.json

The nodes output should contain the Network information for nodes with matching IP addresses.

Documentation

The Go Gopher

There is no documentation for this package.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL