Skip to content

Instantly share code, notes, and snippets.

@JPaulMora
Created October 13, 2017 06:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save JPaulMora/6c4ff60f4ea4b1031056298ef2a2ca55 to your computer and use it in GitHub Desktop.
Save JPaulMora/6c4ff60f4ea4b1031056298ef2a2ca55 to your computer and use it in GitHub Desktop.
#!/bin/sh -e
if [ $# != 3 ]
then
echo "usage: $0 <src-port> <dst-host> <dst-port>"
exit 0
fi
TMP=`mktemp -d`
BACK=$TMP/pipe.back
SENT=$TMP/pipe.sent
RCVD=$TMP/pipe.rcvd
trap 'rm -rf "$TMP"' EXIT
mkfifo -m 0600 "$BACK" "$SENT" "$RCVD"
sed 's/^/ => /' <"$SENT" &
sed 's/^/<= /' <"$RCVD" &
nc -l -p "$1" <"$BACK" | tee "$SENT" | nc "$2" "$3" | tee "$RCVD" >"$BACK"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment