No Description

niels c50d4fd992 Merge branch 'main' into feature-nzmap 2 years ago
.cargo 0014d5ced4 initial commit. ICMP and SYN scan supported 2 years ago
responder 79139c329c replace bpf hashmap with bpf array containing bloomfilter (as bitarray) 2 years ago
responder-common 5efe839b43 make bloomfilter constants settable by envvar at compile time 2 years ago
responder-ebpf 79139c329c replace bpf hashmap with bpf array containing bloomfilter (as bitarray) 2 years ago
responder-tools b3bfea0a15 Add responder-tools as project in workspace with nzmap 2 years ago
xtask b3bfea0a15 Add responder-tools as project in workspace with nzmap 2 years ago
.gitignore b3bfea0a15 Add responder-tools as project in workspace with nzmap 2 years ago
Cargo.toml b3bfea0a15 Add responder-tools as project in workspace with nzmap 2 years ago
README.md da122a22d7 Add actual useful info to README.md 2 years ago

README.md

responder

Building Prerequisites

  1. Install a rust stable toolchain: rustup install stable
  2. Install a rust nightly toolchain: rustup install nightly
  3. Install bpf-linker: cargo install bpf-linker

Build Artifacts

cargo xtask build-artifacts
./bin/responder --csv <CSV>

Check the help page for more options:

./bin/responder --help

Run and Build for Development

Build userspace code:

cargo build

Build eBPF code:

cargo xtask build-ebpf

Run both (also builds both):

cargo xtask run