]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
update instructions on the exitlist script
authorRoger Dingledine <arma@torproject.org>
Sat, 24 Dec 2011 19:51:30 +0000 (14:51 -0500)
committerRoger Dingledine <arma@torproject.org>
Sat, 24 Dec 2011 19:51:30 +0000 (14:51 -0500)
contrib/exitlist

index ba682b5c0638c0ac960c6a8e20bb8f8d0f6808c0..3fd26b51664cd1fb634195563ed6a7334ad910d0 100755 (executable)
@@ -8,23 +8,25 @@
  exitlist -- Given a Tor directory on stdin, lists the Tor servers
  that accept connections to given addreses.
 
- example usage (Tor 0.2.0.7-alpha and earlier):
-
-    cat ~/.tor/cached-routers* | python exitlist 18.244.0.188:80
-
- example usage (Tor 0.2.0.8-alpha and later):
+ example usage:
 
     cat ~/.tor/cached-descriptors* | python exitlist 18.244.0.188:80
 
- You should look at the "FetchUselessDescriptors" config option in the
- man page. For 0.2.0.13-alpha and later, also look at the
- "FetchDirInfoEarly" config option.
+ You should look at the "FetchUselessDescriptors" and "FetchDirInfoEarly"
+ config options in the man page.
 
  Note that this script won't give you a perfect list of IP addresses
- that might connect to you using Tor, since some Tor servers might exit
- from other addresses than the one they publish. See
- https://check.torproject.org/ for an alternative (more
- accurate!) approach.
+ that might connect to you using Tor.
+ False negatives:
+   - Some Tor servers might exit from other addresses than the one they
+     publish in their descriptor.
+ False positives:
+   - This script just looks at the descriptor lists, so it counts relays
+     that were running a day in the past and aren't running now (or are
+     now running at a different address).
+
+ See https://check.torproject.org/ for an alternative (more accurate!)
+  approach.
 
 """