aboutsummaryrefslogtreecommitdiffstats
path: root/nocompile/libexec/gopherd.sh
diff options
context:
space:
mode:
Diffstat (limited to 'nocompile/libexec/gopherd.sh')
-rwxr-xr-xnocompile/libexec/gopherd.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/nocompile/libexec/gopherd.sh b/nocompile/libexec/gopherd.sh
index e50b129..768d02b 100755
--- a/nocompile/libexec/gopherd.sh
+++ b/nocompile/libexec/gopherd.sh
@@ -1,5 +1,5 @@
#!/bin/bash
-#I'm aware of the LFI. Have fun looking around my server.
+#set these two variables if you have your server behind DMZ
read -t 10 req
base="$1"
req=$(echo "$req" | tr -d '\r')
@@ -10,7 +10,7 @@ if grep -v "^${base}" <<< "${realpath}" > /dev/null;then
exit 1
fi
myIP=$(/usr/local/bin/hop0 $(/usr/local/libexec/peerip))
-hostname=$(dig -x ${myIP} +short | rev | tail -c+2 | rev )
+hostname=$(dig -x ${myIP} +short | head -n1 | rev | tail -c+2 | rev )
if [ ! "${hostname}" ]; then
hostname=${myIP}
else