Python wrapper for the pcap library (ctypes/cffi-based pypcap).
Project description
pcap-ct
Python wrapper for the pcap library.
Overview
About original PyPCAP:
Borrowed from the original website:
PyPCAP
This is a simplified object-oriented Python wrapper for libpcap - the current tcpdump.org version, and the WinPcap port for Windows.
Example use:
>>> import pcap >>> sniffer = pcap.pcap(name=None, promisc=True, immediate=True, timeout_ms=50) >>> addr = lambda pkt, offset: '.'.join(str(ord(pkt[i])) for i in range(offset, offset + 4)) >>> for ts, pkt in sniffer: ... print('%d\tSRC %-16s\tDST %-16s' % (ts, addr(pkt, sniffer.dloff + 12), addr(pkt, sniffer.dloff + 16))) ...
Windows notes
WinPcap has compatibility issues with Windows 10, therefore it’s recommended to use Npcap (Nmap’s packet sniffing library for Windows, based on the WinPcap/Libpcap libraries, but with improved speed, portability, security, and efficiency). Please enable WinPcap API-compatible mode during the library installation.
Requirements
- It is a fully independent package.All necessary things are installed during the normal installation process.
ATTENTION: currently works and tested only for Windows.
Installation
Prerequisites:
Python 3.5 or higher
3.7 with C LIBPCAP 1.8.1 is a primary test environment.
pip and setuptools
To install run:
python -m pip install --upgrade pcap-ct
Development
Visit development page.
Installation from sources:
clone the sources:
git clone https://github.com/karpierz/pcap-ct.git pcap-ct
and run:
python -m pip install ./pcap-ct
or on development mode:
python -m pip install --editable ./pcap-ct
Prerequisites:
Development is strictly based on tox. To install it run:
python -m pip install --upgrade tox
License
Copyright (c) 2016-2019, Adam KarpierzLicensed under the BSD licensePlease refer to the accompanying LICENSE file.
Changelog
1.2.3b1 (2019-11-14)
Update for PyPCAP 1.2.3.
Drop support for Python 2.
Drop support for Python 3.4.
Add support for Python 3.8.
Setup improvements and cleanup.
1.2.0b6 (2019-02-05)
Update required setuptools version.
Minor setup improvements.
1.2.0b5 (2018-11-08)
Update required setuptools version.
Minor setup and tests improvements.
1.2.0b4 (2018-02-26)
Improve and simplify setup and packaging.
1.2.0b3 (2018-02-01)
Update for PyPCAP 1.2.0.
1.2.0b2 (2017-10-10)
Minor changes.
1.2.0b1 (2017-10-05)
Next beta release.
Update for PyPCAP 1.2.0rc.
1.1.6b4 (2017-10-04)
Fourth beta release.
1.1.6b3 (2017-08-28)
Third beta release.
1.1.6b2 (2017-08-28)
Second beta release.
1.1.6b1 (2017-08-27)
First beta release.
1.1.6a15 (2017-08-25)
Next alpha release.
1.1.6a0 (2017-06-10)
First alpha release.
0.0.1 (2016-09-23)
Initial release.
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
File details
Details for the file pcap-ct-1.2.3b1.zip
.
File metadata
- Download URL: pcap-ct-1.2.3b1.zip
- Upload date:
- Size: 31.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/41.6.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e90be66bbec0d650bd8e72217e86c941499d699e8e0f5da8fca75f0f0872bc95 |
|
MD5 | 388e6369983a19e2e5d57dd9441e2ee1 |
|
BLAKE2b-256 | 1c1b0620e6cef0ada287ba6ca34ee5ddf391d7e71009a014e736aed9b8f1ec01 |