Coder Social home page Coder Social logo

nantools's Introduction

NaNTools: Network aNalysis Tools

This project wants to be yet another set of network analysis tools. Currently, there are the following tools:

  • infodups identifies and marks duplicate packets in PCAP files.
  • tseries computes multiple time series from PCAP files.

Compilation

You need to install the libpcap library and autotools. Then, simply run these commands:

git clone https://github.com/Enchufa2/nantools.git
cd nantools
autoreconf --install
./configure
make

Description

infodups

Any network traffic monitoring system, especially port-mirroring schemes, has to deal with a challenging problem: the traffic capturing process almost invariably produces duplicate packets. Some tools like editcap, from wireshark/tshark, can remove only exact copies of packets. Nevertheless, there are different types of duplicates that don't constitute identical copies in general. For more information about the problem of duplicates, you can read this paper:

I. Ucar, D. Morato, E. Magana, M. Izal, Duplicate detection methodology for IP network traffic analysis, 2013 IEEE International Workshop on Measurements and Networking Proceedings (M&N), pp.161,166, 7-8 Oct. 2013. DOI: 10.1109/IWMN.2013.6663796

This tool is intended to identify and mark duplicate packets in PCAP files. Here is an execution example with a sliding window of 10 ms:

$ ./infodups -i trace.pcap -t 0.01
74349 8 0 1 0 0 0.000873000 0
74401 52 0 1 0 0 0.004262000 0
74421 20 0 1 0 0 0.001023000 0
92561 3 0 1 0 0 0.000645000 0
95486 1 0 0 0 0 0.000009000 0
...

Each line belongs to one duplicate pair identified. The first two numbers mean that the packet number 74349 is a duplicate from 8 positions before, etc.

Since searches over a sliding window can be a very heavy task, this tool supports multithreading. For more info and usage notes, run:

./infodups -h

tseries

This tool accepts a network trace in PCAP format and a file with one filter per line. Then, it computes the time series corresponding to each filter. These filters can be defined in two different ways: as BPF filters or net filters.

BPF filters

For example, suppose you want to compute the time series for all TCP traffic coming to the host 192.168.1.1, and all UDP traffic coming from the net 192.168.0.0/16. You should write a file filters.txt containing these lines:

tcp and dst host 192.168.1.1
udp and src net 192.168

Then, tseries execution yields something like this:

$ ./tseries -i trace.pcap -f filters.txt
0 1338754657325 10262757 8928
1 1338754657325 0 0
0 1338754658325 12159973 10119
1 1338754658325 98 1
0 1338754659325 10509878 8702
1 1338754659325 470 4
0 1338754660325 12402697 10068
1 1338754660325 98 1
...

Each line contains:

  • the filter identifier (0 for the first filter in the file and so on).
  • the timestamp (in milliseconds).
  • the number of bytes in the last bucket.
  • the number of packets in the last bucket.

Net filters

This alternative filtering mode only allows us to define source and/or destination nets and IPs, but it has an efficiency advantage over the BPF equivalent. While filtering with N BPF filters has time cost O(N), net filters improve this to O(1). It can be achieved using a special data structure called Grid-of-Tries. This particular implementation was inspired in the following paper:

V. Srinivasan, G. Varghese, S. Suri, and M. Waldvogel. Fast and scalable layer four switching. SIGCOMM Comput. Commun. Rev. 28, 4 (October 1998), 191-202. DOI: 10.1145/285243.285282

Here is an example of the net filters syntax:

192.168.0.0   255.255.0.0       0.0.0.0       0.0.0.0
192.168.1.1   255.255.255.255   192.168.0.0   255.255.0.0

Which can be read as follows:

  • All traffic coming from the net 192.168.0.0/16.
  • All traffic coming from the IP 192.168.1.1 and going to the net 192.168.0.0/16.

For more info and usage notes, run:

./tseries -h

nantools's People

Contributors

enchufa2 avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.