From 7726cfb1e0af679322eed6c465b57979cfca83a7 Mon Sep 17 00:00:00 2001 From: Seth Schoen Date: Fri, 9 Nov 2012 11:57:57 -0800 Subject: [PATCH] note AllowDotExit requirement for exit geography --- server-ca/sni_challenge/exit.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/server-ca/sni_challenge/exit.py b/server-ca/sni_challenge/exit.py index fd513473f..77f91723b 100644 --- a/server-ca/sni_challenge/exit.py +++ b/server-ca/sni_challenge/exit.py @@ -8,6 +8,8 @@ import exit_geography, random, socks # perform SNI challenges from the vantage point of specified # countries. +# NOTE: This requires a modification to your torrc: AllowDotExit 1 + node = random.choice(exit_geography.by_country["DE"]) socksocket = socks.socksocket() socksocket.setproxy(socks.PROXY_TYPE_SOCKS4, "localhost", 9050)