Skip to main content

PyPCAPKit: comprehensive network packet analysis library

Project description

For any technical and/or maintenance information, please kindly refer to the Official Documentation.

The PyPCAPKit project is an open source Python program focus on network packet parsing and analysis, which works as a comprehensive PCAP file extraction, construction and analysis library.

The whole project supports Python 3.6 or later.

About

PyPCAPKit is a comprehensive Python-native network packet analysis library, with DictDumper as its formatted output dumper.

Unlike popular PCAP file extractors, such as Scapy, DPKT, PyShark, and etc, pcapkit uses streaming strategy to read input files. That is to read frame by frame, decrease occupation on memory, as well as enhance efficiency in some way.

Module Structure

In pcapkit, all files can be described as following eight parts.

  • Interface (pcapkit.interface)

    User interface for the pcapkit library, which standardises and simplifies the usage of this library.

  • Foundation (pcapkit.foundation)

    Synthesises file I/O and protocol analysis, coordinates information exchange in all network layers, as well as provides the foundamental functions for pcapkit.

  • Protocols (pcapkit.protocols)

    Collection of all protocol family, with detailed implementation and methods.

  • Utilities (pcapkit.utilities)

    Auxiliary functions and tools for pcapkit.

  • CoreKit (pcapkit.corekit)

    Core utilities for pcapkit implementation, mainly for internal data structure and processing.

  • ToolKit (pcapkit.toolkit)

    Auxiliary tools for pcapkit to support the multiple extraction engines with a unified interface.

  • DumpKit (pcapkit.dumpkit)

    File output formatters for pcapkit.

  • Constants (pcapkit.const)

    Constant enumerations used in pcapkit for protocol family extraction and representation.

Engine Comparison

Due to the general overhead of pcapkit, its extraction procedure takes around 0.2 milliseconds per packet, which is already impressive but not enough comparing to other popular extration engines availbale on the market, given the fact that pcapkit is a comprehensive packet processing module.

Additionally, pcapkit introduced alternative extractionengines to accelerate this procedure. By now pcapkit supports Scapy, DPKT, and PyShark.

Test Environment

Operating System

macOS Ventura 13.4 Beta (22F5037d)

Chip

Apple M2 Pro

Memory

16 GB

Test Results

Engine

Performance (ms per packet)

dpkt

0.010694_027361

scapy

0.093399_399399

pcapkit

0.199796_296296

pyshark

25.066692_025359

Installation

Simply run the following to install the current version from PyPI:

pip install pypcapkit

Or install the latest version from the gi repository:

git clone https://github.com/JarryShaw/PyPCAPKit.git
cd pypcapkit
pip install -e .
# and to update at any time
git pull

And since pcapkit supports various extraction engines, and extensive plug-in functions, you may want to install the optional ones:

# for DPKT only
pip install pypcapkit[DPKT]
# for Scapy only
pip install pypcapkit[Scapy]
# for PyShark only
pip install pypcapkit[PyShark]
# and to install all the optional packages
pip install pypcapkit[all]
# or to do this explicitly
pip install pypcapkit dpkt scapy pyshark

For CLI usage, you will need to install the optional packages:

pip install pypcapkit[cli]
# or explicitly...
pip install pypcapkit emoji

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 Distribution

pypcapkit-1.0.2.post3.tar.gz (437.2 kB view details)

Uploaded Source

Built Distributions

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

pypcapkit-1.0.2.post3-pp39-none-any.whl (733.8 kB view details)

Uploaded PyPy

pypcapkit-1.0.2.post3-pp38-none-any.whl (733.8 kB view details)

Uploaded PyPy

pypcapkit-1.0.2.post3-cp311-none-any.whl (733.8 kB view details)

Uploaded CPython 3.11

pypcapkit-1.0.2.post3-cp310-none-any.whl (733.8 kB view details)

Uploaded CPython 3.10

pypcapkit-1.0.2.post3-cp38-none-any.whl (733.8 kB view details)

Uploaded CPython 3.8

File details

Details for the file pypcapkit-1.0.2.post3.tar.gz.

File metadata

  • Download URL: pypcapkit-1.0.2.post3.tar.gz
  • Upload date:
  • Size: 437.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.3

File hashes

Hashes for pypcapkit-1.0.2.post3.tar.gz
Algorithm Hash digest
SHA256 818e11f159710daff23d62ff67d2540a667022253ec91c2f84f457200afeac78
MD5 de4f9bd7b81a1ac22c9604fbcf1642fc
BLAKE2b-256 516d25d4e41315ab24409164b3c65772ef4406c43084135edbd02334993d972e

See more details on using hashes here.

File details

Details for the file pypcapkit-1.0.2.post3-pp39-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.0.2.post3-pp39-none-any.whl
Algorithm Hash digest
SHA256 853f629140485f48b1431306c74f40536d8bcd15123542f771e40ef46e766277
MD5 d060456442d664662a8873eb49bbabb1
BLAKE2b-256 040116c4f79c589088de286c8dfaaa50c8e81e4ef581f22e119eacc537afb714

See more details on using hashes here.

File details

Details for the file pypcapkit-1.0.2.post3-pp38-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.0.2.post3-pp38-none-any.whl
Algorithm Hash digest
SHA256 b6056a0518b6ffd72e62f0e9686379b01cef0678e77c27851dfdafdcc194be2e
MD5 6a0d80142200e1da1ee4192de7c653d4
BLAKE2b-256 b1e32d6e29d939fcf1f2d3c193166fe896635465aa7aee63d7bbc83e7ba11e31

See more details on using hashes here.

File details

Details for the file pypcapkit-1.0.2.post3-cp311-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.0.2.post3-cp311-none-any.whl
Algorithm Hash digest
SHA256 546e7d48dca105fb86ed532ecc73da27b7c604b17004cde9c494adb01fa14adf
MD5 6a36edb180342968faa161e9de8e1cee
BLAKE2b-256 d809aa73e1d3e9ce2fe7c11cd11ac0ab5b2f65d90a4625306f2e23fb52974c0d

See more details on using hashes here.

File details

Details for the file pypcapkit-1.0.2.post3-cp310-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.0.2.post3-cp310-none-any.whl
Algorithm Hash digest
SHA256 e17abbf12952ce6c2c5d2a6a3ff4dfe4f99d60bcc8b90cbf4c358333d3542ab3
MD5 d34a130db7e96effdeed2d9ae03999fd
BLAKE2b-256 586bf1b88c2bda1fd0c171f8938616b15593220c27bc3768ccaae5426999a844

See more details on using hashes here.

File details

Details for the file pypcapkit-1.0.2.post3-cp38-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.0.2.post3-cp38-none-any.whl
Algorithm Hash digest
SHA256 8ab8e2a4dc7b6bee0d126277716445a021fb3a82040891b290a61403d99d42a2
MD5 14f372f7b47fb97edc712679d45af222
BLAKE2b-256 003d570c97b49de7811e343a869c42fdbc429ca2a96162f368c86e721428eca1

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