{"id":18277070,"url":"https://github.com/kelvinleandro/caramelo-sniffer-react","last_synced_at":"2026-04-06T02:33:38.003Z","repository":{"id":251245240,"uuid":"831412564","full_name":"kelvinleandro/caramelo-sniffer-react","owner":"kelvinleandro","description":"A Linux packet sniffer using Python's Socket Programming, integrated with React for the UI.","archived":false,"fork":false,"pushed_at":"2024-08-07T23:49:46.000Z","size":506,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-03T14:36:29.363Z","etag":null,"topics":["computer-networks","flask","javascript","network-programming","nextjs","nextjs14","packet-capture","packet-sniffer","python","python3","react","reactjs","shadcn-ui","socket","socket-programming","typescript"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","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/kelvinleandro.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":"2024-07-20T13:26:52.000Z","updated_at":"2024-08-07T23:49:49.000Z","dependencies_parsed_at":"2024-12-22T18:41:40.929Z","dependency_job_id":null,"html_url":"https://github.com/kelvinleandro/caramelo-sniffer-react","commit_stats":null,"previous_names":["kelvinleandro/caramelo-sniffer-react"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kelvinleandro/caramelo-sniffer-react","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelvinleandro%2Fcaramelo-sniffer-react","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelvinleandro%2Fcaramelo-sniffer-react/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelvinleandro%2Fcaramelo-sniffer-react/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelvinleandro%2Fcaramelo-sniffer-react/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kelvinleandro","download_url":"https://codeload.github.com/kelvinleandro/caramelo-sniffer-react/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kelvinleandro%2Fcaramelo-sniffer-react/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31457722,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-05T21:22:52.476Z","status":"online","status_checked_at":"2026-04-06T02:00:07.287Z","response_time":112,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["computer-networks","flask","javascript","network-programming","nextjs","nextjs14","packet-capture","packet-sniffer","python","python3","react","reactjs","shadcn-ui","socket","socket-programming","typescript"],"created_at":"2024-11-05T12:18:02.945Z","updated_at":"2026-04-06T02:33:37.987Z","avatar_url":"https://github.com/kelvinleandro.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Caramelo Sniffer\n\nThis project is a packet sniffer application with a client-server architecture. The backend is built with Python for packet capturing and Flask to create the endpoints, while the frontend is developed using Next.js, TypeScript, and Shadcn UI to provide a user-friendly interface. If you're interested in a TUI version, take a look at [this repository](https://github.com/kelvinleandro/caramelo-sniffer).\n\n## Preview\n![preview](preview.png)\n\n## Installation\n\nClone the repository:\n\n```bash\ngit clone https://github.com/kelvinleandro/caramelo-sniffer-react.git\n```\n\n### Server Setup\n\n1. Navigate to the server directory:\n\n```bash\ncd caramelo-sniffer-react/server\n```\n\n2. Create a virtual environment within the directory:\n\n```bash\npython3 -m venv .venv\n```\n\n3. Activate the virtual environment:\n\n```bash\nsource .venv/bin/activate\n```\n\n4. Install required Python packages:\n\n```bash\npip install -r requirements.txt\n```\n\n### Client Setup\n\n1. Navigate to the client directory:\n\n```bash\ncd ../client\n```\n\n2. Install required Node.js packages:\n\n```bash\nnpm install\n```\n\n## Usage\n\n### Server\n\n1. Inside the server folder, switch to the root user:\n\n```bash\nsudo su\n```\n\n2. Activate the virtual environment:\n\n```bash\nsource .venv/bin/activate\n```\n\n3. Run the Flask application:\n\n```bash\npython3 app.py\n```\n\n### Client\n\n1. Inside the client folder, start the development server:\n\n```bash\nnpm run dev\n```\n\n2. Open your browser and navigate to http://localhost:3000 to access the application interface.\n\n## Features\n\n- **Table Management:** Order packets by packet number and filter the table based on the transport protocol.\n- **Layer Information:**\n  - **Data Link Layer:** Displays information about the data link layer.\n  - **Network Layer:** Provides details for IPv4 and IPv6.\n  - **Transport Layer:** Shows information for TCP, UDP, and ICMP\n- **Payload Information:** Displays the payload of each packet.\n\n## Notes\n\n- Ensure you are running Linux as the application is specifically designed for this operating system.\n- Ensure you have Python 3 and Node.js installed on your system.\n- The server must be running to serve API endpoints to the client application.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkelvinleandro%2Fcaramelo-sniffer-react","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkelvinleandro%2Fcaramelo-sniffer-react","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkelvinleandro%2Fcaramelo-sniffer-react/lists"}