Welcome to FlowParser!
FlowParser is a C Python extenson for reconstructing and dumping IP flows from either a packet trace or a live capture. It works by sniffing traffic and keeping track of active flows. Each flow also has the headers (network and transport layer) of its packets stored. The flow and its packet headers are made available either on demand or when the flow terminates.
Use Cases
What could you possibly use another packet sniffer for?
Active monitoring of flows in / out of your machine / network. Ever wondered what flows are currently active and how much bandwidth they are using? FlowParser is an easy-to-use lightweight way of finding out.
Looking for anomalies in header fields. FlowParser will let you spot and record flows that for example have strange variation in TTL.
Quick offline data parsing. If you are looking for a specific flow or you want to study the behavior of a class of flows in a multi-GB packet trace FlowParser can help you accomplish the task quickly and easily.
And lots more. In general the idea is that reconstructing a flow and looking at the header fields of its packets should be as quick and painless as a couple of lines of Python.
Simple Example
This simple snippet will start listening to the en0 interface and every ten seconds will print the five-tuple id of flows that go faster than 1KB per second:
import fparser
import time
fp = fparser.FParser('en0')
while True:
time.sleep(10)
for flow in fp.flow_iter():
if flow.get_info().Bps > 1000:
print flow.get_id()
Release files for FlowParser 0.1.10
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| FlowParser-0.1.10.tar.gz | 33.3 kB | Details |
Release files / FlowParser-0.1.10.tar.gz
| Download URL | FlowParser-0.1.10.tar.gz |
|---|---|
| Size | 33.3 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
82ee07d49f5d4a9fe9453a51b90082087f5a572a9aa5258fa721d7ef0020b565
|
|
BLAKE2b-256 checksum How to use checksums |
04a6453c18d85fe72c7d6f5ff943e88e5efa73d350e2f1d9c5d55112e476b751
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |