{"id":37127661,"url":"https://github.com/joeke80215/dumpcat","last_synced_at":"2026-01-14T14:51:58.794Z","repository":{"id":57555324,"uuid":"149775566","full_name":"joeke80215/dumpcat","owner":"joeke80215","description":"dump network packet and log to database","archived":false,"fork":false,"pushed_at":"2022-07-24T06:22:54.000Z","size":749,"stargazers_count":9,"open_issues_count":0,"forks_count":3,"subscribers_count":1,"default_branch":"master","last_synced_at":"2024-06-20T00:42:07.892Z","etag":null,"topics":["elasticsearch","golang","gopacket","ipv4","libpcap","tcp"],"latest_commit_sha":null,"homepage":"","language":"Go","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/joeke80215.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-09-21T14:35:04.000Z","updated_at":"2022-10-17T05:26:09.000Z","dependencies_parsed_at":"2022-09-26T18:51:15.642Z","dependency_job_id":null,"html_url":"https://github.com/joeke80215/dumpcat","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/joeke80215/dumpcat","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeke80215%2Fdumpcat","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeke80215%2Fdumpcat/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeke80215%2Fdumpcat/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeke80215%2Fdumpcat/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/joeke80215","download_url":"https://codeload.github.com/joeke80215/dumpcat/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/joeke80215%2Fdumpcat/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28424003,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T13:30:50.153Z","status":"ssl_error","status_checked_at":"2026-01-14T13:29:08.907Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["elasticsearch","golang","gopacket","ipv4","libpcap","tcp"],"created_at":"2026-01-14T14:51:58.190Z","updated_at":"2026-01-14T14:51:58.783Z","avatar_url":"https://github.com/joeke80215.png","language":"Go","funding_links":[],"categories":[],"sub_categories":[],"readme":"# dumpcat\n[![Go Report Card](https://goreportcard.com/badge/github.com/joeke80215/dumpcat)](https://goreportcard.com/report/github.com/joeke80215/dumpcat)\n[![Codacy Badge](https://api.codacy.com/project/badge/Grade/7bd35b95e8664bd5b8636efa7673c729)](https://www.codacy.com/app/joeekee/dumpcat?utm_source=github.com\u0026amp;utm_medium=referral\u0026amp;utm_content=joeke80215/dumpcat\u0026amp;utm_campaign=Badge_Grade)\n[![GitHub](https://img.shields.io/github/license/mashape/apistatus.svg)](https://github.com/joeke80215/dumpcat/blob/master/LICENSE)\n[![Build Status](https://travis-ci.org/joeke80215/dumpcat.svg?branch=master)](https://travis-ci.org/joeke80215/dumpcat)\n\ndump network packet to database\n## overview\n* dump packet network to database\n* monitor network packet\n* analysis network packet\n\n\n## prerequest\n- linux: install libpcap \n  - centos \n    ```\n    sudo yum install -y libpcap-devel \u0026\u0026 sufo yum -y install libpcap\n    ```\n  - ubuntu \n    ```\n    apt-get install -y libpcap-devel \u0026\u0026 apt-get install -y libpcap\n    ```\n- windows: install winpcap (https://www.winpcap.org/)\n\n## install\n```\ngo get github.com/joeke80215/dumpcat\n```\n## build\n```\ncd $GOPATH/src/github.com/joeke80215/dumpcat\ngo build -v\n```\n\n## filter\nBPF format (http://biot.com/capstats/bpf.html)\n\n## database support\n- elasticsearch\n\n## logic layer support\n- latency\n\n## config\nconfig.yaml\n```\ndumplist:\n  {dump name}:\n    device: {device name}\n    bpf: {BPF filter string}\n    .\n    .\n    .\n\nlogics:\n- timeoffset\noutput:\n- elasticsearch:\n  host: {elasticsearch server host}\n```\n\n## usage example\n#### create config.yaml\n```\ndumpList: \n  http:\n    device: \"enp2s0\"\n    bpf: \"tcp port 80\"\n  ftp:\n    device: \"enp2s0\"\n    bpf: \"tcp port 21\"\n  sftp:\n    device: \"enp2s0\"\n    bpf: \"tcp port 22\"\nlogics:\n- latency\noutput:\n  elasticsearch:\n    host: \"http://192.168.0.100:9200\"\n```\n#### execute\n```\n./dumpcat -f config.yaml\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoeke80215%2Fdumpcat","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjoeke80215%2Fdumpcat","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjoeke80215%2Fdumpcat/lists"}