Sin descripción

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

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