https://github.com/cedricbonhomme/ip-link
Visualizing the relationships between different IP from network traffic capture.
https://github.com/cedricbonhomme/ip-link
circos network-traffic-capture pcap python security visual-analysis visualisation
Last synced: 2 months ago
JSON representation
Visualizing the relationships between different IP from network traffic capture.
- Host: GitHub
- URL: https://github.com/cedricbonhomme/ip-link
- Owner: cedricbonhomme
- License: gpl-3.0
- Created: 2014-10-05T17:32:42.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2025-01-13T19:26:53.000Z (5 months ago)
- Last Synced: 2025-03-28T00:49:50.371Z (3 months ago)
- Topics: circos, network-traffic-capture, pcap, python, security, visual-analysis, visualisation
- Language: Python
- Homepage: https://ip-link.readthedocs.io
- Size: 12.3 MB
- Stars: 9
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: COPYING
- Authors: AUTHORS
Awesome Lists containing this project
README
# IP-Link
## Presentation
The goal of [IP-Link](https://github.com/cedricbonhomme/IP-Link)
is to visualize the relationships between different IP from network traffic capture.## Installation
Python >= 3.9.
```bash
$ sudo apt install libpcap0.8
$ git clone https://github.com/cedricbonhomme/IP-Link
$ cd ip-link/
$ poetry install
$ poetry shell
```## Quick example
```bash
$ mkdir captures data
$ sudo tcpdump -p -i enp5s0 -s 0 -w captures/snif.pcap
$ ip-link/pcap_to_object.py -i captures/snif.pcap -o data/dic.pyobj
$ ip-link/object_to_graphviz.py -i ./data/dic.pyobj
$ dot -Tpng -o ./data/graphviz.png ./data/ip.dot
$ xdg-open ./data/graphviz.png &
```## Tutorial and examples
You will find a complete tutorial
[here](https://ip-link.readthedocs.io/en/latest/tutorial.html).If you wish and if you like IP-Link, you can donate:

Thank you !
## License
This software is licensed under
[GNU General Public License version 3](https://www.gnu.org/licenses/gpl-3.0.html).Copyright (C) 2010-2024 [Cédric Bonhomme](https://www.cedricbonhomme.org).