暂无描述

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

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