1

tcpreflect

This commit is contained in:
Evan Pratten 2024-11-13 15:48:03 -05:00
parent fd7d8be923
commit a3155b7042

11
scripts/tcpreflect Executable file
View File

@ -0,0 +1,11 @@
#! /bin/bash
set -e
# Require a port
if [ -z "$1" ]; then
echo "Usage: $0 <port>"
exit 1
fi
echo "Reflecting all TCP traffic on port $1"
ncat --broker --listen -p "$1"