Bez popisu

niels 5efe839b43 make bloomfilter constants settable by envvar at compile time před 2 roky
.cargo 0014d5ced4 initial commit. ICMP and SYN scan supported před 2 roky
responder 79139c329c replace bpf hashmap with bpf array containing bloomfilter (as bitarray) před 2 roky
responder-common 5efe839b43 make bloomfilter constants settable by envvar at compile time před 2 roky
responder-ebpf 79139c329c replace bpf hashmap with bpf array containing bloomfilter (as bitarray) před 2 roky
xtask 79139c329c replace bpf hashmap with bpf array containing bloomfilter (as bitarray) před 2 roky
.gitignore 79139c329c replace bpf hashmap with bpf array containing bloomfilter (as bitarray) před 2 roky
Cargo.toml 0014d5ced4 initial commit. ICMP and SYN scan supported před 2 roky
README.md da122a22d7 Add actual useful info to README.md před 2 roky

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