Cython libpcap
Project description
Cython libpcap, read/write/merge/capture
GIthub repo: https://github.com/caizhengxin/python-libpcap
Documentation: https://python-libpcap.readthedocs.io
Free software: BSD lincense
Features
Read pcap file
Write pcap file
Merge pcap file
Multi-file quick merge
Get first iface
Get iface list
Send raw packet
Capture data
Installation
To install python-libpcap, run this command in your terminal:
$ sudo apt-get install libpcap-dev
$ pip3 install Cython
$ pip3 install python-libpcap
Demo
Console:
# Multi-file quick merge
$ mpcap -i pcap/ -o pcap.pcap port 502
# Capture data packet
$ 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 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)
from pylibpcap import OpenPcap
with OpenPcap("pcap.pcap", "a") as f:
f.write(buf)
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())
Get iface list:
from pylibpcap import get_iface_list
print(get_iface_list())
Send raw packet:
from pylibpcap import send_packet
send_packet("enp2s0", b"")
Capture data:
from pylibpcap.pcap import sniff
for plen, t, buf in sniff("enp2s0", filters="port 53", count=-1, 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
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
python-libpcap-0.2.5.tar.gz
(63.3 kB
view details)
File details
Details for the file python-libpcap-0.2.5.tar.gz
.
File metadata
- Download URL: python-libpcap-0.2.5.tar.gz
- Upload date:
- Size: 63.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.23.0 setuptools/42.0.2 requests-toolbelt/0.9.1 tqdm/4.35.0 CPython/3.6.9
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b67aa8247f4e22895364d03746badbe80b8e06c6cfed30871ede6de85a152795 |
|
MD5 | c4807bdf3d4c27b6b5e733f837da4273 |
|
BLAKE2b-256 | 8987108298ab91d62258ef0fde8a15330d7e4889475252f99dbbe4123c4fe9c8 |