Aucune description

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

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