Skip to main content

Cython libpcap

Project description

https://img.shields.io/pypi/v/python-libpcap.svg https://api.travis-ci.com/caizhengxin/python-libpcap.svg Documentation Status

Cython libpcap

Features

  • Read pcap file

  • Write pcap file

  • Merge pcap file

  • Get first iface

  • Capture data

Installation

To install python-libpcap, run this command in your terminal:

$ sudo apt-get install libpcap-dev
$ pip install python-libpcap

Demo

Console:

$ mpcap -i pcap/ -o pcap.pcap port 502
$ sudo capture -i enp2s0 -v

Read pcap:

from pylibpcap.pcap import rpcap


for len, t, pkt in rpcap("tests/dns.pcap"):
    print("Buf length:", len)
    print("Time:", t)
    print("Buf:", pkt)

Write pcap:

from pylibpcap.pcap import wpcap


buf = b'\x00\xc0\x9f2A\x8c\x00\xe0\x18\xb1\x0c\xad\x08\x00E\x00\x008' \
      b'\x00\x00@\x00@\x11eG\xc0\xa8\xaa\x08\xc0\xa8\xaa\x14\x80\x1b' \
      b'\x005\x00$\x85\xed\x102\x01\x00\x00\x01\x00\x00\x00\x00\x00' \
      b'\x00\x06google\x03com\x00\x00\x10\x00\x01'


wpcap(buf, "pcap.pcap")
wpcap([buf, buf], "pcap.pcap)

Merge pcap:

from pylibpcap.pcap import mpcap


mpcap("demo.pcap", "demo2.pcap")

mpcap("pcap/", "output.pcap", "port 502")

Get first iface:

from pylibpcap.pcap import get_first_iface

print(get_first_iface())

Capture data:

from pylibpcap.pcap import sniff


for plen, t, buf in sniff("enp2s0", filters="port 53", count=3, promisc=1, out_file="pcap.pcap"):
    print("[+]: Payload len=", plen)
    print("[+]: Time", t)
    print("[+]: Payload", buf)

Credits

This package was created with Cookiecutter and the caizhengxin/cookiecutter-package project template.

Project details


Download files

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

Source Distribution

python-libpcap-0.1.3.tar.gz (60.4 kB view details)

Uploaded Source

File details

Details for the file python-libpcap-0.1.3.tar.gz.

File metadata

  • Download URL: python-libpcap-0.1.3.tar.gz
  • Upload date:
  • Size: 60.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.8

File hashes

Hashes for python-libpcap-0.1.3.tar.gz
Algorithm Hash digest
SHA256 07e7c3194dd6e4742a02fffc2f01a8b53eca1ee04cf9c687c8b68c03d7bafd75
MD5 7ff1115d7d37029633d7921ab9ff6a82
BLAKE2b-256 f147e631fa7e12582c40d0237ff10e6497c08c68b92160cee8c30115d22c3704

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