├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── charts └── webapp │ ├── Chart.yaml │ ├── templates │ ├── postgres-deployment.yaml │ ├── postgres-service.yaml │ └── postgres-storage.yaml │ └── values.yaml ├── cmd ├── demo │ ├── pause │ │ ├── ebpfkit.go │ │ └── main.go │ └── webapp │ │ ├── main.go │ │ ├── model.go │ │ └── version.go ├── ebpfkit-client │ ├── main.go │ └── run │ │ ├── cmd.go │ │ ├── docker │ │ ├── del.go │ │ ├── list.go │ │ ├── put.go │ │ └── utils.go │ │ ├── ebpfkit-client.go │ │ ├── fs_watch │ │ ├── add.go │ │ ├── delete.go │ │ ├── get.go │ │ └── utils.go │ │ ├── model │ │ └── model.go │ │ ├── network_discovery │ │ ├── get.go │ │ ├── graph.go │ │ ├── scan.go │ │ └── utils.go │ │ ├── options.go │ │ ├── pipe_prog │ │ ├── del.go │ │ ├── put.go │ │ └── utils.go │ │ ├── postgres │ │ ├── del.go │ │ ├── list.go │ │ ├── put.go │ │ └── utils.go │ │ └── utils │ │ ├── byteorder.go │ │ └── cleanup.go └── ebpfkit │ ├── main.go │ └── run │ ├── cmd.go │ ├── ebpfkit.go │ └── options.go ├── dockerhub ├── pause │ ├── Dockerfile │ ├── Makefile │ └── pause.c └── webapp │ ├── Dockerfile │ └── Makefile ├── ebpf ├── .gitignore ├── bootstrap.c ├── bpf │ ├── bpf.h │ ├── bpf_helpers.h │ └── bpf_map.h ├── ebpfkit │ ├── arp.h │ ├── base64.h │ ├── bpf.h │ ├── cgroup.h │ ├── const.h │ ├── defs.h │ ├── dns.h │ ├── docker.h │ ├── fs.h │ ├── fs_action.h │ ├── fs_action_defs.h │ ├── fs_action_user.h │ ├── fs_watch.h │ ├── hash.h │ ├── http_action.h │ ├── http_response.h │ ├── http_router.h │ ├── kmod.h │ ├── network_discovery.h │ ├── parser.h │ ├── pipe.h │ ├── postgres.h │ ├── process.h │ ├── raw_syscalls.h │ ├── signal.h │ ├── sqli.h │ ├── stat.h │ ├── tc.h │ ├── tcp_ack_override.h │ ├── tcp_check.h │ └── xdp.h └── main.c ├── go.mod ├── go.sum ├── graphs ├── active_network_discovery.svg ├── network_discovery.svg └── passive_network_discovery.svg ├── pkg ├── assets │ └── probe.go ├── ebpfkit │ ├── byteorder.go │ ├── ebpfkit.go │ ├── fa_action.go │ ├── hash.go │ ├── manager.go │ ├── model.go │ ├── program.go │ └── utils.go └── model │ └── model.go └── tools.go /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .idea/ 3 | bin/ 4 | vendor/ 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/README.md -------------------------------------------------------------------------------- /charts/webapp/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/charts/webapp/Chart.yaml -------------------------------------------------------------------------------- /charts/webapp/templates/postgres-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/charts/webapp/templates/postgres-deployment.yaml -------------------------------------------------------------------------------- /charts/webapp/templates/postgres-service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/charts/webapp/templates/postgres-service.yaml -------------------------------------------------------------------------------- /charts/webapp/templates/postgres-storage.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/charts/webapp/templates/postgres-storage.yaml -------------------------------------------------------------------------------- /charts/webapp/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/charts/webapp/values.yaml -------------------------------------------------------------------------------- /cmd/demo/pause/ebpfkit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/demo/pause/ebpfkit.go -------------------------------------------------------------------------------- /cmd/demo/pause/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/demo/pause/main.go -------------------------------------------------------------------------------- /cmd/demo/webapp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/demo/webapp/main.go -------------------------------------------------------------------------------- /cmd/demo/webapp/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/demo/webapp/model.go -------------------------------------------------------------------------------- /cmd/demo/webapp/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/demo/webapp/version.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/main.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/cmd.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/docker/del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/docker/del.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/docker/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/docker/list.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/docker/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/docker/put.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/docker/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/docker/utils.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/ebpfkit-client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/ebpfkit-client.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/fs_watch/add.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/fs_watch/add.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/fs_watch/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/fs_watch/delete.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/fs_watch/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/fs_watch/get.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/fs_watch/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/fs_watch/utils.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/model/model.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/network_discovery/get.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/network_discovery/get.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/network_discovery/graph.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/network_discovery/graph.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/network_discovery/scan.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/network_discovery/scan.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/network_discovery/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/network_discovery/utils.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/options.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/pipe_prog/del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/pipe_prog/del.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/pipe_prog/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/pipe_prog/put.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/pipe_prog/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/pipe_prog/utils.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/postgres/del.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/postgres/del.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/postgres/list.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/postgres/list.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/postgres/put.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/postgres/put.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/postgres/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/postgres/utils.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/utils/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/utils/byteorder.go -------------------------------------------------------------------------------- /cmd/ebpfkit-client/run/utils/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit-client/run/utils/cleanup.go -------------------------------------------------------------------------------- /cmd/ebpfkit/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit/main.go -------------------------------------------------------------------------------- /cmd/ebpfkit/run/cmd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit/run/cmd.go -------------------------------------------------------------------------------- /cmd/ebpfkit/run/ebpfkit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit/run/ebpfkit.go -------------------------------------------------------------------------------- /cmd/ebpfkit/run/options.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/cmd/ebpfkit/run/options.go -------------------------------------------------------------------------------- /dockerhub/pause/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/dockerhub/pause/Dockerfile -------------------------------------------------------------------------------- /dockerhub/pause/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/dockerhub/pause/Makefile -------------------------------------------------------------------------------- /dockerhub/pause/pause.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/dockerhub/pause/pause.c -------------------------------------------------------------------------------- /dockerhub/webapp/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/dockerhub/webapp/Dockerfile -------------------------------------------------------------------------------- /dockerhub/webapp/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/dockerhub/webapp/Makefile -------------------------------------------------------------------------------- /ebpf/.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | -------------------------------------------------------------------------------- /ebpf/bootstrap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/bootstrap.c -------------------------------------------------------------------------------- /ebpf/bpf/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/bpf/bpf.h -------------------------------------------------------------------------------- /ebpf/bpf/bpf_helpers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/bpf/bpf_helpers.h -------------------------------------------------------------------------------- /ebpf/bpf/bpf_map.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/bpf/bpf_map.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/arp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/arp.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/base64.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/base64.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/bpf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/bpf.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/cgroup.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/cgroup.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/const.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/const.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/defs.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/dns.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/dns.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/docker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/docker.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/fs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/fs.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/fs_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/fs_action.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/fs_action_defs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/fs_action_defs.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/fs_action_user.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/fs_action_user.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/fs_watch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/fs_watch.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/hash.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/hash.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/http_action.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/http_action.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/http_response.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/http_response.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/http_router.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/http_router.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/kmod.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/kmod.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/network_discovery.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/network_discovery.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/parser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/parser.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/pipe.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/pipe.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/postgres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/postgres.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/process.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/raw_syscalls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/raw_syscalls.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/signal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/signal.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/sqli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/sqli.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/stat.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/stat.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/tc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/tc.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/tcp_ack_override.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/tcp_ack_override.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/tcp_check.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/tcp_check.h -------------------------------------------------------------------------------- /ebpf/ebpfkit/xdp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/ebpfkit/xdp.h -------------------------------------------------------------------------------- /ebpf/main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/ebpf/main.c -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/go.sum -------------------------------------------------------------------------------- /graphs/active_network_discovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/graphs/active_network_discovery.svg -------------------------------------------------------------------------------- /graphs/network_discovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/graphs/network_discovery.svg -------------------------------------------------------------------------------- /graphs/passive_network_discovery.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/graphs/passive_network_discovery.svg -------------------------------------------------------------------------------- /pkg/assets/probe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/assets/probe.go -------------------------------------------------------------------------------- /pkg/ebpfkit/byteorder.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/ebpfkit/byteorder.go -------------------------------------------------------------------------------- /pkg/ebpfkit/ebpfkit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/ebpfkit/ebpfkit.go -------------------------------------------------------------------------------- /pkg/ebpfkit/fa_action.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/ebpfkit/fa_action.go -------------------------------------------------------------------------------- /pkg/ebpfkit/hash.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/ebpfkit/hash.go -------------------------------------------------------------------------------- /pkg/ebpfkit/manager.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/ebpfkit/manager.go -------------------------------------------------------------------------------- /pkg/ebpfkit/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/ebpfkit/model.go -------------------------------------------------------------------------------- /pkg/ebpfkit/program.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/ebpfkit/program.go -------------------------------------------------------------------------------- /pkg/ebpfkit/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/ebpfkit/utils.go -------------------------------------------------------------------------------- /pkg/model/model.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/pkg/model/model.go -------------------------------------------------------------------------------- /tools.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gui774ume/ebpfkit/HEAD/tools.go --------------------------------------------------------------------------------