Ei kuvausta

Overkamp, N.M. (Niels, Student M-CS) 6d8cd8e9f7 Merge branch 'feature-responder-tools' into 'main' 2 vuotta sitten
.cargo 0014d5ced4 initial commit. ICMP and SYN scan supported 2 vuotta sitten
responder 79139c329c replace bpf hashmap with bpf array containing bloomfilter (as bitarray) 2 vuotta sitten
responder-common 5efe839b43 make bloomfilter constants settable by envvar at compile time 2 vuotta sitten
responder-ebpf 79139c329c replace bpf hashmap with bpf array containing bloomfilter (as bitarray) 2 vuotta sitten
responder-tools ac0184676a Deleted nzmap since zmap has this feature builtin 2 vuotta sitten
xtask b3bfea0a15 Add responder-tools as project in workspace with nzmap 2 vuotta sitten
.gitignore b3bfea0a15 Add responder-tools as project in workspace with nzmap 2 vuotta sitten
Cargo.toml b3bfea0a15 Add responder-tools as project in workspace with nzmap 2 vuotta sitten
README.md da122a22d7 Add actual useful info to README.md 2 vuotta sitten

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