{"id":27140419,"url":"https://github.com/definazu/anansicapture","last_synced_at":"2026-04-11T10:31:16.115Z","repository":{"id":286428854,"uuid":"958530574","full_name":"Definazu/AnansiCapture","owner":"Definazu","description":"A simple cross-platform data traffic interception and analysis (NTA) tool written in Rust. ","archived":false,"fork":false,"pushed_at":"2025-04-06T11:58:53.000Z","size":4,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-06T12:31:10.179Z","etag":null,"topics":["cross-platform","html-css-javascript","network","network-analysis","rust","sniffer","svelte","tauri","typescript","vite","webapp","windows"],"latest_commit_sha":null,"homepage":"","language":"Svelte","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Definazu.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2025-04-01T10:52:47.000Z","updated_at":"2025-04-06T12:05:11.000Z","dependencies_parsed_at":"2025-04-07T00:30:41.597Z","dependency_job_id":null,"html_url":"https://github.com/Definazu/AnansiCapture","commit_stats":null,"previous_names":["definazu/anansicapture"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Definazu%2FAnansiCapture","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Definazu%2FAnansiCapture/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Definazu%2FAnansiCapture/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Definazu%2FAnansiCapture/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Definazu","download_url":"https://codeload.github.com/Definazu/AnansiCapture/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247785943,"owners_count":20995644,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["cross-platform","html-css-javascript","network","network-analysis","rust","sniffer","svelte","tauri","typescript","vite","webapp","windows"],"created_at":"2025-04-08T05:52:05.949Z","updated_at":"2025-12-30T19:05:25.871Z","avatar_url":"https://github.com/Definazu.png","language":"Svelte","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align=\"center\"\u003eAnansiCapture\u003c/h1\u003e\n\u003cp align=\"center\"\u003e\n\u003cimg alt=\"Static Badge\" src=\"https://img.shields.io/badge/made_by-Definazu-red?style=for-the-badge\u0026link=https%3A%2F%2Fgithub.com%2FDefinazu\"\u003e\n\u003cimg alt=\"GitHub License\" src=\"https://img.shields.io/github/license/Definazu/AnansiCapture?style=for-the-badge\"\u003e\n\u003cimg alt=\"GitHub top language\" src=\"https://img.shields.io/github/languages/top/Definazu/AnansiCapture?style=for-the-badge\"\u003e\n\u003cimg alt=\"GitHub repo size\" src=\"https://img.shields.io/github/repo-size/Definazu/AnansiCapture?style=for-the-badge\"\u003e\n\u003c/p\u003e\n\n## Definition\nAnansiCapture is a powerful cross-platform Network Traffic Analysis (NTA) tool written in Rust. It provides both CLI and GUI interfaces for capturing, analyzing, and displaying network traffic in real-time. The tool is designed to be user-friendly while offering detailed packet inspection.\n\n## Features\n- Real-time packet capture and analysis\n- Support for multiple protocols:\n  - TCP, UDP, ICMP, ICMPv6\n  - IPv4, IPv6\n  - DNS, DHCP, HTTP, TLS\n  - ARP, IGMP, SMB\n- Color-coded protocol display\n- Detailed packet information\n- Cross-platform support (Linux, Windows, macOS) (**!Tested on Linux only!**)\n- Both CLI and GUI interfaces\n\n## Installation\n### Prerequisites\n- Rust (latest stable version)\n- Cargo (Rust's package manager)\n- libpcap (for packet capture)\n- Node.js and npm (for GUI development)\n\n### For Linux\n1. **Install dependencies**:\n```bash\n# For Debian/Ubuntu\nsudo apt-get update\nsudo apt-get install libpcap-dev npm\n\n# For Arch Linux\nsudo pacman -S libpcap npm\n```\n\n2. **Clone the repository**:\n```bash\ngit clone https://github.com/Definazu/AnansiCapture.git\ncd AnansiCapture\n```\n\n3. **Build the project**:\n```bash\ncargo build --release\n```\n\n## Usage\n### CLI Interface\n```bash\n# Show help\n./target/release/anansi help\n\n# Capture traffic on specific interface\n./target/release/anansi capture -i wlan0\n\n# Capture with specific filter (BPF syntax)\n./target/release/anansi capture -i eth0 -f \"port 80\"\n```\n\n### GUI Interface\n```bash\ncd gui\nnpm install\nnpm run tauri dev\n```\n\n## Command Line Options\n- `-i, --interface`: Specify network interface\n- `-f, --filter`: Apply BPF filter\n- `-d, --debug`: Enable debug mode\n- `-h, --help`: Show help message\n\n## Output Format\nThe tool displays captured packets in the following format:\n```\nTime Source -\u003e Destination Protocol Length Info\n12:15:25.637 192.168.0.103 -\u003e 10.1.1.80 DNS 74 Standard query 0x45d8 api2.app.sh A\n```\n\n## Contributing\nContributions are welcome! Please feel free to submit a Pull Request.\n\n## License\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefinazu%2Fanansicapture","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdefinazu%2Fanansicapture","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdefinazu%2Fanansicapture/lists"}