summaryrefslogtreecommitdiff
path: root/share/hackvr/examples/hackvrd/ident
blob: f4e7599bc4438e3495447fc0d37b2df5e4a87503 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/sh
if [ $# -lt 4 ];then
  echo usage: ident.sh our-host their-host 113 their-port our-port
  exit 1
fi
REMOTE_PORT="$4"
SERVER_PORT="$5"
IDENT_PORT="$3"
REMOTE_ADDR="$2"
SERVER_ADDR="$1"
username="$(printf "%s, %s\r\n" "$REMOTE_PORT" "$SERVER_PORT" | (ncat -s "$SERVER_ADDR" "$REMOTE_ADDR" "$IDENT_PORT" 2>/dev/null || echo 'ERROR:ERROR:ERROR:ERROR') | tr -d '\r' | cut -d: -f4)"
if [ "$username" ];then
  printf "%s\n" "$username"
else
  exit 1
fi