Sin descripción

Overkamp, N.M. (Niels, Student M-CS) 7d2255eb3c Add LICENSE hace 1 año
.cargo 0014d5ced4 initial commit. ICMP and SYN scan supported hace 1 año
responder eaafc13ec1 Add possibility to run multiple times in succession and use real dataset as ip source instead of random generation hace 1 año
responder-bench b7f8ebe7de Renamed FILTER_* envvars hace 1 año
responder-common eaafc13ec1 Add possibility to run multiple times in succession and use real dataset as ip source instead of random generation hace 1 año
responder-ebpf 38005e292f Implement a bitmap filter besides the bloom filter hace 1 año
responder-tools 38005e292f Implement a bitmap filter besides the bloom filter hace 1 año
xtask 0eee2b2848 Add benchmarking and fix a few bugs hace 1 año
.gitignore 0eee2b2848 Add benchmarking and fix a few bugs hace 1 año
Cargo.toml 0eee2b2848 Add benchmarking and fix a few bugs hace 1 año
LICENSE 7d2255eb3c Add LICENSE hace 1 año
README.md da122a22d7 Add actual useful info to README.md hace 1 año
blocklist b2a330e2ff Add blacklist and recale scanrates to (0.5M,5M) hace 1 año

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