]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Remove check-tor script
authorrl1987 <rl1987@sdf.lonestar.org>
Fri, 15 Feb 2019 17:18:24 +0000 (19:18 +0200)
committerrl1987 <rl1987@sdf.lonestar.org>
Fri, 15 Feb 2019 17:18:24 +0000 (19:18 +0200)
changes/ticket29072 [new file with mode: 0644]
contrib/or-tools/check-tor [deleted file]

diff --git a/changes/ticket29072 b/changes/ticket29072
new file mode 100644 (file)
index 0000000..3526330
--- /dev/null
@@ -0,0 +1,2 @@
+  o Removed features:
+    - Remove check-tor script from repository. Resolves issue 29072.
diff --git a/contrib/or-tools/check-tor b/contrib/or-tools/check-tor
deleted file mode 100755 (executable)
index e981a35..0000000
+++ /dev/null
@@ -1,41 +0,0 @@
-#!/bin/sh
-
-## Originally written by Peter Palfrader.
-
-## This script lets you quickly check if a given router (by nickname)
-## will let you do a TLS handshake, or will let you download a directory.
-
-## Usage: check-tor nickname
-
-#set -x
-
-router="$1"
-dirserver="http://belegost.seul.org:80/tor/"
-
-lines=$( wget -q $dirserver --proxy=off -O - | grep -A5 '^router '"$router"' ' )
-line=$( echo "$lines" | head -n1 )
-
-if [ -z "$line" ]; then
-       echo "Not found" >&2
-       exit 1
-fi
-
-echo "$lines"
-echo
-
-ipor=$( echo "$line" | awk '{printf "%s:%s", $3, $4}' )
-
-op=$( echo "$line" | awk '{printf $6}' )
-ipop=$( echo "$line" | awk '{printf "%s:%s", $3, $6}' )
-
-echo
-echo ">>" openssl s_client -connect "$ipor"
-timeout 5 openssl s_client -connect "$ipor" < /dev/null
-if [ "$op" != "0" ]; then
-       echo
-       echo ">>" wget --proxy=off -O - http://$ipop/tor/
-       timeout 5 wget --proxy=off -O - http://$ipop/tor/ | head -n3
-fi
-
-echo
-echo -n "$router "; echo "$lines" | grep 'fingerprint' | sed -e 's/^opt //' -e 's/^fingerprint //';