Skip to main content

A flexible and powerful network data analysis library

Project description

release build quality doc python license

nfstream is a flexible and lightweight network data analysis library.

nfstream main features

  • Performance: nfstream was designed to be fast with a small CPU and memory footprint.

  • Layer-7 visibility: nfstream dissection is based on nDPI (~300 applications including Tor, Messenger, WhatsApp, etc.).

  • Flexibility: add a flow metric in 2 lines of code using nfstream plugins method.

  • Machine Learning oriented: add your trained model as an NFStreamClassifier.

Use

  • Dealing with a big pcap file and just want to aggregate it as network flows? nfstream make this path easier in few lines:

from nfstream.streamer import Streamer
my_capture_streamer = Streamer(source="instagram.pcap") # or capture from a network interface
for flow in my_capture_streamer:  # or for flow in my_live_streamer
    print(flow)  # print, append to pandas Dataframe or whatever you want :)!
  • Didn’t find a specific flow feature? add a plugin to the Streamer in few lines:

def my_awesome_plugin(packet_information, flow, direction):
 if packet_information.length > 666:
     return flow.metrics['count_pkts_gt_666'] + 1

streamer_awesome = Streamer(source='devil.pcap', user_metrics={'count_pkts_gt_666': my_awesome_plugin})
for export in streamer_awesome:
   print(export.metrics['count_pkts_gt_666']) # now you will see your created metric in generated flows
  • More example and details are provided on the official Documentation.

Getting Started

Prerequisites

apt-get install python-dev install pypy3-dev libpcap-dev

Installation

using pip

Binary installers for the latest released version are available:

pip3 install nfstream

from source

If you want to build nfstream on your local machine:

apt-get install autogen
git clone https://github.com/aouinizied/nfstream.git
# move to nfstream directory and run
python3 setup.py install

Contributing

Please read Contributing for details on our code of conduct, and the process for submitting pull requests to us.

Authors

Zied Aouini (aouinizied) created nfstream and these fine people have contributed.

License

This project is licensed under the GPLv3 License - see the License file for details

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

nfstream-1.0.0-py3.6.egg (49.1 kB view details)

Uploaded Source

nfstream-1.0.0-py2.py3-none-any.whl (691.7 kB view details)

Uploaded Python 2 Python 3

File details

Details for the file nfstream-1.0.0-py3.6.egg.

File metadata

  • Download URL: nfstream-1.0.0-py3.6.egg
  • Upload date:
  • Size: 49.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.7

File hashes

Hashes for nfstream-1.0.0-py3.6.egg
Algorithm Hash digest
SHA256 6384f8325a270e5506be20a040f5b9ff8841c3fdfd02714eb31fc10f96daf829
MD5 f95022762553bf3681beeac2fc931de5
BLAKE2b-256 7755f8662888a727887ed90b2a4e5766f89f7aa145fa80375edad54ed28b3564

See more details on using hashes here.

File details

Details for the file nfstream-1.0.0-py2.py3-none-any.whl.

File metadata

  • Download URL: nfstream-1.0.0-py2.py3-none-any.whl
  • Upload date:
  • Size: 691.7 kB
  • Tags: Python 2, Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.6.7

File hashes

Hashes for nfstream-1.0.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 0127194dc052950cfa3ae1ad7db759d608b943ef5f144ff180fdd46eea76b7bc
MD5 365be2412bfc439213a05ef6856cfd12
BLAKE2b-256 34b5e50922114967a4a819fc262766acb175b9b80ed270e82ddf3ae4a7693e45

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page