Skip to main content

A flexible network data analysis framework

Project description

nfstream: a flexible network data analysis framework

nfstream is a Python package providing fast, flexible, and expressive data structures designed to make working with online or offline network data both easy and intuitive. It aims to be the fundamental high-level building block for doing practical, real world network data analysis in Python. Additionally, it has the broader goal of becoming a common network data processing framework for researchers providing data reproducibility across experiments.

Latest Release latest release
Citation DOI
Downloads downloads
Supported Platforms Linux MacOS
Supported Versions python3 pypy3
Build Status Github WorkFlows
Documentation Status ReadTheDocs
Code Quality Quality
Code Coverage Coverage
Discussion Channel Gitter

Main Features

  • Performance: nfstream is designed to be fast (x10 faster with pypy3 support) with a small CPU and memory footprint.
  • Layer-7 visibility: nfstream deep packet inspection engine is based on nDPI. It allows nfstream to perform reliable encrypted applications identification and metadata extraction (e.g. TLS, QUIC, TOR, HTTP, SSH, DNS, etc.).
  • Flexibility: add a flow feature in 2 lines as an NFPlugin.
  • Machine Learning oriented: add your trained model as an NFPlugin.

How to use it?

  • 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 import NFStreamer
   my_awesome_streamer = NFStreamer(source="facebook.pcap") # or network interface (source="eth0")
   for flow in my_awesome_streamer:
       print(flow)  # print it, append to pandas Dataframe or whatever you want :)!
    NFEntry(
        id=0,
        first_seen=1472393122365,
        last_seen=1472393123665,
        version=4,
        src_port=52066,
        dst_port=443,
        protocol=6,
        vlan_id=0,
        src_ip='192.168.43.18',
        dst_ip='66.220.156.68',
        total_packets=19,
        total_bytes=5745,
        duration=1300,
        src2dst_packets=9,
        src2dst_bytes=1345,
        dst2src_packets=10,
        dst2src_bytes=4400,
        expiration_id=0,
        master_protocol=91,
        app_protocol=119,
        application_name='TLS.Facebook',
        category_name='SocialNetwork',
        client_info='facebook.com',
        server_info='*.facebook.com,*.facebook.net,*.fb.com,*.fbcdn.net,*.fbsbx.com,*.m.facebook.com,*.messenger.com,*.xx.fbcdn.net,*.xy.fbcdn.net,*.xz.fbcdn.net,facebook.com,fb.com,messenger.com',
        j3a_client='bfcc1a3891601edb4f137ab7ab25b840',
        j3a_server='2d1eb5817ece335c24904f516ad5da12'
    )
  • From pcap to Pandas DataFrame?
    import pandas as pd	
    streamer_awesome = NFStreamer(source='devil.pcap')
    data = []
    for flow in streamer_awesome:
       data.append(flow.to_namedtuple())
    my_df = pd.DataFrame(data=data)
    my_df.head(5) # Enjoy!
  • Didn't find a specific flow feature? add a plugin to nfstream in few lines:
    from nfstream import NFPlugin

    class my_awesome_plugin(NFPlugin):
        def on_update(self, obs, entry):
            if obs.raw_size >= 666:
                entry.my_awesome_plugin += 1

    streamer_awesome = NFStreamer(source='devil.pcap', plugins=[my_awesome_plugin()])
    for flow in streamer_awesome:
       print(flow.my_awesome_plugin) # see your dynamically created metric in generated flows
  • More example and details are provided on the official documentation.

Installation

Using pip

Binary installers for the latest released version are available:

    python3 -m pip install nfstream

Build from sources

If you want to build nfstream from sources on your local machine:

linux

    sudo apt-get install autoconf automake libtool pkg-config libpcap-dev
    git clone https://github.com/aouinizied/nfstream.git
    cd nfstream
    python3 -m pip install -r requirements.txt
    python3 setup.py install

