Exploratory Python Chained Generator Project
Project description
Python Chained Generators for Network Packets: Read the Docs
Install/Run Stuff
Want to see what’s happening on your network right now? Just install chains and run ‘netwatch’.
$ pip install chains $ netwatch -s 2015-09-07 19:08:34 - UDP IP 192.168.1.9(internal)--> 224.0.0.251(multicast_dns) 2015-09-07 19:08:34 - UDP IP6 fe80::6e40:8ff:fe89:fc08(internal) --> ff02::fb(multicast_dns) 2015-09-07 19:08:34 - UDP IP 192.168.1.14(internal)--> 224.0.0.251(multicast_dns) 2015-09-07 19:08:34 - UDP IP6 fe80::8a0:4946:3c8a:e6a1(internal)--> ff02::fb(multicast_dns) 2015-09-07 19:08:34 - TCP IP 192.168.1.9(internal)--> 49.75.183.151(nxdomain) 2015-09-07 19:08:36 - TCP IP 192.168.1.9(internal)--> 54.164.252.174(compute-1.amazonaws.com) 2015-09-07 19:08:36 - UDP IP 192.168.1.1(internal)--> 192.168.1.9(internal) 2015-09-07 19:08:36 - TCP IP 54.164.252.174(compute-1.amazonaws.com)--> 192.168.1.9(internal) ...
Want to go to coffee shop and see http(s) requests floating about?
$ urlwatch HTTP_REQUEST 192.168.1.9 --> Host: clc.stackoverflow.com URI: /j/p.js?d=hireme&ac=891012&tags=python;attributes&lw=5913&bw=1539 Referer: http://stackoverflow.com/questions/610883/attribute-in-python Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 HTTP_REQUEST 192.168.1.9 --> Host: ajax.googleapis.com URI: /ajax/libs/jquery/1.7.1/jquery.min.js Referer: http://stackoverflow.com/questions/610883/attribute-in-python Agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 HTTPS_REQUEST 192.168.1.9 --> 199.166.0.200(sc.iasds01.com) tls_records(5) TLSRecord(length=512, version=769, type=22, data='\x01\x00\x01\xfc\x03\x03K\t\xf8_\x8... TLSRecord(length=262, version=771, type=22, data='\x10\x00\x01\x02\x01\x00Vfd\x8f8a\x... TLSRecord(length=1, version=771, type=20, data='\x01') TLSRecord(length=64, version=771, type=22, data="l\xd0\xce\x96\xf5\x1a\xf8\xcf\xcc\x1... TLSRecord(length=560, version=771, type=23, data='\x1d\x942K\xfb\x87\x19v\xba\x13\x14...
Documentation
About
The Chains project is an exploration of python components that you ‘chain’ together to process streaming network packets. The use of native python generators means the code is extremely lightweight and efficient.
Example
# Create the classes streamer = packet_streamer.PacketStreamer(iface_name=data_path, max_packets=50) meta = packet_meta.PacketMeta() rdns = reverse_dns.ReverseDNS() printer = packet_printer.PacketPrinter() # Set up the chain meta.link(streamer) rdns.link(meta) printer.link(rdns) # Pull the chain printer.pull()
Example Output
Timestamp: 2015-05-27 01:17:07.919743
Ethernet Frame: 6c:40:08:89:fc:08 --> 01:00:5e:00:00:fb (type: 2048)
Packet: IP 192.168.1.9 --> 224.0.0.251 (len:55 ttl:255) -- Frag(df:0 mf:0 offset:0)
Domains: LOCAL --> multicast_dns
Transport: UDP {'dport': 5353, 'sum': 59346, 'sport': 5353, 'data': '...', 'ulen': 35}
Application: None
Timestamp: 2015-05-27 01:17:07.919926
Ethernet Frame: 6c:40:08:89:fc:08 --> 33:33:00:00:00:fb (type: 34525)
Packet: IP6 fe80::6e40:8ff:fe89:fc08 --> ff02::fb (len:35 ttl:255)
Domains: LOCAL --> multicast_dns
Transport: UDP {'dport': 5353, 'sum': 6703, 'sport': 5353, 'data': '...', 'ulen': 35}
Application: None
...
LICENSE
MIT Licensed
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 chains-0.2.0.tar.gz.
File metadata
- Download URL: chains-0.2.0.tar.gz
- Upload date:
- Size: 60.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f56b905805333712094fd890390063bfad561ca6768a17c32b6829c28cbaa065
|
|
| MD5 |
6ab42471f432f88255fce197b1af8fde
|
|
| BLAKE2b-256 |
ab17ecbf7e030fdfb0aab451eba76e5ee6c40e2cc5e4a9629a99c3f7ce67b7b9
|
File details
Details for the file chains-0.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: chains-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 37.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6198eaca829cc145d5a3f9b29fb3d930f975d2de3a27172ae065be36c8e6e877
|
|
| MD5 |
4cf8c5af27b71cb96e26113153f2e5aa
|
|
| BLAKE2b-256 |
78ce27e6571c3d819c741712c7cbcf18f45ffc21bcc80058a20e36cc84c45150
|