Bez popisu

niels da122a22d7 Add actual useful info to README.md před 2 roky
.cargo 0014d5ced4 initial commit. ICMP and SYN scan supported před 2 roky
responder 4a22a8523a Make syn default scan type před 2 roky
responder-common d192ec11e5 Replace local aya dependencies to depend on the git for future proofing, deployment and testing před 2 roky
responder-ebpf c6f9dea92e Clean up responder main.rs, icmp.rs and syn.rs před 2 roky
xtask 988488c4e9 Add build-artifact command that builds user and kernel code and puts them in a folder před 2 roky
.gitignore 988488c4e9 Add build-artifact command that builds user and kernel code and puts them in a folder 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