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 is designed to be much more comprehensive, which means it is able to provide more detailed information about the packet, as well as a more Pythonic interface for users to interact with.

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.1

Chip

Apple M2 Pro

Memory

16 GB

Test Results

Engine

Performance (ms per packet)

dpkt

0.010390_056723

scapy

0.091690_233567

pcapkit

0.200390_390390

pyshark

24.682185_018351

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

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 Distribution

pypcapkit-1.3.1.post26.tar.gz (671.0 kB view details)

Uploaded Source

Built Distributions

pypcapkit-1.3.1.post26-cp312-none-any.whl (975.6 kB view details)

Uploaded CPython 3.12

pypcapkit-1.3.1.post26-cp311-none-any.whl (975.6 kB view details)

Uploaded CPython 3.11

pypcapkit-1.3.1.post26-cp310-none-any.whl (975.6 kB view details)

Uploaded CPython 3.10

pypcapkit-1.3.1.post26-cp38-none-any.whl (975.6 kB view details)

Uploaded CPython 3.8

File details

Details for the file pypcapkit-1.3.1.post26.tar.gz.

File metadata

  • Download URL: pypcapkit-1.3.1.post26.tar.gz
  • Upload date:
  • Size: 671.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/5.1.1 CPython/3.12.6

File hashes

Hashes for pypcapkit-1.3.1.post26.tar.gz
Algorithm Hash digest
SHA256 67d7457834be65c78f4443476db6076ac6e54cb51685ec49ed807df4efcdb6b6
MD5 47941cf4d9f4f904749f502de8f274e4
BLAKE2b-256 ad313f82242d8832d670beedb0fe46dac9599743f606d4c5432b7cda0615f5c3

See more details on using hashes here.

File details

Details for the file pypcapkit-1.3.1.post26-cp312-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.3.1.post26-cp312-none-any.whl
Algorithm Hash digest
SHA256 5e501d9d428c9e3c5a18919c26fada0502737f9002b1df106397d0a3bcfe9509
MD5 c92369c83b872f2f8c6f5cfeb840e5d4
BLAKE2b-256 02793ca854c1e9bd600942f3a268044a352bcc3e8b09f58cf1db6b15fe5af340

See more details on using hashes here.

File details

Details for the file pypcapkit-1.3.1.post26-cp311-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.3.1.post26-cp311-none-any.whl
Algorithm Hash digest
SHA256 f78f51dd1a5489fe82306762213a40aacbce780a28cbd3fe672dbcf0aefd6895
MD5 a54bd860cee62d5fae437d381a71a484
BLAKE2b-256 d9bf6c7d65a77748f8debf879a977ef14bf3fedf70aeb29bbf093b8c81a40085

See more details on using hashes here.

File details

Details for the file pypcapkit-1.3.1.post26-cp310-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.3.1.post26-cp310-none-any.whl
Algorithm Hash digest
SHA256 4d2049c136aaa63f4db7ea5d6829f46e4fbb5a52c8cfb85eb267719e60440ccf
MD5 bf3cc2cd7f27d2fd8c98c8be562580e9
BLAKE2b-256 abd464a130a4a439267a34dd07e0b6d00a69e7f5ff4774196e4e8698ed4b49ed

See more details on using hashes here.

File details

Details for the file pypcapkit-1.3.1.post26-cp38-none-any.whl.

File metadata

File hashes

Hashes for pypcapkit-1.3.1.post26-cp38-none-any.whl
Algorithm Hash digest
SHA256 cb4fea599c1db4da300efa481c0771cd207f998889db188b3e570b3f880d4775
MD5 2e0e17b894229793d63c2d4cd51a5110
BLAKE2b-256 af8983a265303fa9766847611621d2b6449edb40981d6b6ead76bdf016b15b15

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