Python binding to windivert driver
Project description
PyDivert
PyDivert is a powerful Python binding for WinDivert, a Windows driver that allows user-mode applications to capture, modify, and drop network packets sent to or from the Windows network stack.
Features
- Capture network packets matching a specific filter.
- Modify packet headers and payloads on the fly.
- Drop unwanted packets.
- Inject new or modified packets into the network stack.
- Modern Python Support: Full integration with
asyncioand Structural Pattern Matching (PEP 634). - Support for WinDivert 2.2+ advanced features (FLOW, SOCKET, and REFLECT layers).
- Bundled Binaries: No need to manually install WinDivert; the 64-bit DLL and driver are included.
Requirements
- Python 3.10+ (64-bit)
- Windows 11 (64-bit)
- Administrator Privileges (required to interact with the WinDivert driver)
[!NOTE] Windows Server is currently untested but likely works if it meets the architecture requirements.
Installation
Install PyDivert using pip:
pip install pydivert
Or using uv:
uv add pydivert
Quick Start
The main entry points are pydivert.WinDivert for capturing and pydivert.Packet for manipulation.
[!TIP] All code examples in this README are verified by automated integration tests in
pydivert/tests/test_readme_examples.py.
Basic Capture and Re-injection
import pydivert
# Capture only TCP packets to port 80 (HTTP requests)
with pydivert.WinDivert("tcp.DstPort == 80") as w:
for packet in w:
print(f"Captured: {packet}")
w.send(packet) # Re-inject the packet back into the stack
When you call .recv() (or iterate over the WinDivert object), the packet is taken out of the Windows network stack. It will not reach its destination unless you explicitly call .send(packet).
First-Class asyncio Support
PyDivert 3.0+ supports asyncio natively using modern async with and async for syntax.
import asyncio
import pydivert
async def main():
# Asynchronously capture packets
async with pydivert.WinDivert("tcp.DstPort == 80") as w:
async for packet in w:
print(f"Async captured: {packet}")
await w.send_async(packet)
if __name__ == "__main__":
asyncio.run(main())
Common Use Cases
1. Structural Pattern Matching (PEP 634)
Filter and analyze packets using clean match/case syntax.
import pydivert
from pydivert.packet import Packet
from pydivert.packet.tcp import TCPHeader
with pydivert.WinDivert("tcp") as w:
for packet in w:
match packet:
case Packet(tcp=TCPHeader(dst_port=80)):
print("HTTP Traffic")
case Packet(tcp=TCPHeader(dst_port=443)):
print("HTTPS Traffic")
w.send(packet)
2. Simple Firewall (Dropping Packets)
By simply not calling .send(packet), the packet is effectively dropped.
import pydivert
# Block all traffic from a specific IP address
with pydivert.WinDivert("ip.SrcAddr == 1.2.3.4") as w:
for packet in w:
print(f"Blocking packet from {packet.src_addr}")
# Packet is dropped here
3. Payload Modification
You can inspect or modify the raw bytes of the packet payload.
import pydivert
# Filter for TCP packets with payload
with pydivert.WinDivert("tcp.PayloadLength > 0") as w:
for packet in w:
if b"secret-token" in packet.payload:
# Redact the token
packet.payload = packet.payload.replace(b"secret-token", b"REDACTED")
w.send(packet)
Packet Integrity and Checksums
PyDivert can verify and recalculate network checksums automatically.
packet.is_checksum_valid: ReturnsTrueif all checksums (IP, TCP, UDP, ICMP) in the packet are correct.packet.recalculate_checksums(): Recalculates all checksums based on the current header and payload values.
if not packet.is_checksum_valid:
print("Corrupted packet detected!")
packet.recalculate_checksums()
Common Packet Properties
The pydivert.Packet object provides easy access to common fields:
- IP Layer:
packet.src_addr,packet.dst_addr,packet.ip.ttl,packet.ip.protocol - TCP/UDP Layer:
packet.src_port,packet.dst_port,packet.tcp.flags - Payload:
packet.payload(bytes) - Metadata:
timestamp: Capture time (QueryPerformanceCounter).is_loopback,is_impostor,is_sniffed: Boolean flags.interface: Index of the capture interface.direction:Direction.INBOUNDorDirection.OUTBOUND.
Detailed protocol headers are available through packet.ipv4, packet.ipv6, packet.tcp, packet.udp, and packet.icmp.
Advanced Usage
WinDivert Layers
Layer.NETWORK(default): IP packets.Layer.FLOW: Connection events.Layer.SOCKET: Socket-level events.Layer.REFLECT: Reflected events.
Flags
Flag.SNIFF: Monitor mode (sniffing).Flag.DROP: Drop packets by default.Flag.FRAGMENTS: Capture all IP fragments.Flag.RECV_ONLY/Flag.SEND_ONLY: Restricted handles.
WinDivert Version Compatibility
| PyDivert | WinDivert |
|---|---|
| 3.0.0+ | 2.2.2 (bundled) - Full support for modern metadata and layers |
Development
- Clone the repository.
- Install dependencies:
uv sync --extra test --extra docs - Run tests (requires Admin):
uv run pytest
Testing with Vagrant
Since WinDivert requires Windows, use Vagrant to run tests on a Windows 11 VM:
vagrant up
vagrant powershell -c '$env:UV_PROJECT_ENVIRONMENT="C:/pydivert_venv"; cd C:/pydivert; uv run pytest'
API Reference
The full API documentation is available at https://ffalcinelli.github.io/pydivert/.
License
PyDivert is dual-licensed under LGPL-3.0-or-later and GPL-2.0-or-later.
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
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pydivert-3.1.0.tar.gz.
File metadata
- Download URL: pydivert-3.1.0.tar.gz
- Upload date:
- Size: 120.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f1fe65aba3ee2fc1533094df92abdea66a78749d52d6a29f089d580f90c22950
|
|
| MD5 |
66d1d673514f0c632ddcb68547d14a87
|
|
| BLAKE2b-256 |
40cec7374d22a539ebf003fe30425692612494fd82ef6c2e30ee174860a6b2ff
|
File details
Details for the file pydivert-3.1.0-py3-none-any.whl.
File metadata
- Download URL: pydivert-3.1.0-py3-none-any.whl
- Upload date:
- Size: 144.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: uv/0.11.3 {"installer":{"name":"uv","version":"0.11.3","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
59bc61134b19ef5aea893a7a19a5e2c32b7d06e94d110dac4b2b38004ee15658
|
|
| MD5 |
b4d4336ed7a0e213f3ebc4f3ffdb1e6a
|
|
| BLAKE2b-256 |
b60aa1cd2063d4093aa69eace2e6cf0faafd26f5343937ad36d7e9663c52ba13
|