macos

    brew install autoconf automake libtool pkg-config
    git clone https://github.com/aouinizied/nfstream.git
    cd nfstream
    python3 -m pip install -r requirements.txt
    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 created nfstream and these fine people have contributed.

Ethics

nfstream is intended for network data research and forensics. Researchers and network data scientists can use these framework to build reliable datasets, train and evaluate network applied machine learning models. As with any packet monitoring tool, nfstream could potentially be misused. Do not run it on any network of which you are not the owner or the administrator.

License

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

Project details


Release history Release notifications | RSS feed

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

If you're not sure about the file name format, learn more about wheel file names.

nfstream-3.2.1-cp38-cp38-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.8

nfstream-3.2.1-cp37-cp37m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.7m

nfstream-3.2.1-cp37-cp37m-macosx_10_15_x86_64.whl (446.8 kB view details)

Uploaded CPython 3.7mmacOS 10.15+ x86-64

nfstream-3.2.1-cp36-cp36m-manylinux1_x86_64.whl (1.1 MB view details)

Uploaded CPython 3.6m

File details

Details for the file nfstream-3.2.1-pp36-pypy36_pp73-manylinux1_x86_64.whl.

File metadata

  • Download URL: nfstream-3.2.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: PyPy
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 PyPy/7.3.0

File hashes

Hashes for nfstream-3.2.1-pp36-pypy36_pp73-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 c050bf23f97a92e383b0dd4007fab52d3fff2f19f4bad5e11ed93061f78a4ab5
MD5 1913285daffc917e2f0ee0d3c5753483
BLAKE2b-256 17d7d7a1e6413022a7e8b9deff6e9854321ac3e1d4c1eff49af2ca92911efa32

See more details on using hashes here.

File details

Details for the file nfstream-3.2.1-cp38-cp38-manylinux1_x86_64.whl.

File metadata

  • Download URL: nfstream-3.2.1-cp38-cp38-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.8
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1

File hashes

Hashes for nfstream-3.2.1-cp38-cp38-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 8cd5aa8d60d91d6d1c52f486425319cde02b88a3a0e54be16294e8952010c06b
MD5 614489c15c146e8f0508c117a45bebf4
BLAKE2b-256 dce00403621ae22e299076f4eb7e480c8ef8049786d6889055160824d58c2315

See more details on using hashes here.

File details

Details for the file nfstream-3.2.1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: nfstream-3.2.1-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for nfstream-3.2.1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 b643f375891aac495c6cc7b45368bc73384c8ec2a404053dc23e37377415170e
MD5 1146fa52fc021bda7ec818b85ae59115
BLAKE2b-256 fb12942c0ee8c7ece0c6e5e37f2e12044091a3fe3042037a3d3add156a9e92ae

See more details on using hashes here.

File details

Details for the file nfstream-3.2.1-cp37-cp37m-macosx_10_15_x86_64.whl.

File metadata

  • Download URL: nfstream-3.2.1-cp37-cp37m-macosx_10_15_x86_64.whl
  • Upload date:
  • Size: 446.8 kB
  • Tags: CPython 3.7m, macOS 10.15+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.7.6

File hashes

Hashes for nfstream-3.2.1-cp37-cp37m-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 dbe4d5eec2b88d05004c523ae8352af1bc644ccfe72d1e093eba11b4daa81781
MD5 517a9583cdd6f1c742157904d0a2688d
BLAKE2b-256 7965b981d50effe64689fc0ce1ee43f753d62d602d2025a85a45db74b33ffd68

See more details on using hashes here.

File details

Details for the file nfstream-3.2.1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: nfstream-3.2.1-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 1.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/40.6.2 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.6.10

File hashes

Hashes for nfstream-3.2.1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d32c9f7dfd999eb65cf01e62dc80ffe093d285a11d51edb9fccb36f5eefd3b1e
MD5 3e9298821a2390fd8d316b50a45ecc2b
BLAKE2b-256 a0512349f9c6b8d69d39b63503adae508846504acfaa974b758bfc4c3a1dc8cf

See more details on using hashes here.

Supported by

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