From bc7c38f77e9ddf8e2a91fe797de6cf8b4a79e729 Mon Sep 17 00:00:00 2001 From: traumschule Date: Thu, 11 Oct 2018 01:47:16 +0200 Subject: [PATCH 01/10] Revise update_mirrors.pl (#22182) - use Getopt::Long - use tor (requires LWP::Protocol::socks, disable with --no-proxy) - verify file signatures only when --verify-files is set - remove defunct mirrors when --remove-failing is provided - use Time::Piece instead of Date::Parse and Date::Format - resort to Last-Modified header when trace url gives 404 - automatically unify boolean values - check offered Tor Browser version - print list of errors at the end - improve perl style --- update-mirrors.pl | 481 ++++++++++++++++++++++++++++++++-------------- 1 file changed, 341 insertions(+), 140 deletions(-) diff --git a/update-mirrors.pl b/update-mirrors.pl index 088903cd..e70d151c 100755 --- a/update-mirrors.pl +++ b/update-mirrors.pl @@ -1,226 +1,427 @@ -#!/usr/bin/perl -w +#!/usr/bin/env perl +# This is Free Software (GPLv3) http://www.gnu.org/licenses/gpl-3.0.txt +# This script is currently being refactored: https://bugs.torproject.org/22182 use warnings; use strict; +use Getopt::Long; # https://metacpan.org/pod/Getopt::Long::Modern +use File::Basename; use Data::Dumper; use LWP::Simple; use HTML::LinkExtor; -use LWP; -use Date::Parse; -use Date::Format; +use LWP; # https://metacpan.org/pod/distribution/libwww-perl/lwptut.pod +use Time::Piece; # https://metacpan.org/pod/Time::Piece use Digest::SHA qw(sha256_hex); +use Try::Tiny; -# This is Free Software (GPLv3) -# http://www.gnu.org/licenses/gpl-3.0.txt +# Set Defaults +my %opts = ( + 'max-age' => 2, + 'socks_proxy' => '127.0.0.1:9050', + 'disable_proxy' => 0, + 'verify_files' => 0, + 'remove_failing' => 0, + 'csvfile' => 'include/tor-mirrors.csv', + 'wmifile' => 'include/mirrors-table.wmi'); -print "Creating LWP agent ($LWP::VERSION)...\n"; -my $lua = LWP::UserAgent->new( - keep_alive => 1, - timeout => 30, - agent => "Tor MirrorCheck Agent" -); +sub print_help { + print " +Check if Tor mirrors are reachable, update $opts{'csvfile'} and regenerate +$opts{'wmifile'} which is included in getinvolved/en/mirrors.wml and appears at +https://www.torproject.org/getinvolved/mirrors + +Usage: $0 [options] +\t--max-age\t\tChange acceptable age for mirrors in days (Default: $opts{'max-age'}) +\t--socks-proxy\t\tDefine SOCKS proxy to access mirrors (Default: $opts{'socks_proxy'}) +\t--no-proxy\t\tDirectly connect to mirrors. +\t--verify-files\t\tDownload random files and verify their signature +\t\t\t\t(depending on connection speed this can take a bit) +\t--remove-failing\tRemove unreachable mirrors from the list +\t--csv\t\t\tDefine alternative csv file (Default: $opts{'csvfile'}) +\t--wmi\t\t\tDefine alternative wmi file (Default: $opts{'wmifile'}) +\t--help\t\t\tShow this help\n"; + exit 0; +} -sub sanitize { +# Parse Options +GetOptions( + "max-age=n" => \$opts{'max-age'}, + "socks-proxy=s" => \$opts{'socks_proxy'}, + "no-proxy" => \$opts{'no_proxy'}, + "verify-files" => \$opts{'verify_files'}, + "remove-failing" => \$opts{'remove_failing'}, + "csv=s" => \$opts{'csvfile'}, + "wmi=s" => \$opts{'wmifile'}, + "help" => sub { &print_help } +) or die "Error parsing arguments. Please try again.\n"; + +# Functions + +sub DateString { + my $date_object = shift; + return $date_object->strftime("%a %b %e %T %Y"); +} + +sub SanitizeContent { # remove letters, numbers and other characters my $taintedData = shift; - my $cleanedData; my $whitelist = '-a-zA-Z0-9: +'; - # clean the data, return cleaned data $taintedData =~ s/[^$whitelist]//go; - $cleanedData = $taintedData; + return $taintedData; +} - return $cleanedData; +sub CleanUrl { # remove potential double slash + my $url = shift; + die "CleanUrl: called without argument.\n" unless ($url); + $url =~ s/([^:])\/\//$1\//g; + return $url; } + sub ExtractLinks { - my $content = shift; - my $url = shift; + my ($content, $url, $ua) = @_; + unless ($content) { die "ExtractLinks: Called with empty content.\n"; } + unless ($url) { die "ExtractLinks: Called with empty URL.\n"; } my @links; - my $parser = HTML::LinkExtor->new(undef, $url); $parser->parse($content); - foreach my $linkarray($parser->links) - { - my ($elt_type, $attr_name, $attr_value) = @$linkarray; - if ($elt_type eq 'a' && $attr_name eq 'href' && $attr_value =~ /\/$/ && $attr_value =~ /^$url/) - { - push @links, Fetch($attr_value, \&ExtractLinks); - } - elsif ($attr_value =~ /\.(xpi|dmg|exe|tar\.gz)$/) - #elsif ($attr_value =~ /\.(asc)$/) # small pgp files easier to test with - { - push @links, $attr_value; - } + foreach my $linkarray ($parser->links) { + my ($elt_type, $attr_name, $attr_value) = @$linkarray; + if ($elt_type eq 'a' && $attr_name eq 'href' && $attr_value =~ /\/$/ && $attr_value =~ /^$url/) { + push @links, Fetch($ua, $attr_value, \&ExtractLinks); + } + #elsif ($attr_value =~ /\.(asc)$/) # small pgp files easier to test with + elsif ($attr_value =~ /\.(xpi|dmg|exe|tar\.gz)$/) { + push @links, $attr_value; + } } return @links; } sub ExtractDate { - my $content = shift; - $content = sanitize($content); - my $date = str2time($content); + my $string = shift; + die "\tExtractDate: called with empty string.\n" unless ($string); + my @lines = split "\n", $string; + warn "\tExtractDate: empty string after split by newlines.\n" unless ($lines[0]); + $string = SanitizeContent($lines[0]); + warn "\tExtractDate: SanitizeContent returned empty string.\n" unless ($string); + my $date; + try { + # usually the string looks like: Tue Oct 1 16:49:59 UTC 2018 + # TODO we could do some pre-parsing to validate the string first + $date = Time::Piece->strptime($string, "%a %b %d %T UTC %Y"); + } catch { + warn "\tExtractDate: Failed to parse: $string\n"; + return undef; + }; - if ($date) { - print "\tExtractDate($content) = $date\n"; + if ($date && $date->epoch > 0) { + print "\tExtractDate: ". DateString($date) ."\n"; return $date; } else { - print "\tExtractDate($content) = ?\n"; - return undef; + warn "\tExtractDate: strptime returned empty date for: $string\n"; } + return undef; } sub ExtractSig { - my $content = shift; - my $url = shift; + my ($content, $url) = @_; my $sig = sha256_hex($content); print "\tExtractSig($url) = $sig\n"; return $sig; } -sub Fetch { - my ($url, $sub) = @_; # Base url for mirror - $|++; # unbuffer stdout to show progress +sub FindVersion { + my ($content, $url) = @_; + # TODO Parsing the webpage is an unstable solution (#21222). + foreach (split "\n", $content) { + if (/Version (.+) -/) { return $1; } + } + return undef; +} +sub Fetch { + my ($ua, $url, $sub) = @_; + if (! $url || $url eq '') { die "Fetch: called with empty URL.\n"; } + STDOUT->autoflush(1); # unbuffer stdout to show progress print "\nGET $url: "; my $request = new HTTP::Request GET => "$url"; - my $result = $lua->request($request); + my $result = $ua->request($request); my $code = $result->code(); print "$code\n"; - if ($result->is_success && $code eq "200"){ - my $content = $result->content; - if ($content) { - return $sub->($content, $url); - } else { - print "Unable to fetch $url, empty content returned.\n"; - } + if ($result->is_success && $code eq "200") { + my $content = $result->content; + if ($content) { + if ($content =~ /301 Moved Permanently/) { + print "\tFetch: Received '301 Moved Permanently'\n"; + return -301; + } elsif ($content =~ /403 Forbidden/) { + print "\tFetch: Received '403 Forbidden'\n"; + return -403; + } elsif ($code eq "404") { + print "\tFetch: Received '404 Not Found'\n"; + return -404; + } elsif ($sub) { return $sub->($content, $url, $ua); + } else { + # We are probably asked to return a time object for a mirror without trace URL. + # Check header - https://metacpan.org/pod/HTTP::Headers + if ($result->header('Last-Modified')) { + return ExtractDate( $result->header('Last-Modified') ); + } else { + # In this case the mirror is probably up but doesn't tell when it was updated last. + warn "\tFetch: Found no Last-Modified header.\n"; + } + } + } else { + print "\tFetch: Empty content, no mirror here.\n"; + return -1; + } + } elsif ($code eq "301") { + #print "\tFetch: Received '301 Moved Permanently'\n"; + return -301; + } elsif ($code eq "403") { + #print "\tFetch: Received '403 Forbidden'\n"; + return -403; + } elsif ($code eq "404") { + #print "\tFetch: Received '404 Not Found'\n"; + return -404; } - return undef; } -my @columns; + sub LoadMirrors { - open(CSV, "<", "include/tor-mirrors.csv") or die "Cannot open tor-mirrors.csv: $!"; - my $line = ; + my $columns = shift; + open(my $fh, "<", $opts{'csvfile'}) or die "Cannot open '$opts{'csvfile'}': $!"; + my $line = <$fh>; chomp($line); - @columns = split(/\s*,\s*/, $line); + @$columns = split(/\s*,\s*/, $line); my @mirrors; - while ($line = ) - { - chomp($line); - my @values = split(/\s*,\s*/, $line); + while (<$fh>) { + chomp; + my @values = split(/\s*,\s*/); my %server; - for (my $i = 0; $i < scalar(@columns); $i++) - { - $server{$columns[$i]} = $values[$i] || ''; + for (my $i = 0; $i < scalar(@$columns); $i++) { + $server{$columns->[$i]} = $values[$i] || ''; } - $server{updateDate} = str2time($server{updateDate}) if ($server{updateDate}); + try { + $server{updateDate} = Time::Piece->strptime($server{updateDate}, "%a %b %d %T %Y") if ($server{updateDate}); # alternatice "%c" < Sun Sep 30 18:48:27 2018 + } catch { + $server{updateDate} = ""; + }; push @mirrors, {%server}; } - close(CSV); + close($fh); + my $count = scalar(@mirrors); + die "LoadMirrors: The list of loaded mirrors is empty.\n" unless ($count > 0); + print "Loaded $count mirrors from disk.\n"; return @mirrors; } sub DumpMirrors { - my @m = @_; - open(CSV, ">", "include/tor-mirrors.csv") or die "Cannot open tor-mirrors.csv: $!"; - print CSV join(", ", @columns) . "\n"; + my ($columns, $time_barrier, @m) = @_; + open(my $csvfh, ">", $opts{'csvfile'}) or die "Cannot open '$opts{'csvfile'}': $!"; + print $csvfh join(", ", @$columns) . "\n"; + print "\nSaving mirrors that responded since ". DateString($time_barrier) ." (". $time_barrier->epoch .").\n"; foreach my $server(@m) { + # Drop mirrors that weren't reachable for some time + next if (! $server->{updateDate} || $server->{updateDate} < $time_barrier); + next unless ($server->{httpWebsiteMirror} || $server->{httpsWebsiteMirror} || $server->{ftpWebsiteMirror} || $server->{httpDistMirror} || $server->{httpsDistMirror} || $server->{hiddenServiceMirror}); + $server->{updateDate} = gmtime($server->{updateDate}) if ($server->{updateDate}); - print CSV join(", ", map($server->{$_}, @columns)); - print CSV "\n"; + print $csvfh join(", ", map($server->{$_}, @$columns)); + print $csvfh "\n"; } + close($csvfh); + print "Updated $opts{'csvfile'}.\n"; +} + +sub PrintServer { + my ($server, $fh) = @_; + print $fh "\n\n + $server->{isoCC}\n + $server->{orgName}\n + Up to date\n"; + + my %prettyNames = ( # TODO make this accessible + httpWebsiteMirror => "http", + httpsWebsiteMirror => "https", + ftpWebsiteMirror => "ftp", + rsyncWebsiteMirror => "rsync", + httpDistMirror => "http", + httpsDistMirror => "https", + rsyncDistMirror => "rsync", + hiddenServiceMirror => "onion"); - close(CSV); + foreach my $precious ( sort keys %prettyNames ) { + if ($server->{$precious}) { + print $fh " {$precious} . "\">" . + "$prettyNames{$precious}\n"; + } else { print $fh " - \n"; } + } + print $fh "\n"; +} + +# Start +chdir dirname($0); +die "Could not find 'include' - are we in the webwml directory?.\n" unless (-d 'include'); +my $secperday = 86400; +my $trace_path = 'project/trace/www-master.torproject.org'; +my $download_path = 'download/download.html.en'; +my (@columns, @torfiles, %randomtorfiles, %failures); +my @m = LoadMirrors(\@columns); + +# Init LWP +print "=============== Testing mirrors with LWP UserAgent $LWP::VERSION ===============\n"; +my $lua = LWP::UserAgent->new( + max_redirect => 0, + keep_alive => 1, + timeout => 30, + agent => "Tor MirrorCheck Agent" +); # https://metacpan.org/pod/LWP::UserAgent + +# Configure Proxy +unless ($opts{'no_proxy'}) { + print "Loading LWP::Protocol::socks. Install module or use --no-proxy if this fails.\n"; + require LWP::Protocol::socks; # https://metacpan.org/pod/LWP::Protocol::socks + $lua->proxy([qw(http https)] => "socks://$opts{'socks_proxy'}"); } -my @m = LoadMirrors(); -my $count = scalar(@m); -print "We have a total of $count mirrors\n"; -print "Fetching the last updated date for each mirror.\n"; +# Test proxy with tpo +print "\nRetrieve current time from tpo:"; +my $tortime = (Fetch($lua, "http://expyuzz4wqqyqhjn.onion/$trace_path", \&ExtractDate) + or Fetch($lua, "https://www.torproject.org/$trace_path", \&ExtractDate)) + or die "Can't extract time from tpo. Are we or they offline?\n"; +die "Failed to parse date returned by tpo ($tortime).\n" if ($tortime < 0); +$tortime -= $opts{'max-age'} * $secperday; +print "The time barrier for mirrors to be listed is ". DateString($tortime) ." (". $tortime->epoch .").\n"; + +print "\nDetermine current TB version:"; +my $tb_version = (Fetch($lua, "http://expyuzz4wqqyqhjn.onion/$download_path", \&FindVersion) + or Fetch($lua, "https://www.torproject.org/$download_path", \&FindVersion)) + or die "Can't extract tb version from tpo. Are we or they offline?\n"; +if ($tb_version && $tb_version =~ /^\d+\.\d+/) { print "Tor Browser stable: $tb_version.\n"; } +else { die "Found no Tor Browser version on the download page, this script needs an update ($tb_version).\n"; } -my $tortime = Fetch("https://www.torproject.org/project/trace/www-master.torproject.org", \&ExtractDate); -my @torfiles = Fetch("https://www.torproject.org/dist/", \&ExtractLinks); -my %randomtorfiles; +# nit: There's virtually no risk to receive a 403 above but it could cause a bug. -for (1 .. 1) -{ - my $r = int(rand(scalar(@torfiles))); - my $suffix = $torfiles[$r]; - $suffix =~ s/^https:\/\/www.torproject.org//; - $randomtorfiles{$suffix} = Fetch($torfiles[$r], \&ExtractSig); +if ($opts{'verify_files'}) { + # it is not optimal that we crawl dist, but it might be necessary if we + # are asked to thoroughly verify files on the mirrors. + @torfiles = Fetch($lua, "https://www.torproject.org/dist/", \&ExtractLinks); + die "Found no files on dist.\n" unless (@torfiles > 0); + + my $r = int(rand(scalar(@torfiles))); + my $suffix = $torfiles[$r]; + $suffix =~ s/^https:\/\/www.torproject.org//; + $randomtorfiles{$suffix} = Fetch($lua, $torfiles[$r], \&ExtractSig); + + print "Using these files for sig matching:\n". join("\n", keys %randomtorfiles) ."\n"; } -print "Using these files for sig matching:\n"; -print join("\n", keys %randomtorfiles); -print "\n"; +for my $server (@m) { + + foreach my $field (qw/ipv4 ipv6 loadBalanced/) { # unify boolean values + unless ($server->{$field} =~ /TRUE|FALSE/) { + $server->{$field} = ($server->{$field} =~ /yes|true|1/i) ? 'TRUE' : 'FALSE'; + } + } + + foreach my $serverType('httpWebsiteMirror', 'httpsWebsiteMirror', 'ftpWebsiteMirror', 'httpDistMirror', 'httpsDistMirror', 'hiddenServiceMirror') { + if ($server->{$serverType}) { + + my $url = CleanUrl("$server->{$serverType}/"); + if ($url ne "$server->{$serverType}") { # silently correct URL + $server->{$serverType} = $url; + } + + # Retrieve trace URL as most reliable source for the mirror age + my $updateDate = Fetch($lua, CleanUrl("$url$trace_path"), \&ExtractDate); + + if (! $updateDate || defined $updateDate && $updateDate == -404) { # unreachable or date in bad shape + # We keep a list of mirrors without trace URL and try to use + # the Last-Modified header of the base URL instead. + $updateDate = Fetch($lua, CleanUrl($url)); + push (@{$failures{'No trace URL'}}, "$url ($server->{'adminContact'})"); + } + + if (not defined $updateDate) { # two attempts to extract the date failed + push (@{$failures{'No Last-Modified header'}}, "$url ($server->{'adminContact'})"); + warn "\t$url ($server->{'adminContact'}) has issues but without --remove-failing we keep it.\n"; + + } elsif ($updateDate < 0) { # We received a clear error. + print "\tRemoving server $url.\n"; + $server->{$serverType} = ''; -# Adjust official Tor time by out-of-date offset: number of days * seconds per day -$tortime -= 1 * 172800; -print "The official time for Tor is $tortime. \n"; + # Check offered TB version and (optionally) verify files + } elsif ($updateDate) { + $server->{updateDate} = $updateDate; -for(my $server = 0; $server < scalar(@m); $server++) { - foreach my $serverType('httpWebsiteMirror', 'httpsWebsiteMirror', 'ftpWebsiteMirror', 'httpDistMirror', 'httpsDistMirror') - { - if ($m[$server]->{$serverType}) { - my $updateDate = Fetch("$m[$server]->{$serverType}/project/trace/www-master.torproject.org", \&ExtractDate); - - if ($updateDate) { - $m[$server]->{updateDate} = $updateDate; - $m[$server]->{sigMatched} = 1; + # Compare tor browser version + if ($serverType =~ /httpWebsiteMirror|httpsWebsiteMirror|hiddenServiceMirror/) { + my $version = Fetch($lua, CleanUrl("$url$download_path"), \&FindVersion); + unless ($version) { + print "\tFound no Tor Browser version.\n"; + push (@{$failures{'No download version.'}}, "$url ($server->{'adminContact'})"); + } elsif ($tb_version ne $version) { + print "\tMirror offers an old Tor Browser version: $version\n"; + push (@{$failures{'Wrong download version.'}}, "$url ($server->{'adminContact'})"); + } + } + + # #22182: "The current way how the script is checking + # the mirror sites, isn't the best (it is looking for + # existing .xpi, .dmg, .exe, .tar.gz files)" + # Skipping if not requested with --verify-files + next unless ($opts{'verify_files'}); + $server->{sigMatched} = 1; foreach my $randomtorfile(keys %randomtorfiles) { - my $sig = Fetch("$m[$server]->{$serverType}/$randomtorfile", \&ExtractSig); + my $sig = Fetch($lua, CleanUrl("$url$randomtorfile"), \&ExtractSig); if (!$sig) { - $m[$server]->{sigMatched} = 0; - last; + push (@{$failures{'No signature.'}}, "$url ($server->{'adminContact'})"); + $server->{sigMatched} = 0; + last; } elsif ($sig ne $randomtorfiles{$randomtorfile}) { - $m[$server]->{sigMatched} = 0; - last; + push (@{$failures{'Signature mismatch.'}}, "$url ($server->{'adminContact'})"); + $server->{sigMatched} = 0; + last; } } } - last; } } } -sub PrintServer { - my $server = shift; -print OUT <<"END"; - \n\n - $server->{isoCC}\n - $server->{orgName}\n - Up to date\n -END - - my %prettyNames = ( - httpWebsiteMirror => "http", - httpsWebsiteMirror => "https", - ftpWebsiteMirror => "ftp", - rsyncWebsiteMirror => "rsync", - httpDistMirror => "http", - httpsDistMirror => "https", - rsyncDistMirror => "rsync", ); - - foreach my $precious ( sort keys %prettyNames ) - { - if ($server->{$precious}) { - print OUT " {$precious} . "\">" . - "$prettyNames{$precious}\n"; - } else { print OUT " - \n"; } - } +# TODO we could also check rsync - print OUT "\n"; +# show f of mirrors without trace URL +my $errors; +foreach my $error (keys %failures) { + if (@{$failures{$error}} > 0) { $errors++; + print "\n$error:\n"; + map { print "\t$_\n" } @{$failures{$error}}; + # TODO we could tweak this to show a sample mail to the mirror admin + } } +print "Use --remove-failing to remove them from the list.\n" if ($errors); +# open wmi for writing +open (my $wmifh, '>', $opts{'wmifile'}) or die "Can't write $opts{'wmifile'}: $!"; -my $outFile = "include/mirrors-table.wmi"; -open(OUT, "> $outFile") or die "Can't open $outFile: $!"; - -# Here's where we open a file and print some wml include goodness -# This is sorted from last known recent update to unknown update times +# Print server list sorted from last known recent update to unknown update times foreach my $server ( sort { $b->{updateDate} <=> $a->{updateDate} } grep {$_->{updateDate} && $_->{updateDate} > $tortime && $_->{sigMatched}} @m ) { - PrintServer($server); + PrintServer($server, $wmifh); } +DumpMirrors(\@columns, $tortime - 31*$secperday, @m); +close($wmifh); +print "Updated $opts{'wmifile'}.\nWe are done here, enjoy your day!\n"; -DumpMirrors(@m); +__END__ -close(OUT); +Possible improvements: +- above code has several TODOs +- the various server types are repeated at a few places and should be centralized in a hash +- be less verbose per default +- use consistent variable/function names +- run script through perltidy: https://metacpan.org/pod/Perl::Tidy - https://metacpan.org/pod/distribution/Perl-Tidy/bin/perltidy +- run it through perl critic, a Perl source code analyzer with policies based on Perl Best Practices (PBP): Perl::Critic::Freenode http://p3rl.org/ +- use Text::CSV (start with the csv() function), Mojo::CSV, Text::xSV, or DBD::CSV http://tburette.github.io/blog/2014/05/25/so-you-want-to-write-your-own-CSV-code/ +- line 167 in LoadMirrors replaces columns with contents 0 to '' From bcdcc7c3c6e3dc179ef3d9ea890feaf562321235 Mon Sep 17 00:00:00 2001 From: traumschule Date: Thu, 11 Oct 2018 02:19:31 +0200 Subject: [PATCH 02/10] tor-mirrors.csv: unify regions, trim spaces (#27942) --- include/tor-mirrors.csv | 219 ++++++++++++++++++++-------------------- 1 file changed, 109 insertions(+), 110 deletions(-) diff --git a/include/tor-mirrors.csv b/include/tor-mirrors.csv index 49a9d1d7..bff2d4db 100644 --- a/include/tor-mirrors.csv +++ b/include/tor-mirrors.csv @@ -1,113 +1,112 @@ -adminContact, orgName, isoCC, subRegion, region, ipv4, ipv6, loadBalanced, httpWebsiteMirror, httpsWebsiteMirror, rsyncWebsiteMirror, ftpWebsiteMirror, httpDistMirror, httpsDistMirror, rsyncDistMirror, hiddenServiceMirror, updateDate -Vedran Miletić, University of Rijeka, HR, Croatia, HR, TRUE, FALSE, No, , , , , http://mirrors.uniri.hr/torproject.org/dist/, https://mirrors.uniri.hr/torproject.org/dist/, , , -Tor Fan, Tor Supporter, US, United States, US, TRUE, TRUE, No, http://tor.loritsu.com/, , , , http://tor.loritsu.com/dist/, , , , -Tor Fan, Tor Supporter, LU, Luxemborg, LU, TRUE, FALSE, No, http://torproject.adamas.ai/, , , , http://torproject.adamas.ai/dist/, , , , -Tor Fan, NW Linux, US, WA, US, TRUE, FALSE, No, http://torproject.nwlinux.us/, , rsync://nwlinux.us/tor-web, , http://torproject.nwlinux.us/dist/, , rsync://nwlinux.us/tor-dist, , -Tor Fan, Tor Supporter, NL, The Netherlands, NL, TRUE, FALSE, No, , , , , , https://www.coevoet.nl/tor/dist/, , , -Tor Fan, LazyTiger, FR, France, FR, TRUE, FALSE, No, http://tor.taiga-san.net/, , , , http://tor.taiga-san.net/dist/, , , , -Tor Fan, Tor Supporter, EE, Estonia, EE, TRUE, FALSE, No, http://tor.li/, https://tor.li/, , , http://tor.li/dist/, https://tor.li/dist/, , , -mirror-service@netcologne.de, NetCologne GmbH, DE, NRW, , TRUE, TRUE, No, http://mirror.netcologne.de/torproject.org, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, http://mirror.netcologne.de/torproject.org/dist, , rsync://mirror.netcologne.de/torproject.org/dist, , Wed Sep 5 16:16:16 2018 -admin AT netgull DOT com, NetGull, US, United States, North America, TRUE, TRUE, No, , , , , http://www.netgull.com/torproject/, , , , -mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, VN, , TRUE, TRUE, Yes, http://torproject.ip-connect.vn.ua, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Wed Sep 5 16:53:44 2018 -torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, No, http://tormirror.tb-itf-tor.de, https://tormirror.tb-itf-tor.de, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Wed Sep 5 16:53:44 2018 -info AT zentrum-der-gesundheit DOT de, Zentrum der Gesundheit, DK, Denmark, Europe, TRUE, FALSE, No, http://tor.idnr.ws/, , , , http://tor.idnr.ws/dist/, , , , Thu Sep 4 08:16:00 2014 -info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, No, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion, Wed Sep 5 14:06:00 2018 -Piratenpartei Bayern, Piratenpartei Bayern, DE, Germany, DE, TRUE, FALSE, NO, http://tormirror.piratenpartei-bayern.de, https://tormirror.piratenpartei-bayern.de, , , http://tormirror.piratenpartei-bayern.de/dist/, https://tormirror.piratenpartei-bayern.de/dist/, , , Fri Sep 9 22:46:02 2016 -Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, TRUE, NO, http://tor.hoi-polloi.org, https://tor.hoi-polloi.org/, , , http://tor.hoi-polloi.org/dist/, https://tor.hoi-polloi.org/dist/, , , Fri May 5 15:12:25 2017 -tor@fodt.it // FoDT.it Webteam, FoDT.it, AT, Austria, Europe, TRUE, FALSE, No, http://tor.fodt.it, https://tor.fodt.it, , ftp://ftp.fodt.it/pub/mirrors/torproject.org/, http://tor.fodt.it/dist/, https://tor.fodt.it/dist/, , , Wed Aug 27 07:19:07 2014 -http://www.multinet.no, MultiNet AS, NO, Trondheim, Trondheim, TRUE, TRUE, No, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Wed Sep 5 00:49:40 2018 -haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, No, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Wed Sep 5 14:06:00 2018 -Tor Fan, Tor Supporter, US, United States, US, FALSE, TRUE, No, http://2607:8b00:2::6258:5c9/, https://2607:8b00:2::6258:5c9/, , , http://2607:8b00:2::6258:5c9/dist/, https://2607:8b00:2::6258:5c9/dist/, , , Fri Jan 23 09:17:52 2015 -margus.random at mail.ee, CyberSIDE, EE, Estonia, EE, TRUE, FALSE, No, http://cyberside.planet.ee/tor/, , , , http://cyberside.net.ee/tor/, , , , Wed Sep 5 00:49:40 2018 -Tor Fan, torproject.is, IS, Iceland, IS, TRUE, FALSE, No, http://www.torproject.is/, , , , http://www.torproject.is/dist/, , , , Wed Sep 5 16:53:44 2018 -Tor Fan, spline, DE, Germany, DE, TRUE, FALSE, No, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor, http://tor.spline.de/dist/, https://tor.spline.inf.fu-berlin.de/dist/, rsync://ftp.spline.de/tor/dist, , Wed Sep 5 16:16:16 2018 -hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, No, http://torproject.ph3x.at, https://torproject.ph3x.at, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Wed Sep 5 14:06:00 2018 -Tor Fan, Tor Supporter, MX, Mexico, MX, TRUE, FALSE, No, http://fbnaia.homelinux.net/torproject/, https://fbnaia.homelinux.net/torproject/, , , http://fbnaia.homelinux.net/torproject/dist/, https://fbnaia.homelinux.net/torproject/dist/, , , Fri Sep 29 14:11:11 2017 -webmaster AT askapache DOT com, AskApache, US, California, US, TRUE, FALSE, No, http://tor.askapache.com/, , , , http://tor.askapache.com/dist/, , , , Wed Sep 5 14:06:00 2018 -kontakt AT unicorncloud DOT org, UnicornCloud.org, DE, Germany, Falkenstein, TRUE, FALSE, No, http://mirror.unicorncloud.org/torproject.org/, https://mirror.unicorncloud.org/torproject.org/, , , http://mirror.unicorncloud.org/torproject.org/dist, https://mirror.unicorncloud.org/torproject.org/dist, , , Fri Sep 29 11:12:25 2017 -root AT amorphis DOT eu, Amorphis, NL, The Netherlands, Europe, TRUE, FALSE, No, http://tor.amorphis.eu/, , , , http://tor.amorphis.eu/dist/, , , , Wed Mar 18 18:53:03 2015 -hackthissite.org, HackThisSite.org, US, United States, US, TRUE, TRUE, No, http://tor.hackthissite.org/, https://tor.hackthissite.org/, , , http://mirror.hackthissite.org/tor, https://mirror.hackthissite.org/tor, , , Wed May 25 21:09:20 2016 -paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, APNIC, TRUE, FALSE, No, http://torproject.coffswifi.net, , , , http://torproject.coffswifi.net/dist, , , , Wed Sep 5 16:53:44 2018 -Tor Fan, cyberarmy, AT, Austria, AT, TRUE, FALSE, No, http://tor.cyberarmy.at/, , , , , , , , Sat Jan 16 12:17:09 2016 -hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Iceland, TRUE, FALSE, No, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Wed Sep 5 16:53:44 2018 -Tor Fan, crazyhaze.de, DE, Germany, DE, TRUE, FALSE, No, http://tor.crazyhaze.de/, https://tor.crazyhaze.de/, , , http://tor.crazyhaze.de/dist/, https://tor.crazyhaze.de/dist/, , , Mon Jan 8 07:58:44 2018 -Tor Fan, Soviet Anonymous, RU, Russia, RU, TRUE, FALSE, No, http://creep.im/tor, https://creep.im/tor, rsync://creep.im/tor, ftp://creep.im/mirrors/tor, http://creep.im/tor/dist/, https://creep.im/tor/dist/, rsync://creep.im/tor-dist, , Mon Jan 8 07:58:44 2018 -Tor Fan, torservers, DE, Germany, DE, TRUE, FALSE, No, http://www.torservers.net/mirrors/torproject.org/, https://www.torservers.net/mirrors/torproject.org/, , , http://www.torservers.net/mirrors/torproject.org/dist/, https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Wed Sep 5 16:53:44 2018 -Tor Fan, Lightning-bolt.net, CZ, Czech Republic, CZ, TRUE, FALSE, No, http://torproject.lightning-bolt.net/, , , , http://torproject.lightning-bolt.net/dist/, , , , Wed Mar 18 18:53:03 2015 -IceBear, myRL.net, IS, Iceland, IS, TRUE, FALSE, No, http://tor.myrl.net/, https://tor.myrl.net/, , , http://tor.myrl.net/dist/, https://tor.myrl.net/dist/, , , Sun Jan 7 20:12:24 2018 -kiro AT userzap DOT de, Userzap, DE, Germany, DE, TRUE, FALSE, No, http://torprojekt.userzap.de, https://torprojekt.userzap.de, , , http://torprojekt.userzap.de/dist/, https://torprojekt.userzap.de/dist/, , , Fri Jan 23 09:17:52 2015 -tor@les.net, tor@les.net, CA, Canada, CA, TRUE, FALSE, NO, http://tor.les.net/, , , , http://tor.les.net/dist, , , , Wed Sep 5 16:53:44 2018 -tor@stalkr.net, stalkr.net, FR, France, FR, TRUE, TRUE, NO, http://tor.stalkr.net/, https://tor.stalkr.net/, , , http://tor.stalkr.net/dist/, https://tor.stalkr.net/dist/, , , Wed Sep 5 16:16:16 2018 -doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, DE, TRUE, FALSE, NO, , https://tor-mirror.cyberguerrilla.org, , , , https://tor-mirror.cyberguerrilla.org/dist/, , http://6dvj6v5imhny3anf.onion, Wed Sep 5 16:53:44 2018 -contact@gtor.org, Gtor, DE, Germany, DE, TRUE, TRUE, NO, http://torproject.gtor.org/, https://torproject.gtor.org/, rsync://torproject.gtor.org/website-mirror/, , http://torproject.gtor.org/dist/, https://torproject.gtor.org/dist/, rsync://torproject.gtor.org/website-mirror/dist/, , Fri Sep 9 22:46:02 2016 -Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, TRUE, NO, http://mirror.velcommuta.de/tor/, https://mirror.velcommuta.de/tor/, , , http://mirror.velcommuta.de/tor/dist/, https://mirror.velcommuta.de/tor/dist/, , , Wed Sep 5 14:06:00 2018 -EFF, EFF, US, United States, US, TRUE, FALSE, NO, , https://tor.eff.org, , , , https://tor.eff.org/dist/, , , Wed Sep 5 14:06:00 2018 -Tor Fan, Tor Supporter, GR, Greece, GR, TRUE, TRUE, NO, http://tor.void.gr, https://tor.void.gr, , , http://tor.void.gr/dist/, https://tor.void.gr/dist/, , , Wed Jun 27 21:28:08 2018 -Ich Eben, Tor Supporter, DE, Germany, DE, TRUE, TRUE, No, http://reichster.de/mirrors/torproject.org/, https://reichster.de/mirrors/torproject.org, , , http://reichster.de/mirrors/torproject.org/dist/, https://reichster.de/mirrors/torproject.org/dist/, , , Wed Sep 5 14:06:00 2018 -jlgaddis AT gnu DOT org, Evil Routers, US, United States, US, TRUE, FALSE, No, http://tor1.evilrouters.net/, , , , http://tor1.evilrouters.net/dist/, , , , Sun Jan 7 20:12:24 2018 -tor AT miglix DOT eu, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, NO, http://tor.miglix.eu, https://tor.miglix.eu, , , http://tor.miglix.eu/dist/, https://tor.miglix.eu/dist/, , , Fri Sep 9 22:46:02 2016 -tor TA ninurta TOD name, TorNinurtaName, AT, Austria, AT, TRUE, TRUE, no, http://tor.ninurta.name/, , , , http://tor.ninurta.name/dist/, , , , Fri Oct 24 12:02:17 2014 -fr33tux general-changelog-team.fr, Tor Supporter, FR, France, FR, TRUE, TRUE, No, http://tor.fr33tux.org, https://tor.fr33tux.org, , , http://tor.fr33tux.org/dist/, https://tor.fr33tux.org/dist/, , , Sun Jan 7 20:12:24 2018 -sebastian(at)bobrecki(dot)pl, Sebastian M. Bobrecki, PL, Poland, Europe, TRUE, FALSE, No, http://tor.iv.net.pl, https://tor.iv.net.pl, , , http://tor.iv.net.pl/dist/, https://tor.iv.net.pl/dist/, , , Mon Sep 14 14:14:19 2015 -tor-mirror AT rdns DOT cc, d0wn.biz, FR, France, Europe, TRUE, FALSE, No, http://tor.static.lu, https://tor.static.lu, , , http://tor.static.lu/dist/, https://tor.static.lu/dist/, , , Fri Sep 9 22:46:02 2016 -tor@moparisthebest.com, moparisthebest.com, DE, Germany, Europe, TRUE, TRUE, No, http://www.moparisthebest.com/tor/, https://www.moparisthebest.com/tor/, , , http://www.moparisthebest.com/tor/dist/, https://www.moparisthebest.com/tor/dist/, , , Sun Jan 7 20:12:24 2018 -stefano.fenoglio AT gmail DOT com, Tor Supporter, IT, Italy, Europe, TRUE, FALSE, No, http://tor.stefanof.com, , , , http://tor.stefanof.com/dist, , , , Fri Sep 9 22:46:02 2016 -Tor Fan, Ramos Research, US, United States, US, TRUE, TRUE, No, http://tor.ramosresearch.com/, , , , http://tor.ramosresearch.com/dist/, , , , Wed Mar 18 18:53:03 2015 -s7r[at]sky-ip[d0t]org, sky-ip.org, NL, Netherlands, NL, TRUE, FALSE, No, http://beautiful-mind.sky-ip.org/, , , , http://beautiful-mind.sky-ip.org/dist/, , , , Fri Sep 9 22:46:02 2016 -tor#pajonzeck#de, ITsn, DE, Germany, Europe, TRUE, FALSE, No, http://tor.pajonzeck.de/, https://tor.pajonzeck.de/, rsync://tor.pajonzeck.de/tor, , http://tor.pajonzeck.de/dist/, https://tor.pajonzeck.de/dist/, rsync://tor.pajonzeck.de/tor/dist, http://zgfgvob256pffy62.onion, Wed May 31 03:15:41 2017 -peter AT ludikovsky DOT name, Tor Supporter, AT, Austria, Europe, TRUE, TRUE, No, http://tor.ludikovsky.name/, https://tor.ludikovsky.name/, rsync://tor.ludikovsky.name/tor, , http://tor.ludikovsky.name/dist, https://tor.ludikovsky.name/dist, rsync://tor.ludikovsky.name/tor-dist, http://54lnbzjo6xlr4f4j.onion/, Sun Jan 7 20:12:24 2018 -admin AT nuclear DASH weapons DOT net, Setec Administrator, US, Texas, Austin, TRUE, FALSE, No, http://tor.nuclear-weapons.net, https://tor.nuclear-weapons.net, , , http://tor.nuclear-weapons.net/dist, https://tor.nuclear-weapons.net/dist, , , Wed Sep 5 00:49:40 2018 -opi@zeropi.net, Tor Supporter, FR, France, FR, TRUE, TRUE, No, http://tor-mirror.zeropi.net/, , , , http://tor-mirror.zeropi.net/dist/, , , , Thu Dec 4 05:15:20 2014 -alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, No, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Wed Sep 5 16:53:44 2018 -tor@0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, No, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Wed Sep 5 16:53:44 2018 -kontakt@unicorncloud.org, UnicornCloud.org, AT, Favoriten, Wien, TRUE, TRUE, No, http://www.unicorncloud.org/public/torproject.org/, https://www.unicorncloud.org/public/torproject.org/, , , http://www.unicorncloud.org/public/torproject.org/dist, https://www.unicorncloud.org/public/torproject.org/dist, , , Wed Mar 18 18:53:03 2015 -James Murphy, intfxdx.com, US, United States, US, TRUE, TRUE, No, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Wed Sep 5 16:53:44 2018 -Sam Whited 4096R/54083AE104EA7AD3 , SamWhited.com, US, GA, United States, TRUE, TRUE, FALSE, http://mirrors.samwhited.net/tor, https://mirrors.samwhited.net/tor, rsync://mirrors.samwhited.net/tor, , http://mirrors.samwhited.net/tor/dist, https://mirrors.samwhited.net/tor/dist, rsync://mirrors.samwhited.net/tor-dist, , Fri Jul 17 15:49:12 2015 -rohit008 AT e DOT ntu DOT edu DOT sg, NTUOSS, SG, Singapore, Asia, TRUE, FALSE, No, http://torproject.ntuoss.com/, , , , http://torproject.ntuoss.com/dist/, , , , Wed Mar 18 18:53:03 2015 -hostmaster@lucidnetworks.net, Lucid Networks, US, United States, US, TRUE, FALSE, No, http://tor.mirrors.lucidnetworks.net, , rsync://tor.mirrors.lucidnetworks.net::tor, , http://tor.mirrors.lucidnetworks.net/dist, , rsync://tor.mirrors.lucidnetworks.net::tor-dist, , Wed Sep 5 16:53:44 2018 -mirror ntzk de, Netzkonstrukt Berlin, DE, Germany, Europe, TRUE, FALSE, No, http://mirror.ntzk.de/torproject.org/, https://mirror.ntzk.de/torproject.org/, , , http://mirror.ntzk.de/torproject.org/dist/, https://mirror.ntzk.de/torproject.org/dist/, , , Wed Sep 5 16:53:44 2018 -mirror@xfree.com.ar, Xfree.com.ar, AR, Argentina, South America, TRUE, FALSE, No, http://tor.xfree.com.ar/, , , , http://tor.xfree.com.ar/dist/, , , , Mon Jan 8 07:58:44 2018 -tor AT eprci NET, EPRCI, US, NH, US, TRUE, FALSE, No, http://tor.eprci.net/, https://www.eprci.com/tor/, , , http://tor.eprci.net/dist/, https://www.eprci.com/tor/dist/, , , Wed Sep 5 16:53:44 2018 -tor@kura.io, KURA IO LIMITED, NL, Netherlands, Europe, TRUE, TRUE, TRUE, http://tor-mirror.kura.io/, https://tor-mirror.kura.io/, rsync://tor-mirror.kura.io/torproject.org, ftp://tor-mirror.kura.io, http://tor-mirror.kura.io/dist/, https://tor-mirror.kura.io/dist/, rsync://tor-mirror.kura.io/torproject.org/dist, , Sun Jan 25 09:27:59 2015 -tor-admin AT wardsback DOT org, wardsback.org, FR, France, FR, TRUE, FALSE, No, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Wed Sep 5 16:53:44 2018 -PW, PW, DE, Germany, DE, TRUE, TRUE, NO, http://tor.pw.is/, https://www.it-sicherheitschannel.de/, , , http://tor.pw.is/dist/, https://www.it-sicherheitschannel.de/dist/, , , Mon Jan 8 07:58:44 2018 -kevin@freedom.press, Freedom of the Press Foundation, , US, US, True, False, No, http://tor.freedom.press, https://tor.freedom.press, , , http://tor.freedom.press/dist/, https://tor.freedom.press/dist/, , , Sat Jan 16 12:17:09 2016 -hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, No, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Wed Sep 5 16:53:44 2018 -tor at tvdw dot eu, TvdW, XX, Around the world, XX, TRUE, TRUE, Yes, http://tor-exit.network, , , , http://tor-exit.network/dist, , , , Wed Sep 5 16:53:44 2018 -tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, No, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion, Wed Sep 5 14:06:00 2018 -Stefan, sela Internet, DE, Germany, DE, TRUE, TRUE, No, http://sela.io/mirrors/torproject.org/, https://sela.io/mirrors/torproject.org/, , , http://sela.io/mirrors/torproject.org/dist/, https://sela.io/mirrors/torproject.org/dist/, , , Wed Sep 5 14:06:00 2018 -thomaswhite AT riseup DOT net, TheCthulhu, NL, The Netherlands, NL, True, False, No, http://tor.thecthulhu.com/, https://tor.thecthulhu.com/, , , http://tor.thecthulhu.com/dist/, https://tor.thecthulhu.com/dist/, , , Fri Sep 9 22:46:02 2016 -webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, No, http://tor.ccc.de/, https://tor.ccc.de, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Wed Sep 5 16:53:44 2018 -Tor AT goodeid DOT com, Tor Supporter, CA, Canada, CA, TRUE, FALSE, No, http://goodeid.com/mirrors/tor-project.org/, , , , http://goodeid.com/mirrors/tor-project.org/dist/, , , , Fri Sep 9 22:46:02 2016 -tor@datensicherhe.it, datensicherhe.it, AT, Austria, Europe, TRUE, FALSE, No, http://datensicherhe.it/torproject, https://datensicherhe.it/torproject, , , http://datensicherhe.it/torproject/dist/, https://datensicherhe.it/torproject/dist/, , , Fri Sep 9 22:46:02 2016 -NocturnalFilth, Disciples of Disorder, NL, Netherlands, NL, TRUE, FALSE, NO, http://torproject.mirror.disciplesofdisorder.com, https://torproject.mirror.disciplesofdisorder.com, , , http://torproject.mirror.disciplesofdisorder.com/dist/, https://torproject.mirror.disciplesofdisorder.com/dist/, , , Wed May 17 11:00:42 2017 -tormirror0121.10.swsnyder@spamgourmet.com, tormirror, DE, Germany, TRUE, FALSE, NO, http://tormirror.snydernet.net/, https://tormirror.snydernet.net/, , , http://tormirror.snydernet.net/dist/, https://tormirror.snydernet.net/dist/, , , Mon Dec 28 17:11:31 2015, Wed Sep 5 16:16:16 2018 -justaguy@riseup.net, Justaguy, FR, France, FR, TRUE, FALSE, No, http://tormirror.justaguy.pw/, https://tormirror.justaguy.pw, , , http://tormirror.justaguy.pw/dist/, https://tormirror.justaguy.pw/dist/, , , Sat Jan 16 12:17:09 2016 -Disciples of Disorder, Vargr, NL, Netherlands, NL, TRUE, FALSE, NO, http://tor.mirror.disciplesofdisorder.eu, https://tor.mirror.disciplesofdisorder.eu, , , http://tor.mirror.disciplesofdisorder.eu/dist/, https://tor.mirror.disciplesofdisorder.eu/dist/, , http://vargrevir52vkbte.onion, Thu Dec 24 08:50:00 2015 -nick at calyx dot com, The Calyx Institute, US, United States, North America, TRUE, FALSE, No, http://tor.calyxinstitute.org, https://tor.calyxinstitute.org, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion, Wed Sep 5 16:53:44 2018 -tor@armbrust.me, Michael Armbruster, FR, France, FR, TRUE, TRUE, No, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist, rsync://tor.armbrust.me/tor-dist, , Wed Sep 5 16:53:44 2018 -HdO Tor, HdO Tor Supporter, DE, Germany, US, TRUE, TRUE, No, http://tor.hdoev.de/, , , , http://tor.hdoev.de/dist/, , , , Fri Sep 9 22:46:02 2016 -Tor Fan, Tor Supporter, DE, Germany, Germany, TRUE, TRUE, No, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Wed Sep 5 16:53:44 2018 -john AT quintex.com, Quintex Alliance Consulting, US, TX, US, TRUE, FALSE, No, http://torproject.quintex.com/, https://torproject.quintex.com, rsync://mirror.quintex.com/torprojectwebsite, ftp://mirror.quintex.com/torproject.org, http://torproject.quintex.com/dist, https://torproject.quintex.com/dist, rsync://mirror.quintex.com/torprojectdist, , Fri Sep 9 22:46:02 2016 -noc AT babylon DOT network, Babylon Network, NL, The Netherlands, Europe, TRUE, TRUE, No, http://nl.mirror.babylon.network/torproject/, https://nl.mirror.babylon.network/torproject/, rsync://nl.mirror.babylon.network/torproject/, ftp://nl.mirror.babylon.network/torproject/, http://nl.mirror.babylon.network/torproject/dist/, https://nl.mirror.babylon.network/torproject/dist/, rsync://nl.mirror.babylon.network/torproject/dist/, , Sun Jan 7 20:12:24 2018 -noc AT babylon DOT network, Babylon Network, FR, France, Europe, TRUE, TRUE, No, http://fr.mirror.babylon.network/torproject/, https://fr.mirror.babylon.network/torproject/, rsync://fr.mirror.babylon.network/torproject/, ftp://fr.mirror.babylon.network/torproject/, http://fr.mirror.babylon.network/torproject/dist/, https://fr.mirror.babylon.network/torproject/dist/, rsync://fr.mirror.babylon.network/torproject/dist/, , Sun Jan 7 20:12:24 2018 -Pool Toys, Pool Toys, SGP, Singapore, SGP, TRUE, TRUE, No, http://mirrors-sg.pooltoys.com/tor/, , rsync://mirrors-sg.pooltoys.com/tor/, ftp://mirrors-sg.pooltoys.com/tor/, http://mirrors-sg.pooltoys.com/tor/, , , , -cyberrax at yahoo.com, CyberSiDE, EE, Estonia, Europe, TRUE, FALSE, No, http://cyberside.net.ee/sibul/, https://cyberside.net.ee/sibul/, , , http://cyberside.net.ee/sibul/dist/, https://cyberside.net.ee/sibul/dist/, , , Wed Sep 5 00:49:40 2018 -torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, No, http://tormirror.tb-itf-tor.de, https://tormirror.tb-itf-tor.de, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Wed Sep 5 16:53:44 2018 -Disciples of Disorder, Vargr, NL, Netherlands, NL, TRUE, FALSE, NO, http://tor.mirror.disciplesofdisorder.eu, https://tor.mirror.disciplesofdisorder.eu, , , http://tor.mirror.disciplesofdisorder.eu/dist/, https://tor.mirror.disciplesofdisorder.eu/dist/, , http://vargrevir52vkbte.onion, -admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, FR, TRUE, TRUE, No, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Wed Sep 5 16:16:16 2018 -lutz.horn@posteo.de, , DE, Germany, DE, TRUE, FALSE, No, , https://tor.lhorn.de/, , , , https://tor.lhorn.de/dist/, , , Wed Feb 8 12:00:00 2017 -karibu@freedif.org, Freedif, VN, Vietnam, VN, TRUE, FALSE, No, http://mirror.freedif.org/TorProject/, https://mirror.freedif.org/TorProject/, , , http://mirror.freedif.org/TorProject/dist, https://mirror.freedif.org/TorProject/dist, , , Wed Sep 5 00:49:40 2018 -Tor Fan, Tor Supporter, FR, France, FR, TRUE, FALSE, No, http://torproject.xj1.fr/, , , , http://torproject.xj1.fr/dist/, , , javkk6746z7wvigk.onion, Wed May 31 03:15:41 2017 -tienhn@vinahost.vn, VinaHost, VN, Viet Nam, VN, TRUE, FALSE, No, , https://mirror.vinahost.vn/torproject.org, rsync://mirror.vinahost.vn/torproject.org, , , https://mirror.vinahost.vn/torproject.org/dist/, rsync://mirror.vinahost.vn/torproject.org/dist, , Wed Apr 19 18:52:55 2017 -mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, BY, DE, TRUE, FALSE, No, http://mirror.funkfreundelandshut.de/torproject.org/, , , , http://mirror.funkfreundelandshut.de:81/torproject.org/dist/, , , http://44.225.40.254/torproject.org/dist, Wed Sep 5 00:49:40 2018 -email@heikorichter.name, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, No, http://tor.heikorichter.name, https://tor.heikorichter.name, , , http://tor.heikorichter.name/dist, https://tor.heikorichter.name/dist, rsync://ftp.heikorichter.name/tor, , Sun Jan 7 20:12:24 2018 -tor secure voyage, secure.voyage, CA, Canada, CA, TRUE, FALSE, No, http://tor.secure.voyage, https://tor.secure.voyage, , , http://tor.secure.voyage/dist, https://tor.secure.voyage/dist, , , Mon Jan 8 07:58:44 2018 -mirror-torproject at, , , , , , , , , , , , , , , , -razx.cloud, razx, CA, Canada, AB, TRUE, FALSE, No, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Wed Sep 5 19:32:45 2018 -coby [at ]127001 [dot] ovh, Tor Supporter, DE, Germany, DE, TRUE, FALSE, No, http://tor.127001.ovh/, https://tor.127001.ovh/, , , http://tor.127001.ovh/dist/, https://tor.127001.ovh/dist/, , , Mon Jan 8 07:58:44 2018 -Tor Fan, Tor Supporter, FR, France, Fr, TRUE, TRUE, No, http://mirror.oldsql.cc/tor/, https://mirror.oldsql.cc/tor/, , , http://mirror.oldsql.cc/tor/dist/, https://mirror.oldsql.cc/tor/dist/, , http://oldsqlcbr3aykyta.onion/tor, Wed Sep 5 19:32:45 2018 -Lunar, Tor World (torworld.org), DE, Germany, Europe, TRUE, FALSE, No, http://mirror.torworld.org/, https://mirror.torworld.org/, , , http://mirror.torworld.org/dist/, https://mirror.torworld.org/dist/, , , Wed Sep 5 14:06:00 2018 +adminContact,orgName,isoCC,subRegion,region,ipv4,ipv6,loadBalanced,httpWebsiteMirror,httpsWebsiteMirror,rsyncWebsiteMirror,ftpWebsiteMirror,httpDistMirror,httpsDistMirror,rsyncDistMirror,hiddenServiceMirror,updateDate +Vedran Miletić,University of Rijeka,HR,Croatia,Europe,TRUE,FALSE,No,,,,,http://mirrors.uniri.hr/torproject.org/dist/,https://mirrors.uniri.hr/torproject.org/dist/,,, +Tor Fan,Tor Supporter,US,United States of America,NorthAmerica,TRUE,TRUE,No,http://tor.loritsu.com/,,,,http://tor.loritsu.com/dist/,,,, +Tor Fan,Tor Supporter,LU,Luxemborg,Europe,TRUE,FALSE,No,http://torproject.adamas.ai/,,,,http://torproject.adamas.ai/dist/,,,, +Tor Fan,NW Linux,US,WA,NorthAmerica,TRUE,FALSE,No,http://torproject.nwlinux.us/,,rsync://nwlinux.us/tor-web,,http://torproject.nwlinux.us/dist/,,rsync://nwlinux.us/tor-dist,, +Tor Fan,Tor Supporter,NL,The Netherlands,Europe,TRUE,FALSE,No,,,,,,https://www.coevoet.nl/tor/dist/,,, +Tor Fan,LazyTiger,FR,France,Europe,TRUE,FALSE,No,http://tor.taiga-san.net/,,,,http://tor.taiga-san.net/dist/,,,, +Tor Fan,Tor Supporter,EE,Estonia,Europe,TRUE,FALSE,No,http://tor.li/,https://tor.li/,,,http://tor.li/dist/,https://tor.li/dist/,,, +mirror-service@netcologne.de,NetCologne GmbH,DE,NRW,Europe,TRUE,TRUE,No,http://mirror.netcologne.de/torproject.org,,rsync://mirror.netcologne.de/torproject.org,ftp://mirror.netcologne.de/torproject.org/,http://mirror.netcologne.de/torproject.org/dist,,rsync://mirror.netcologne.de/torproject.org/dist,,Wed Sep 5 16:16:16 2018 +admin AT netgull DOT com,NetGull,US,United States of America,NorthAmerica,TRUE,TRUE,No,,,,,http://www.netgull.com/torproject/,,,, +mirrors[at]ip-connect[dot]vn[dot]ua,IP-Connect LLC,UA,Ukraine,,TRUE,TRUE,Yes,http://torproject.ip-connect.vn.ua,,rsync://torproject.ip-connect.vn.ua/torproject,ftp://torproject.ip-connect.vn.ua/mirror/torproject/,http://torproject.ip-connect.vn.ua/dist,,rsync://torproject.ip-connect.vn.ua/torproject/dist,,Wed Sep 5 16:53:44 2018 +torsupport AT tb-itf DOT de,TB-ITF,DE,Germany,Europe,TRUE,TRUE,No,http://tormirror.tb-itf-tor.de,https://tormirror.tb-itf-tor.de,,,http://tormirror.tb-itf-tor.de/dist/,https://tormirror.tb-itf-tor.de/dist/,,,Wed Sep 5 16:53:44 2018 +info AT zentrum-der-gesundheit DOT de,Zentrum der Gesundheit,DK,Denmark,Europe,TRUE,FALSE,No,http://tor.idnr.ws/,,,,http://tor.idnr.ws/dist/,,,,Thu Sep 4 08:16:00 2014 +info /AT enn /DOT lu,Frenn vun der Enn A.S.B.L.,IS,Iceland,Europe,TRUE,FALSE,No,http://torproject.lu/,,,,http://torproject.lu/dist/,,,http://btn6gqzqevlhoryd.onion,Wed Sep 5 14:06:00 2018 +Piratenpartei Bayern,Piratenpartei Bayern,DE,Germany,Europe,TRUE,FALSE,NO,http://tormirror.piratenpartei-bayern.de,https://tormirror.piratenpartei-bayern.de,,,http://tormirror.piratenpartei-bayern.de/dist/,https://tormirror.piratenpartei-bayern.de/dist/,,,Fri Sep 9 22:46:02 2016 +Tor Fan,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,NO,http://tor.hoi-polloi.org,https://tor.hoi-polloi.org/,,,http://tor.hoi-polloi.org/dist/,https://tor.hoi-polloi.org/dist/,,,Fri May 5 15:12:25 2017 +tor@fodt.it // FoDT.it Webteam,FoDT.it,AT,Austria,Europe,TRUE,FALSE,No,http://tor.fodt.it,https://tor.fodt.it,,ftp://ftp.fodt.it/pub/mirrors/torproject.org/,http://tor.fodt.it/dist/,https://tor.fodt.it/dist/,,,Wed Aug 27 07:19:07 2014 +http://www.multinet.no,MultiNet AS,NO,Trondheim,Europe,TRUE,TRUE,No,http://tor.multinet.no/,,,,http://tor.multinet.no/dist/,,,,Wed Sep 5 00:49:40 2018 +haskell at gmx.es,Tor Supporter,ES,Spain,Europe,TRUE,TRUE,No,http://tor.zilog.es/,https://tor.zilog.es/,,,http://tor.zilog.es/dist/,https://tor.zilog.es/dist/,,,Wed Sep 5 14:06:00 2018 +Tor Fan,Tor Supporter,US,United States of America,NorthAmerica,FALSE,TRUE,No,http://2607:8b00:2::6258:5c9/,https://2607:8b00:2::6258:5c9/,,,http://2607:8b00:2::6258:5c9/dist/,https://2607:8b00:2::6258:5c9/dist/,,,Fri Jan 23 09:17:52 2015 +margus.random at mail.ee,CyberSIDE,EE,Estonia,Europe,TRUE,FALSE,No,http://cyberside.planet.ee/tor/,,,,http://cyberside.net.ee/tor/,,,,Wed Sep 5 00:49:40 2018 +Tor Fan,torproject.is,IS,Iceland,Europe,TRUE,FALSE,No,http://www.torproject.is/,,,,http://www.torproject.is/dist/,,,,Wed Sep 5 16:53:44 2018 +Tor Fan,spline,DE,Germany,Europe,TRUE,FALSE,No,http://tor.spline.de/,https://tor.spline.inf.fu-berlin.de/,rsync://ftp.spline.de/tor,ftp://ftp.spline.de/pub/tor,http://tor.spline.de/dist/,https://tor.spline.inf.fu-berlin.de/dist/,rsync://ftp.spline.de/tor/dist,,Wed Sep 5 16:16:16 2018 +hosting AT ph3x DOT at,ph3x,AT,Austria,Europe,TRUE,FALSE,No,http://torproject.ph3x.at,https://torproject.ph3x.at,,,http://torproject.ph3x.at/dist/,https://torproject.ph3x.at/dist/,,,Wed Sep 5 14:06:00 2018 +Tor Fan,Tor Supporter,MX,Mexico,CentralAmerica,TRUE,FALSE,No,http://fbnaia.homelinux.net/torproject/,https://fbnaia.homelinux.net/torproject/,,,http://fbnaia.homelinux.net/torproject/dist/,https://fbnaia.homelinux.net/torproject/dist/,,,Fri Sep 29 14:11:11 2017 +webmaster AT askapache DOT com,AskApache,US,California,NorthAmerica,TRUE,FALSE,No,http://tor.askapache.com/,,,,http://tor.askapache.com/dist/,,,,Wed Sep 5 14:06:00 2018 +kontakt AT unicorncloud DOT org,UnicornCloud.org,DE,Germany,Europe,TRUE,FALSE,No,http://mirror.unicorncloud.org/torproject.org/,https://mirror.unicorncloud.org/torproject.org/,,,http://mirror.unicorncloud.org/torproject.org/dist,https://mirror.unicorncloud.org/torproject.org/dist,,,Fri Sep 29 11:12:25 2017 +root AT amorphis DOT eu,Amorphis,NL,The Netherlands,Europe,TRUE,FALSE,No,http://tor.amorphis.eu/,,,,http://tor.amorphis.eu/dist/,,,,Wed Mar 18 18:53:03 2015 +hackthissite.org,HackThisSite.org,US,United States,NorthAmerica,TRUE,TRUE,No,http://tor.hackthissite.org/,https://tor.hackthissite.org/,,,http://mirror.hackthissite.org/tor,https://mirror.hackthissite.org/tor,,,Wed May 25 21:09:20 2016 +paul at coffswifi.net,CoffsWiFi,AU,Australia and New Zealand,Australia,TRUE,FALSE,No,http://torproject.coffswifi.net,,,,http://torproject.coffswifi.net/dist,,,,Wed Sep 5 16:53:44 2018 +Tor Fan,cyberarmy,AT,Austria,Europe,TRUE,FALSE,No,http://tor.cyberarmy.at/,,,,,,,,Sat Jan 16 12:17:09 2016 +hostmaster AT example DOT com,TheOnionRouter,IS,Iceland,Europe,TRUE,FALSE,No,http://www.theonionrouter.com/,,,,http://www.theonionrouter.com/dist/,,,,Wed Sep 5 16:53:44 2018 +Tor Fan,crazyhaze.de,DE,Germany,Europe,TRUE,FALSE,No,http://tor.crazyhaze.de/,https://tor.crazyhaze.de/,,,http://tor.crazyhaze.de/dist/,https://tor.crazyhaze.de/dist/,,,Mon Jan 8 07:58:44 2018 +Tor Fan,Soviet Anonymous,RU,Russia,Asia,TRUE,FALSE,No,http://creep.im/tor,https://creep.im/tor,rsync://creep.im/tor,ftp://creep.im/mirrors/tor,http://creep.im/tor/dist/,https://creep.im/tor/dist/,rsync://creep.im/tor-dist,,Mon Jan 8 07:58:44 2018 +Tor Fan,torservers,DE,Germany,Europe,TRUE,FALSE,No,http://www.torservers.net/mirrors/torproject.org/,https://www.torservers.net/mirrors/torproject.org/,,,http://www.torservers.net/mirrors/torproject.org/dist/,https://www.torservers.net/mirrors/torproject.org/dist/,,http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/,Wed Sep 5 16:53:44 2018 +Tor Fan,Lightning-bolt.net,CZ,Czech Republic,Europe,TRUE,FALSE,No,http://torproject.lightning-bolt.net/,,,,http://torproject.lightning-bolt.net/dist/,,,,Wed Mar 18 18:53:03 2015 +IceBear,myRL.net,IS,Iceland,Europe,TRUE,FALSE,No,http://tor.myrl.net/,https://tor.myrl.net/,,,http://tor.myrl.net/dist/,https://tor.myrl.net/dist/,,,Sun Jan 7 20:12:24 2018 +kiro AT userzap DOT de,Userzap,DE,Germany,Europe,TRUE,FALSE,No,http://torprojekt.userzap.de,https://torprojekt.userzap.de,,,http://torprojekt.userzap.de/dist/,https://torprojekt.userzap.de/dist/,,,Fri Jan 23 09:17:52 2015 +tor@les.net,tor@les.net,CA,Canada,NorthAmerica,TRUE,FALSE,NO,http://tor.les.net/,,,,http://tor.les.net/dist,,,,Wed Sep 5 16:53:44 2018 +tor@stalkr.net,stalkr.net,FR,France,Europe,TRUE,TRUE,NO,http://tor.stalkr.net/,https://tor.stalkr.net/,,,http://tor.stalkr.net/dist/,https://tor.stalkr.net/dist/,,,Wed Sep 5 16:16:16 2018 +doemela[AT]cyberguerrilla[DOT]org,cYbergueRrilLa AnonyMous NeXus,DE,Germany,Europe,TRUE,FALSE,NO,,https://tor-mirror.cyberguerrilla.org,,,,https://tor-mirror.cyberguerrilla.org/dist/,,http://6dvj6v5imhny3anf.onion,Wed Sep 5 16:53:44 2018 +contact@gtor.org,Gtor,DE,Germany,Europe,TRUE,TRUE,NO,http://torproject.gtor.org/,https://torproject.gtor.org/,rsync://torproject.gtor.org/website-mirror/,,http://torproject.gtor.org/dist/,https://torproject.gtor.org/dist/,rsync://torproject.gtor.org/website-mirror/dist/,,Fri Sep 9 22:46:02 2016 +Tor Fan,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,NO,http://mirror.velcommuta.de/tor/,https://mirror.velcommuta.de/tor/,,,http://mirror.velcommuta.de/tor/dist/,https://mirror.velcommuta.de/tor/dist/,,,Wed Sep 5 14:06:00 2018 +EFF,EFF,US,United States of America,NorthAmerica,TRUE,FALSE,NO,,https://tor.eff.org,,,,https://tor.eff.org/dist/,,,Wed Sep 5 14:06:00 2018 +Tor Fan,Tor Supporter,GR,Greece,Europe,TRUE,TRUE,NO,http://tor.void.gr,https://tor.void.gr,,,http://tor.void.gr/dist/,https://tor.void.gr/dist/,,,Wed Jun 27 21:28:08 2018 +Ich Eben,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://reichster.de/mirrors/torproject.org/,https://reichster.de/mirrors/torproject.org,,,http://reichster.de/mirrors/torproject.org/dist/,https://reichster.de/mirrors/torproject.org/dist/,,,Wed Sep 5 14:06:00 2018 +jlgaddis AT gnu DOT org,Evil Routers,US,United States of America,NorthAmerica,TRUE,FALSE,No,http://tor1.evilrouters.net/,,,,http://tor1.evilrouters.net/dist/,,,,Sun Jan 7 20:12:24 2018 +tor AT miglix DOT eu,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,NO,http://tor.miglix.eu,https://tor.miglix.eu,,,http://tor.miglix.eu/dist/,https://tor.miglix.eu/dist/,,,Fri Sep 9 22:46:02 2016 +tor TA ninurta TOD name,TorNinurtaName,AT,Austria,Europe,TRUE,TRUE,no,http://tor.ninurta.name/,,,,http://tor.ninurta.name/dist/,,,,Fri Oct 24 12:02:17 2014 +fr33tux general-changelog-team.fr,Tor Supporter,FR,France,Europe,TRUE,TRUE,No,http://tor.fr33tux.org,https://tor.fr33tux.org,,,http://tor.fr33tux.org/dist/,https://tor.fr33tux.org/dist/,,,Sun Jan 7 20:12:24 2018 +sebastian(at)bobrecki(dot)pl,Sebastian M. Bobrecki,PL,Poland,Europe,TRUE,FALSE,No,http://tor.iv.net.pl,https://tor.iv.net.pl,,,http://tor.iv.net.pl/dist/,https://tor.iv.net.pl/dist/,,,Mon Sep 14 14:14:19 2015 +tor-mirror AT rdns DOT cc,d0wn.biz,FR,France,Europe,TRUE,FALSE,No,http://tor.static.lu,https://tor.static.lu,,,http://tor.static.lu/dist/,https://tor.static.lu/dist/,,,Fri Sep 9 22:46:02 2016 +tor@moparisthebest.com,moparisthebest.com,DE,Germany,Europe,TRUE,TRUE,No,http://www.moparisthebest.com/tor/,https://www.moparisthebest.com/tor/,,,http://www.moparisthebest.com/tor/dist/,https://www.moparisthebest.com/tor/dist/,,,Sun Jan 7 20:12:24 2018 +stefano.fenoglio AT gmail DOT com,Tor Supporter,IT,Italy,Europe,TRUE,FALSE,No,http://tor.stefanof.com,,,,http://tor.stefanof.com/dist,,,,Fri Sep 9 22:46:02 2016 +Tor Fan,Ramos Research,US,United States of America,NorthAmerica,TRUE,TRUE,No,http://tor.ramosresearch.com/,,,,http://tor.ramosresearch.com/dist/,,,,Wed Mar 18 18:53:03 2015 +s7r[at]sky-ip[d0t]org,sky-ip.org,NL,Netherlands,Europe,TRUE,FALSE,No,http://beautiful-mind.sky-ip.org/,,,,http://beautiful-mind.sky-ip.org/dist/,,,,Fri Sep 9 22:46:02 2016 +tor#pajonzeck#de,ITsn,DE,Germany,Europe,TRUE,FALSE,No,http://tor.pajonzeck.de/,https://tor.pajonzeck.de/,rsync://tor.pajonzeck.de/tor,,http://tor.pajonzeck.de/dist/,https://tor.pajonzeck.de/dist/,rsync://tor.pajonzeck.de/tor/dist,http://zgfgvob256pffy62.onion,Wed May 31 03:15:41 2017 +peter AT ludikovsky DOT name,Tor Supporter,AT,Austria,Europe,TRUE,TRUE,No,http://tor.ludikovsky.name/,https://tor.ludikovsky.name/,rsync://tor.ludikovsky.name/tor,,http://tor.ludikovsky.name/dist,https://tor.ludikovsky.name/dist,rsync://tor.ludikovsky.name/tor-dist,http://54lnbzjo6xlr4f4j.onion/,Sun Jan 7 20:12:24 2018 +admin AT nuclear DASH weapons DOT net,Setec Administrator,US,Texas,NorthAmerica,TRUE,FALSE,No,http://tor.nuclear-weapons.net,https://tor.nuclear-weapons.net,,,http://tor.nuclear-weapons.net/dist,https://tor.nuclear-weapons.net/dist,,,Wed Sep 5 00:49:40 2018 +opi@zeropi.net,Tor Supporter,FR,France,Europe,TRUE,TRUE,No,http://tor-mirror.zeropi.net/,,,,http://tor-mirror.zeropi.net/dist/,,,,Thu Dec 4 05:15:20 2014 +alexander AT dietrich DOT cx,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://tor.ybti.net/,https://tor.ybti.net/,,,http://tor.ybti.net/dist/,https://tor.ybti.net/dist/,,,Wed Sep 5 16:53:44 2018 +tor@0x3d.lu,0x3d.lu,DE,Germany,Europe,TRUE,FALSE,No,http://tor.0x3d.lu/,https://tor.0x3d.lu/,,,http://tor.0x3d.lu/dist/,https://tor.0x3d.lu/dist/,,,Wed Sep 5 16:53:44 2018 +kontakt@unicorncloud.org,UnicornCloud.org,AT,Favoriten,Europe,TRUE,TRUE,No,http://www.unicorncloud.org/public/torproject.org/,https://www.unicorncloud.org/public/torproject.org/,,,http://www.unicorncloud.org/public/torproject.org/dist,https://www.unicorncloud.org/public/torproject.org/dist,,,Wed Mar 18 18:53:03 2015 +James Murphy,intfxdx.com,US,United States of America,NorthAmerica,TRUE,TRUE,No,http://108.248.87.242/,https://108.248.87.242/,,,http://108.248.87.242/dist/,https://108.248.87.242/dist/,,,Wed Sep 5 16:53:44 2018 +Sam Whited 4096R/54083AE104EA7AD3 ,SamWhited.com,US,GA,NorthAmerica,TRUE,TRUE,FALSE,http://mirrors.samwhited.net/tor,https://mirrors.samwhited.net/tor,rsync://mirrors.samwhited.net/tor,,http://mirrors.samwhited.net/tor/dist,https://mirrors.samwhited.net/tor/dist,rsync://mirrors.samwhited.net/tor-dist,,Fri Jul 17 15:49:12 2015 +rohit008 AT e DOT ntu DOT edu DOT sg,NTUOSS,SG,Singapore,Asia,TRUE,FALSE,No,http://torproject.ntuoss.com/,,,,http://torproject.ntuoss.com/dist/,,,,Wed Mar 18 18:53:03 2015 +hostmaster@lucidnetworks.net,Lucid Networks,US,United States of America,NorthAmerica,TRUE,FALSE,No,http://tor.mirrors.lucidnetworks.net,,rsync://tor.mirrors.lucidnetworks.net::tor,,http://tor.mirrors.lucidnetworks.net/dist,,rsync://tor.mirrors.lucidnetworks.net::tor-dist,,Wed Sep 5 16:53:44 2018 +mirror ntzk de,Netzkonstrukt Berlin,DE,Germany,Europe,TRUE,FALSE,No,http://mirror.ntzk.de/torproject.org/,https://mirror.ntzk.de/torproject.org/,,,http://mirror.ntzk.de/torproject.org/dist/,https://mirror.ntzk.de/torproject.org/dist/,,,Wed Sep 5 16:53:44 2018 +mirror@xfree.com.ar,Xfree.com.ar,AR,Argentina,SouthAmerica,TRUE,FALSE,No,http://tor.xfree.com.ar/,,,,http://tor.xfree.com.ar/dist/,,,,Mon Jan 8 07:58:44 2018 +tor AT eprci NET,EPRCI,US,NH,NorthAmerica,TRUE,FALSE,No,http://tor.eprci.net/,https://www.eprci.com/tor/,,,http://tor.eprci.net/dist/,https://www.eprci.com/tor/dist/,,,Wed Sep 5 16:53:44 2018 +tor@kura.io,KURA IO LIMITED,NL,Netherlands,Europe,TRUE,TRUE,TRUE,http://tor-mirror.kura.io/,https://tor-mirror.kura.io/,rsync://tor-mirror.kura.io/torproject.org,ftp://tor-mirror.kura.io,http://tor-mirror.kura.io/dist/,https://tor-mirror.kura.io/dist/,rsync://tor-mirror.kura.io/torproject.org/dist,,Sun Jan 25 09:27:59 2015 +tor-admin AT wardsback DOT org,wardsback.org,FR,France,Europe,TRUE,FALSE,No,http://alliumcepa.wardsback.org/,,,,http://alliumcepa.wardsback.org/dist/,,,,Wed Sep 5 16:53:44 2018 +PW,PW,DE,Germany,Europe,TRUE,TRUE,NO,http://tor.pw.is/,https://www.it-sicherheitschannel.de/,,,http://tor.pw.is/dist/,https://www.it-sicherheitschannel.de/dist/,,,Mon Jan 8 07:58:44 2018 +kevin@freedom.press,Freedom of the Press Foundation,US,United States of America,NorthAmerica,True,False,No,http://tor.freedom.press,https://tor.freedom.press,,,http://tor.freedom.press/dist/,https://tor.freedom.press/dist/,,,Sat Jan 16 12:17:09 2016 +hsu AT peterdavehellor DOT org,Department of CSE. Yuan Ze University,TW,Taiwan,Asia,TRUE,FALSE,No,http://ftp.yzu.edu.tw/torproject.org/,https://ftp.yzu.edu.tw/torproject.org/,rsync://ftp.yzu.edu.tw/pub/torproject.org/,ftp://ftp.yzu.edu.tw/torproject.org/,http://ftp.yzu.edu.tw/torproject.org/dist/,https://ftp.yzu.edu.tw/torproject.org/dist/,rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/,,Wed Sep 5 16:53:44 2018 +tor at tvdw dot eu,TvdW,,,,TRUE,TRUE,Yes,http://tor-exit.network,,,,http://tor-exit.network/dist,,,,Wed Sep 5 16:53:44 2018 +tormaster AT urown DOT net,urown.net,CH,Switzerland,Europe,TRUE,TRUE,No,http://torproject.urown.net/,https://torproject.urown.net/,,,http://torproject.urown.net/dist/,https://torproject.urown.net/dist/,,http://torprowdd64ytmyk.onion,Wed Sep 5 14:06:00 2018 +Stefan,sela Internet,DE,Germany,Europe,TRUE,TRUE,No,http://sela.io/mirrors/torproject.org/,https://sela.io/mirrors/torproject.org/,,,http://sela.io/mirrors/torproject.org/dist/,https://sela.io/mirrors/torproject.org/dist/,,,Wed Sep 5 14:06:00 2018 +thomaswhite AT riseup DOT net,TheCthulhu,NL,The Netherlands,Europe,True,False,No,http://tor.thecthulhu.com/,https://tor.thecthulhu.com/,,,http://tor.thecthulhu.com/dist/,https://tor.thecthulhu.com/dist/,,,Fri Sep 9 22:46:02 2016 +webmaster AT ccc DOT de,Chaos Computer Club,DE,Germany,Europe,TRUE,FALSE,No,http://tor.ccc.de/,https://tor.ccc.de,,,http://tor.ccc.de/dist/,https://tor.ccc.de/dist/,,,Wed Sep 5 16:53:44 2018 +Tor AT goodeid DOT com,Tor Supporter,CA,Canada,NorthAmerica,TRUE,FALSE,No,http://goodeid.com/mirrors/tor-project.org/,,,,http://goodeid.com/mirrors/tor-project.org/dist/,,,,Fri Sep 9 22:46:02 2016 +tor@datensicherhe.it,datensicherhe.it,AT,Austria,Europe,TRUE,FALSE,No,http://datensicherhe.it/torproject,https://datensicherhe.it/torproject,,,http://datensicherhe.it/torproject/dist/,https://datensicherhe.it/torproject/dist/,,,Fri Sep 9 22:46:02 2016 +NocturnalFilth,Disciples of Disorder,NL,Netherlands,Europe,TRUE,FALSE,NO,http://torproject.mirror.disciplesofdisorder.com,https://torproject.mirror.disciplesofdisorder.com,,,http://torproject.mirror.disciplesofdisorder.com/dist/,https://torproject.mirror.disciplesofdisorder.com/dist/,,,Wed May 17 11:00:42 2017 +tormirror0121.10.swsnyder@spamgourmet.com,tormirror,DE,Germany,Europe,FALSE,NO,http://tormirror.snydernet.net/,https://tormirror.snydernet.net/,,,http://tormirror.snydernet.net/dist/,https://tormirror.snydernet.net/dist/,,,Mon Dec 28 17:11:31 2015,Wed Sep 5 16:16:16 2018 +justaguy@riseup.net,Justaguy,FR,France,Europe,TRUE,FALSE,No,http://tormirror.justaguy.pw/,https://tormirror.justaguy.pw,,,http://tormirror.justaguy.pw/dist/,https://tormirror.justaguy.pw/dist/,,,Sat Jan 16 12:17:09 2016 +Disciples of Disorder,Vargr,NL,Netherlands,Europe,TRUE,FALSE,NO,http://tor.mirror.disciplesofdisorder.eu,https://tor.mirror.disciplesofdisorder.eu,,,http://tor.mirror.disciplesofdisorder.eu/dist/,https://tor.mirror.disciplesofdisorder.eu/dist/,,http://vargrevir52vkbte.onion,Thu Dec 24 08:50:00 2015 +nick at calyx dot com,The Calyx Institute,US,United States of America,NorthAmerica,TRUE,FALSE,No,http://tor.calyxinstitute.org,https://tor.calyxinstitute.org,,,http://tor.calyxinstitute.org/dist/,https://tor.calyxinstitute.org/dist/,,http://tmdrhl4e4anhsjc5.onion,Wed Sep 5 16:53:44 2018 +tor@armbrust.me,Michael Armbruster,FR,France,Europe,TRUE,TRUE,No,http://tor.armbrust.me/,https://tor.armbrust.me/,rsync://tor.armbrust.me/tor,,http://tor.armbrust.me/dist/,https://tor.armbrust.me/dist,rsync://tor.armbrust.me/tor-dist,,Wed Sep 5 16:53:44 2018 +HdO Tor,HdO Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://tor.hdoev.de/,,,,http://tor.hdoev.de/dist/,,,,Fri Sep 9 22:46:02 2016 +Tor Fan,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://torproject.mirror.metalgamer.eu/,https://torproject.mirror.metalgamer.eu/,,,http://torproject.mirror.metalgamer.eu/dist/,https://torproject.mirror.metalgamer.eu/dist/,,,Wed Sep 5 16:53:44 2018 +john AT quintex.com,Quintex Alliance Consulting,US,United States of America,NorthAmerica,TRUE,FALSE,No,http://torproject.quintex.com/,https://torproject.quintex.com,rsync://mirror.quintex.com/torprojectwebsite,ftp://mirror.quintex.com/torproject.org,http://torproject.quintex.com/dist,https://torproject.quintex.com/dist,rsync://mirror.quintex.com/torprojectdist,,Fri Sep 9 22:46:02 2016 +noc AT babylon DOT network,Babylon Network,NL,The Netherlands,Europe,TRUE,TRUE,No,http://nl.mirror.babylon.network/torproject/,https://nl.mirror.babylon.network/torproject/,rsync://nl.mirror.babylon.network/torproject/,ftp://nl.mirror.babylon.network/torproject/,http://nl.mirror.babylon.network/torproject/dist/,https://nl.mirror.babylon.network/torproject/dist/,rsync://nl.mirror.babylon.network/torproject/dist/,,Sun Jan 7 20:12:24 2018 +noc AT babylon DOT network,Babylon Network,FR,France,Europe,TRUE,TRUE,No,http://fr.mirror.babylon.network/torproject/,https://fr.mirror.babylon.network/torproject/,rsync://fr.mirror.babylon.network/torproject/,ftp://fr.mirror.babylon.network/torproject/,http://fr.mirror.babylon.network/torproject/dist/,https://fr.mirror.babylon.network/torproject/dist/,rsync://fr.mirror.babylon.network/torproject/dist/,,Sun Jan 7 20:12:24 2018 +Pool Toys,Pool Toys,SGP,Singapore,Asia,TRUE,TRUE,No,http://mirrors-sg.pooltoys.com/tor/,,rsync://mirrors-sg.pooltoys.com/tor/,ftp://mirrors-sg.pooltoys.com/tor/,http://mirrors-sg.pooltoys.com/tor/,,,, +cyberrax at yahoo.com,CyberSiDE,EE,Estonia,Europe,TRUE,FALSE,No,http://cyberside.net.ee/sibul/,https://cyberside.net.ee/sibul/,,,http://cyberside.net.ee/sibul/dist/,https://cyberside.net.ee/sibul/dist/,,,Wed Sep 5 00:49:40 2018 +torsupport AT tb-itf DOT de,TB-ITF,DE,Germany,Europe,TRUE,TRUE,No,http://tormirror.tb-itf-tor.de,https://tormirror.tb-itf-tor.de,,ftp://tormirror.tb-itf-tor.de/,http://tormirror.tb-itf-tor.de/dist/,https://tormirror.tb-itf-tor.de/dist/,,,Wed Sep 5 16:53:44 2018 +Disciples of Disorder,Vargr,NL,Netherlands,Europe,TRUE,FALSE,NO,http://tor.mirror.disciplesofdisorder.eu,https://tor.mirror.disciplesofdisorder.eu,,,http://tor.mirror.disciplesofdisorder.eu/dist/,https://tor.mirror.disciplesofdisorder.eu/dist/,,http://vargrevir52vkbte.onion, +admin @T standaloneinstaler.com,Standalone Installer Software,FR,France,Europe,TRUE,TRUE,No,http://mirrors.standaloneinstaller.com/torproject/,,rsync://mirrors.standaloneinstaller.com/torproject/,,http://mirrors.standaloneinstaller.com/torproject/dist,,rsync://mirrors.standaloneinstaller.com/torproject/dist,,Wed Sep 5 16:16:16 2018 +lutz.horn@posteo.de,,DE,Germany,Europe,TRUE,FALSE,No,,https://tor.lhorn.de/,,,,https://tor.lhorn.de/dist/,,,Wed Feb 8 12:00:00 2017 +karibu@freedif.org,Freedif,VN,Vietnam,Asia,TRUE,FALSE,No,http://mirror.freedif.org/TorProject/,https://mirror.freedif.org/TorProject/,,,http://mirror.freedif.org/TorProject/dist,https://mirror.freedif.org/TorProject/dist,,,Wed Sep 5 00:49:40 2018 +Tor Fan,Tor Supporter,FR,France,Europe,TRUE,FALSE,No,http://torproject.xj1.fr/,,,,http://torproject.xj1.fr/dist/,,,javkk6746z7wvigk.onion,Wed May 31 03:15:41 2017 +tienhn@vinahost.vn,VinaHost,VN,Viet Nam,Asia,TRUE,FALSE,No,,https://mirror.vinahost.vn/torproject.org,rsync://mirror.vinahost.vn/torproject.org,,,https://mirror.vinahost.vn/torproject.org/dist/,rsync://mirror.vinahost.vn/torproject.org/dist,,Wed Apr 19 18:52:55 2017 +mirror AT funkfreundelandshut DOT de,Funkfreunde Landshut e.V.,DE,Germany,Europe,TRUE,FALSE,No,http://mirror.funkfreundelandshut.de/torproject.org/,,,,http://mirror.funkfreundelandshut.de:81/torproject.org/dist/,,,http://44.225.40.254/torproject.org/dist,Wed Sep 5 00:49:40 2018 +email@heikorichter.name,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://tor.heikorichter.name,https://tor.heikorichter.name,,,http://tor.heikorichter.name/dist,https://tor.heikorichter.name/dist,rsync://ftp.heikorichter.name/tor,,Sun Jan 7 20:12:24 2018 +tor secure voyage,secure.voyage,CA,Canada,NorthAmerica,TRUE,FALSE,No,http://tor.secure.voyage,https://tor.secure.voyage,,,http://tor.secure.voyage/dist,https://tor.secure.voyage/dist,,,Mon Jan 8 07:58:44 2018 +razx.cloud,razx,CA,Canada,NorthAmerica,TRUE,FALSE,No,http://tcejorprot.razx.cloud/,https://tcejorprot.razx.cloud/,,,http://tcejorprot.razx.cloud/dist/,https://tcejorprot.razx.cloud/dist,,http://rsqiscyvxt4qgaiw.onion/torproject.org/,Wed Sep 5 19:32:45 2018 +coby [at ]127001 [dot] ovh,Tor Supporter,DE,Germany,Europe,TRUE,FALSE,No,http://tor.127001.ovh/,https://tor.127001.ovh/,,,http://tor.127001.ovh/dist/,https://tor.127001.ovh/dist/,,,Mon Jan 8 07:58:44 2018 +Tor Fan,Tor Supporter,FR,France,Europe,TRUE,TRUE,No,http://mirror.oldsql.cc/tor/,https://mirror.oldsql.cc/tor/,,,http://mirror.oldsql.cc/tor/dist/,https://mirror.oldsql.cc/tor/dist/,,http://oldsqlcbr3aykyta.onion/tor,Wed Sep 5 19:32:45 2018 +Lunar,Tor World (torworld.org),DE,Germany,Europe,TRUE,FALSE,No,http://mirror.torworld.org/,https://mirror.torworld.org/,,,http://mirror.torworld.org/dist/,https://mirror.torworld.org/dist/,,,Wed Sep 5 14:06:00 2018 Merlijn de Leeuw,Serverius Connectivity,NL,Netherlands,Europe,TRUE,TRUE,NO,http://mirror.serverius.net,https://mirror.serverius.net/torproject,rsync://mirror.serverius.net/torproject,,http://mirror.serverius.net/dist,https://mirror.serverius.net/dist,rsync://mirror.serverius.net/dist,, iletisim at hackerspace.ist,Hackerspace Istanbul,NL,Netherlands,Europe,TRUE,FALSE,No,http://tor.hackerspace.ist/,https://tor.hackerspace.ist/,,,http://tor.hackerspace.ist/dist/,https://tor.hackerspace.ist/dist/,,, iletisim at hackerspace.ist,Ozgurlesin.org (hs.ist),NL,Netherlands,Europe,TRUE,FALSE,No,http://tor.ozgurlesin.org/,https://tor.ozgurlesin.org/,,,http://tor.ozgurlesin.org/dist/,https://tor.ozgurlesin.org/dist/,,, From dad9d805eeb3cd751b63a4b10ab025d1318e15c5 Mon Sep 17 00:00:00 2001 From: traumschule Date: Thu, 11 Oct 2018 03:45:27 +0200 Subject: [PATCH 03/10] Remove some failing mirrors (#27997) --- include/mirrors-table.wmi | 595 -------------------------------------- include/tor-mirrors.csv | 158 +++------- 2 files changed, 44 insertions(+), 709 deletions(-) diff --git a/include/mirrors-table.wmi b/include/mirrors-table.wmi index 9a3545c6..e69de29b 100644 --- a/include/mirrors-table.wmi +++ b/include/mirrors-table.wmi @@ -1,595 +0,0 @@ - - - - FR - - Tor Supporter - - Up to date - - - - http - http - https - https - - - - - - - - - UA - - IP-Connect LLC - - Up to date - - ftp - http - http - - - - - rsync - rsync - - - - - DE - - TB-ITF - - Up to date - - - - http - http - https - https - - - - - - - - - IS - - torproject.is - - Up to date - - - - http - http - - - - - - - - - - - - - AU - - CoffsWiFi - - Up to date - - - - http - http - - - - - - - - - - - - - IS - - TheOnionRouter - - Up to date - - - - http - http - - - - - - - - - - - - - DE - - torservers - - Up to date - - - - http - http - https - https - - - - - - - - - DE - - Tor Supporter - - Up to date - - - - http - http - https - https - - - - - - - - - DE - - 0x3d.lu - - Up to date - - - - http - http - https - https - - - - - - - - - US - - intfxdx.com - - Up to date - - - - http - http - https - https - - - - - - - - - US - - Lucid Networks - - Up to date - - - - http - http - - - - - rsync - rsync - - - - - US - - EPRCI - - Up to date - - - - http - http - https - https - - - - - - - - - FR - - wardsback.org - - Up to date - - - - http - http - - - - - - - - - - - - - TW - - Department of CSE. Yuan Ze University - - Up to date - - ftp - http - http - https - https - rsync - rsync - - - - - XX - - TvdW - - Up to date - - - - http - http - - - - - - - - - - - - - DE - - Chaos Computer Club - - Up to date - - - - http - http - https - https - - - - - - - - - US - - The Calyx Institute - - Up to date - - - - http - http - https - https - - - - - - - - - FR - - Michael Armbruster - - Up to date - - - - http - http - https - https - rsync - rsync - - - - - DE - - TB-ITF - - Up to date - - ftp - http - http - https - https - - - - - - - - - FR - - stalkr.net - - Up to date - - - - http - http - https - https - - - - - - - - - DE - - tormirror - - Up to date - - ftp - http - http - - - - - - - - - - - - - FR - - Standalone Installer Software - - Up to date - - - - http - http - - - - - rsync - rsync - - - - - IS - - Frenn vun der Enn A.S.B.L. - - Up to date - - - - http - http - - - - - - - - - - - - - ES - - Tor Supporter - - Up to date - - - - http - http - https - https - - - - - - - - - AT - - ph3x - - Up to date - - - - http - http - https - https - - - - - - - - - US - - AskApache - - Up to date - - - - http - http - - - - - - - - - - - - - DE - - Tor Supporter - - Up to date - - - - http - http - https - https - - - - - - - - - US - - EFF - - Up to date - - - - - - - - https - https - - - - - - - - - DE - - Tor Supporter - - Up to date - - - - http - http - https - https - - - - - - - - - CH - - urown.net - - Up to date - - - - http - http - https - https - - - - - - - - - DE - - sela Internet - - Up to date - - - - http - http - https - https - - - - - - - - - DE - - Tor World (torworld.org) - - Up to date - - - - http - http - https - https - - - - - - - - - US - - Setec Administrator - - Up to date - - - - http - http - https - https - - - - - - - - - VN - - Freedif - - Up to date - - - - http - http - https - https - - - - - - - - - DE - - Funkfreunde Landshut e.V. - - Up to date - - - - http - http - - - - - - - - - diff --git a/include/tor-mirrors.csv b/include/tor-mirrors.csv index bff2d4db..84b3e027 100644 --- a/include/tor-mirrors.csv +++ b/include/tor-mirrors.csv @@ -1,114 +1,44 @@ -adminContact,orgName,isoCC,subRegion,region,ipv4,ipv6,loadBalanced,httpWebsiteMirror,httpsWebsiteMirror,rsyncWebsiteMirror,ftpWebsiteMirror,httpDistMirror,httpsDistMirror,rsyncDistMirror,hiddenServiceMirror,updateDate -Vedran Miletić,University of Rijeka,HR,Croatia,Europe,TRUE,FALSE,No,,,,,http://mirrors.uniri.hr/torproject.org/dist/,https://mirrors.uniri.hr/torproject.org/dist/,,, -Tor Fan,Tor Supporter,US,United States of America,NorthAmerica,TRUE,TRUE,No,http://tor.loritsu.com/,,,,http://tor.loritsu.com/dist/,,,, -Tor Fan,Tor Supporter,LU,Luxemborg,Europe,TRUE,FALSE,No,http://torproject.adamas.ai/,,,,http://torproject.adamas.ai/dist/,,,, -Tor Fan,NW Linux,US,WA,NorthAmerica,TRUE,FALSE,No,http://torproject.nwlinux.us/,,rsync://nwlinux.us/tor-web,,http://torproject.nwlinux.us/dist/,,rsync://nwlinux.us/tor-dist,, -Tor Fan,Tor Supporter,NL,The Netherlands,Europe,TRUE,FALSE,No,,,,,,https://www.coevoet.nl/tor/dist/,,, -Tor Fan,LazyTiger,FR,France,Europe,TRUE,FALSE,No,http://tor.taiga-san.net/,,,,http://tor.taiga-san.net/dist/,,,, -Tor Fan,Tor Supporter,EE,Estonia,Europe,TRUE,FALSE,No,http://tor.li/,https://tor.li/,,,http://tor.li/dist/,https://tor.li/dist/,,, -mirror-service@netcologne.de,NetCologne GmbH,DE,NRW,Europe,TRUE,TRUE,No,http://mirror.netcologne.de/torproject.org,,rsync://mirror.netcologne.de/torproject.org,ftp://mirror.netcologne.de/torproject.org/,http://mirror.netcologne.de/torproject.org/dist,,rsync://mirror.netcologne.de/torproject.org/dist,,Wed Sep 5 16:16:16 2018 -admin AT netgull DOT com,NetGull,US,United States of America,NorthAmerica,TRUE,TRUE,No,,,,,http://www.netgull.com/torproject/,,,, -mirrors[at]ip-connect[dot]vn[dot]ua,IP-Connect LLC,UA,Ukraine,,TRUE,TRUE,Yes,http://torproject.ip-connect.vn.ua,,rsync://torproject.ip-connect.vn.ua/torproject,ftp://torproject.ip-connect.vn.ua/mirror/torproject/,http://torproject.ip-connect.vn.ua/dist,,rsync://torproject.ip-connect.vn.ua/torproject/dist,,Wed Sep 5 16:53:44 2018 -torsupport AT tb-itf DOT de,TB-ITF,DE,Germany,Europe,TRUE,TRUE,No,http://tormirror.tb-itf-tor.de,https://tormirror.tb-itf-tor.de,,,http://tormirror.tb-itf-tor.de/dist/,https://tormirror.tb-itf-tor.de/dist/,,,Wed Sep 5 16:53:44 2018 -info AT zentrum-der-gesundheit DOT de,Zentrum der Gesundheit,DK,Denmark,Europe,TRUE,FALSE,No,http://tor.idnr.ws/,,,,http://tor.idnr.ws/dist/,,,,Thu Sep 4 08:16:00 2014 -info /AT enn /DOT lu,Frenn vun der Enn A.S.B.L.,IS,Iceland,Europe,TRUE,FALSE,No,http://torproject.lu/,,,,http://torproject.lu/dist/,,,http://btn6gqzqevlhoryd.onion,Wed Sep 5 14:06:00 2018 -Piratenpartei Bayern,Piratenpartei Bayern,DE,Germany,Europe,TRUE,FALSE,NO,http://tormirror.piratenpartei-bayern.de,https://tormirror.piratenpartei-bayern.de,,,http://tormirror.piratenpartei-bayern.de/dist/,https://tormirror.piratenpartei-bayern.de/dist/,,,Fri Sep 9 22:46:02 2016 -Tor Fan,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,NO,http://tor.hoi-polloi.org,https://tor.hoi-polloi.org/,,,http://tor.hoi-polloi.org/dist/,https://tor.hoi-polloi.org/dist/,,,Fri May 5 15:12:25 2017 -tor@fodt.it // FoDT.it Webteam,FoDT.it,AT,Austria,Europe,TRUE,FALSE,No,http://tor.fodt.it,https://tor.fodt.it,,ftp://ftp.fodt.it/pub/mirrors/torproject.org/,http://tor.fodt.it/dist/,https://tor.fodt.it/dist/,,,Wed Aug 27 07:19:07 2014 -http://www.multinet.no,MultiNet AS,NO,Trondheim,Europe,TRUE,TRUE,No,http://tor.multinet.no/,,,,http://tor.multinet.no/dist/,,,,Wed Sep 5 00:49:40 2018 -haskell at gmx.es,Tor Supporter,ES,Spain,Europe,TRUE,TRUE,No,http://tor.zilog.es/,https://tor.zilog.es/,,,http://tor.zilog.es/dist/,https://tor.zilog.es/dist/,,,Wed Sep 5 14:06:00 2018 -Tor Fan,Tor Supporter,US,United States of America,NorthAmerica,FALSE,TRUE,No,http://2607:8b00:2::6258:5c9/,https://2607:8b00:2::6258:5c9/,,,http://2607:8b00:2::6258:5c9/dist/,https://2607:8b00:2::6258:5c9/dist/,,,Fri Jan 23 09:17:52 2015 -margus.random at mail.ee,CyberSIDE,EE,Estonia,Europe,TRUE,FALSE,No,http://cyberside.planet.ee/tor/,,,,http://cyberside.net.ee/tor/,,,,Wed Sep 5 00:49:40 2018 -Tor Fan,torproject.is,IS,Iceland,Europe,TRUE,FALSE,No,http://www.torproject.is/,,,,http://www.torproject.is/dist/,,,,Wed Sep 5 16:53:44 2018 -Tor Fan,spline,DE,Germany,Europe,TRUE,FALSE,No,http://tor.spline.de/,https://tor.spline.inf.fu-berlin.de/,rsync://ftp.spline.de/tor,ftp://ftp.spline.de/pub/tor,http://tor.spline.de/dist/,https://tor.spline.inf.fu-berlin.de/dist/,rsync://ftp.spline.de/tor/dist,,Wed Sep 5 16:16:16 2018 -hosting AT ph3x DOT at,ph3x,AT,Austria,Europe,TRUE,FALSE,No,http://torproject.ph3x.at,https://torproject.ph3x.at,,,http://torproject.ph3x.at/dist/,https://torproject.ph3x.at/dist/,,,Wed Sep 5 14:06:00 2018 -Tor Fan,Tor Supporter,MX,Mexico,CentralAmerica,TRUE,FALSE,No,http://fbnaia.homelinux.net/torproject/,https://fbnaia.homelinux.net/torproject/,,,http://fbnaia.homelinux.net/torproject/dist/,https://fbnaia.homelinux.net/torproject/dist/,,,Fri Sep 29 14:11:11 2017 -webmaster AT askapache DOT com,AskApache,US,California,NorthAmerica,TRUE,FALSE,No,http://tor.askapache.com/,,,,http://tor.askapache.com/dist/,,,,Wed Sep 5 14:06:00 2018 -kontakt AT unicorncloud DOT org,UnicornCloud.org,DE,Germany,Europe,TRUE,FALSE,No,http://mirror.unicorncloud.org/torproject.org/,https://mirror.unicorncloud.org/torproject.org/,,,http://mirror.unicorncloud.org/torproject.org/dist,https://mirror.unicorncloud.org/torproject.org/dist,,,Fri Sep 29 11:12:25 2017 -root AT amorphis DOT eu,Amorphis,NL,The Netherlands,Europe,TRUE,FALSE,No,http://tor.amorphis.eu/,,,,http://tor.amorphis.eu/dist/,,,,Wed Mar 18 18:53:03 2015 -hackthissite.org,HackThisSite.org,US,United States,NorthAmerica,TRUE,TRUE,No,http://tor.hackthissite.org/,https://tor.hackthissite.org/,,,http://mirror.hackthissite.org/tor,https://mirror.hackthissite.org/tor,,,Wed May 25 21:09:20 2016 -paul at coffswifi.net,CoffsWiFi,AU,Australia and New Zealand,Australia,TRUE,FALSE,No,http://torproject.coffswifi.net,,,,http://torproject.coffswifi.net/dist,,,,Wed Sep 5 16:53:44 2018 -Tor Fan,cyberarmy,AT,Austria,Europe,TRUE,FALSE,No,http://tor.cyberarmy.at/,,,,,,,,Sat Jan 16 12:17:09 2016 -hostmaster AT example DOT com,TheOnionRouter,IS,Iceland,Europe,TRUE,FALSE,No,http://www.theonionrouter.com/,,,,http://www.theonionrouter.com/dist/,,,,Wed Sep 5 16:53:44 2018 -Tor Fan,crazyhaze.de,DE,Germany,Europe,TRUE,FALSE,No,http://tor.crazyhaze.de/,https://tor.crazyhaze.de/,,,http://tor.crazyhaze.de/dist/,https://tor.crazyhaze.de/dist/,,,Mon Jan 8 07:58:44 2018 -Tor Fan,Soviet Anonymous,RU,Russia,Asia,TRUE,FALSE,No,http://creep.im/tor,https://creep.im/tor,rsync://creep.im/tor,ftp://creep.im/mirrors/tor,http://creep.im/tor/dist/,https://creep.im/tor/dist/,rsync://creep.im/tor-dist,,Mon Jan 8 07:58:44 2018 -Tor Fan,torservers,DE,Germany,Europe,TRUE,FALSE,No,http://www.torservers.net/mirrors/torproject.org/,https://www.torservers.net/mirrors/torproject.org/,,,http://www.torservers.net/mirrors/torproject.org/dist/,https://www.torservers.net/mirrors/torproject.org/dist/,,http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/,Wed Sep 5 16:53:44 2018 -Tor Fan,Lightning-bolt.net,CZ,Czech Republic,Europe,TRUE,FALSE,No,http://torproject.lightning-bolt.net/,,,,http://torproject.lightning-bolt.net/dist/,,,,Wed Mar 18 18:53:03 2015 -IceBear,myRL.net,IS,Iceland,Europe,TRUE,FALSE,No,http://tor.myrl.net/,https://tor.myrl.net/,,,http://tor.myrl.net/dist/,https://tor.myrl.net/dist/,,,Sun Jan 7 20:12:24 2018 -kiro AT userzap DOT de,Userzap,DE,Germany,Europe,TRUE,FALSE,No,http://torprojekt.userzap.de,https://torprojekt.userzap.de,,,http://torprojekt.userzap.de/dist/,https://torprojekt.userzap.de/dist/,,,Fri Jan 23 09:17:52 2015 -tor@les.net,tor@les.net,CA,Canada,NorthAmerica,TRUE,FALSE,NO,http://tor.les.net/,,,,http://tor.les.net/dist,,,,Wed Sep 5 16:53:44 2018 -tor@stalkr.net,stalkr.net,FR,France,Europe,TRUE,TRUE,NO,http://tor.stalkr.net/,https://tor.stalkr.net/,,,http://tor.stalkr.net/dist/,https://tor.stalkr.net/dist/,,,Wed Sep 5 16:16:16 2018 -doemela[AT]cyberguerrilla[DOT]org,cYbergueRrilLa AnonyMous NeXus,DE,Germany,Europe,TRUE,FALSE,NO,,https://tor-mirror.cyberguerrilla.org,,,,https://tor-mirror.cyberguerrilla.org/dist/,,http://6dvj6v5imhny3anf.onion,Wed Sep 5 16:53:44 2018 -contact@gtor.org,Gtor,DE,Germany,Europe,TRUE,TRUE,NO,http://torproject.gtor.org/,https://torproject.gtor.org/,rsync://torproject.gtor.org/website-mirror/,,http://torproject.gtor.org/dist/,https://torproject.gtor.org/dist/,rsync://torproject.gtor.org/website-mirror/dist/,,Fri Sep 9 22:46:02 2016 -Tor Fan,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,NO,http://mirror.velcommuta.de/tor/,https://mirror.velcommuta.de/tor/,,,http://mirror.velcommuta.de/tor/dist/,https://mirror.velcommuta.de/tor/dist/,,,Wed Sep 5 14:06:00 2018 -EFF,EFF,US,United States of America,NorthAmerica,TRUE,FALSE,NO,,https://tor.eff.org,,,,https://tor.eff.org/dist/,,,Wed Sep 5 14:06:00 2018 -Tor Fan,Tor Supporter,GR,Greece,Europe,TRUE,TRUE,NO,http://tor.void.gr,https://tor.void.gr,,,http://tor.void.gr/dist/,https://tor.void.gr/dist/,,,Wed Jun 27 21:28:08 2018 -Ich Eben,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://reichster.de/mirrors/torproject.org/,https://reichster.de/mirrors/torproject.org,,,http://reichster.de/mirrors/torproject.org/dist/,https://reichster.de/mirrors/torproject.org/dist/,,,Wed Sep 5 14:06:00 2018 -jlgaddis AT gnu DOT org,Evil Routers,US,United States of America,NorthAmerica,TRUE,FALSE,No,http://tor1.evilrouters.net/,,,,http://tor1.evilrouters.net/dist/,,,,Sun Jan 7 20:12:24 2018 -tor AT miglix DOT eu,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,NO,http://tor.miglix.eu,https://tor.miglix.eu,,,http://tor.miglix.eu/dist/,https://tor.miglix.eu/dist/,,,Fri Sep 9 22:46:02 2016 -tor TA ninurta TOD name,TorNinurtaName,AT,Austria,Europe,TRUE,TRUE,no,http://tor.ninurta.name/,,,,http://tor.ninurta.name/dist/,,,,Fri Oct 24 12:02:17 2014 -fr33tux general-changelog-team.fr,Tor Supporter,FR,France,Europe,TRUE,TRUE,No,http://tor.fr33tux.org,https://tor.fr33tux.org,,,http://tor.fr33tux.org/dist/,https://tor.fr33tux.org/dist/,,,Sun Jan 7 20:12:24 2018 -sebastian(at)bobrecki(dot)pl,Sebastian M. Bobrecki,PL,Poland,Europe,TRUE,FALSE,No,http://tor.iv.net.pl,https://tor.iv.net.pl,,,http://tor.iv.net.pl/dist/,https://tor.iv.net.pl/dist/,,,Mon Sep 14 14:14:19 2015 -tor-mirror AT rdns DOT cc,d0wn.biz,FR,France,Europe,TRUE,FALSE,No,http://tor.static.lu,https://tor.static.lu,,,http://tor.static.lu/dist/,https://tor.static.lu/dist/,,,Fri Sep 9 22:46:02 2016 -tor@moparisthebest.com,moparisthebest.com,DE,Germany,Europe,TRUE,TRUE,No,http://www.moparisthebest.com/tor/,https://www.moparisthebest.com/tor/,,,http://www.moparisthebest.com/tor/dist/,https://www.moparisthebest.com/tor/dist/,,,Sun Jan 7 20:12:24 2018 -stefano.fenoglio AT gmail DOT com,Tor Supporter,IT,Italy,Europe,TRUE,FALSE,No,http://tor.stefanof.com,,,,http://tor.stefanof.com/dist,,,,Fri Sep 9 22:46:02 2016 -Tor Fan,Ramos Research,US,United States of America,NorthAmerica,TRUE,TRUE,No,http://tor.ramosresearch.com/,,,,http://tor.ramosresearch.com/dist/,,,,Wed Mar 18 18:53:03 2015 -s7r[at]sky-ip[d0t]org,sky-ip.org,NL,Netherlands,Europe,TRUE,FALSE,No,http://beautiful-mind.sky-ip.org/,,,,http://beautiful-mind.sky-ip.org/dist/,,,,Fri Sep 9 22:46:02 2016 -tor#pajonzeck#de,ITsn,DE,Germany,Europe,TRUE,FALSE,No,http://tor.pajonzeck.de/,https://tor.pajonzeck.de/,rsync://tor.pajonzeck.de/tor,,http://tor.pajonzeck.de/dist/,https://tor.pajonzeck.de/dist/,rsync://tor.pajonzeck.de/tor/dist,http://zgfgvob256pffy62.onion,Wed May 31 03:15:41 2017 -peter AT ludikovsky DOT name,Tor Supporter,AT,Austria,Europe,TRUE,TRUE,No,http://tor.ludikovsky.name/,https://tor.ludikovsky.name/,rsync://tor.ludikovsky.name/tor,,http://tor.ludikovsky.name/dist,https://tor.ludikovsky.name/dist,rsync://tor.ludikovsky.name/tor-dist,http://54lnbzjo6xlr4f4j.onion/,Sun Jan 7 20:12:24 2018 -admin AT nuclear DASH weapons DOT net,Setec Administrator,US,Texas,NorthAmerica,TRUE,FALSE,No,http://tor.nuclear-weapons.net,https://tor.nuclear-weapons.net,,,http://tor.nuclear-weapons.net/dist,https://tor.nuclear-weapons.net/dist,,,Wed Sep 5 00:49:40 2018 -opi@zeropi.net,Tor Supporter,FR,France,Europe,TRUE,TRUE,No,http://tor-mirror.zeropi.net/,,,,http://tor-mirror.zeropi.net/dist/,,,,Thu Dec 4 05:15:20 2014 -alexander AT dietrich DOT cx,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://tor.ybti.net/,https://tor.ybti.net/,,,http://tor.ybti.net/dist/,https://tor.ybti.net/dist/,,,Wed Sep 5 16:53:44 2018 -tor@0x3d.lu,0x3d.lu,DE,Germany,Europe,TRUE,FALSE,No,http://tor.0x3d.lu/,https://tor.0x3d.lu/,,,http://tor.0x3d.lu/dist/,https://tor.0x3d.lu/dist/,,,Wed Sep 5 16:53:44 2018 -kontakt@unicorncloud.org,UnicornCloud.org,AT,Favoriten,Europe,TRUE,TRUE,No,http://www.unicorncloud.org/public/torproject.org/,https://www.unicorncloud.org/public/torproject.org/,,,http://www.unicorncloud.org/public/torproject.org/dist,https://www.unicorncloud.org/public/torproject.org/dist,,,Wed Mar 18 18:53:03 2015 -James Murphy,intfxdx.com,US,United States of America,NorthAmerica,TRUE,TRUE,No,http://108.248.87.242/,https://108.248.87.242/,,,http://108.248.87.242/dist/,https://108.248.87.242/dist/,,,Wed Sep 5 16:53:44 2018 -Sam Whited 4096R/54083AE104EA7AD3 ,SamWhited.com,US,GA,NorthAmerica,TRUE,TRUE,FALSE,http://mirrors.samwhited.net/tor,https://mirrors.samwhited.net/tor,rsync://mirrors.samwhited.net/tor,,http://mirrors.samwhited.net/tor/dist,https://mirrors.samwhited.net/tor/dist,rsync://mirrors.samwhited.net/tor-dist,,Fri Jul 17 15:49:12 2015 -rohit008 AT e DOT ntu DOT edu DOT sg,NTUOSS,SG,Singapore,Asia,TRUE,FALSE,No,http://torproject.ntuoss.com/,,,,http://torproject.ntuoss.com/dist/,,,,Wed Mar 18 18:53:03 2015 -hostmaster@lucidnetworks.net,Lucid Networks,US,United States of America,NorthAmerica,TRUE,FALSE,No,http://tor.mirrors.lucidnetworks.net,,rsync://tor.mirrors.lucidnetworks.net::tor,,http://tor.mirrors.lucidnetworks.net/dist,,rsync://tor.mirrors.lucidnetworks.net::tor-dist,,Wed Sep 5 16:53:44 2018 -mirror ntzk de,Netzkonstrukt Berlin,DE,Germany,Europe,TRUE,FALSE,No,http://mirror.ntzk.de/torproject.org/,https://mirror.ntzk.de/torproject.org/,,,http://mirror.ntzk.de/torproject.org/dist/,https://mirror.ntzk.de/torproject.org/dist/,,,Wed Sep 5 16:53:44 2018 -mirror@xfree.com.ar,Xfree.com.ar,AR,Argentina,SouthAmerica,TRUE,FALSE,No,http://tor.xfree.com.ar/,,,,http://tor.xfree.com.ar/dist/,,,,Mon Jan 8 07:58:44 2018 -tor AT eprci NET,EPRCI,US,NH,NorthAmerica,TRUE,FALSE,No,http://tor.eprci.net/,https://www.eprci.com/tor/,,,http://tor.eprci.net/dist/,https://www.eprci.com/tor/dist/,,,Wed Sep 5 16:53:44 2018 -tor@kura.io,KURA IO LIMITED,NL,Netherlands,Europe,TRUE,TRUE,TRUE,http://tor-mirror.kura.io/,https://tor-mirror.kura.io/,rsync://tor-mirror.kura.io/torproject.org,ftp://tor-mirror.kura.io,http://tor-mirror.kura.io/dist/,https://tor-mirror.kura.io/dist/,rsync://tor-mirror.kura.io/torproject.org/dist,,Sun Jan 25 09:27:59 2015 -tor-admin AT wardsback DOT org,wardsback.org,FR,France,Europe,TRUE,FALSE,No,http://alliumcepa.wardsback.org/,,,,http://alliumcepa.wardsback.org/dist/,,,,Wed Sep 5 16:53:44 2018 -PW,PW,DE,Germany,Europe,TRUE,TRUE,NO,http://tor.pw.is/,https://www.it-sicherheitschannel.de/,,,http://tor.pw.is/dist/,https://www.it-sicherheitschannel.de/dist/,,,Mon Jan 8 07:58:44 2018 -kevin@freedom.press,Freedom of the Press Foundation,US,United States of America,NorthAmerica,True,False,No,http://tor.freedom.press,https://tor.freedom.press,,,http://tor.freedom.press/dist/,https://tor.freedom.press/dist/,,,Sat Jan 16 12:17:09 2016 -hsu AT peterdavehellor DOT org,Department of CSE. Yuan Ze University,TW,Taiwan,Asia,TRUE,FALSE,No,http://ftp.yzu.edu.tw/torproject.org/,https://ftp.yzu.edu.tw/torproject.org/,rsync://ftp.yzu.edu.tw/pub/torproject.org/,ftp://ftp.yzu.edu.tw/torproject.org/,http://ftp.yzu.edu.tw/torproject.org/dist/,https://ftp.yzu.edu.tw/torproject.org/dist/,rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/,,Wed Sep 5 16:53:44 2018 -tor at tvdw dot eu,TvdW,,,,TRUE,TRUE,Yes,http://tor-exit.network,,,,http://tor-exit.network/dist,,,,Wed Sep 5 16:53:44 2018 -tormaster AT urown DOT net,urown.net,CH,Switzerland,Europe,TRUE,TRUE,No,http://torproject.urown.net/,https://torproject.urown.net/,,,http://torproject.urown.net/dist/,https://torproject.urown.net/dist/,,http://torprowdd64ytmyk.onion,Wed Sep 5 14:06:00 2018 -Stefan,sela Internet,DE,Germany,Europe,TRUE,TRUE,No,http://sela.io/mirrors/torproject.org/,https://sela.io/mirrors/torproject.org/,,,http://sela.io/mirrors/torproject.org/dist/,https://sela.io/mirrors/torproject.org/dist/,,,Wed Sep 5 14:06:00 2018 -thomaswhite AT riseup DOT net,TheCthulhu,NL,The Netherlands,Europe,True,False,No,http://tor.thecthulhu.com/,https://tor.thecthulhu.com/,,,http://tor.thecthulhu.com/dist/,https://tor.thecthulhu.com/dist/,,,Fri Sep 9 22:46:02 2016 -webmaster AT ccc DOT de,Chaos Computer Club,DE,Germany,Europe,TRUE,FALSE,No,http://tor.ccc.de/,https://tor.ccc.de,,,http://tor.ccc.de/dist/,https://tor.ccc.de/dist/,,,Wed Sep 5 16:53:44 2018 -Tor AT goodeid DOT com,Tor Supporter,CA,Canada,NorthAmerica,TRUE,FALSE,No,http://goodeid.com/mirrors/tor-project.org/,,,,http://goodeid.com/mirrors/tor-project.org/dist/,,,,Fri Sep 9 22:46:02 2016 -tor@datensicherhe.it,datensicherhe.it,AT,Austria,Europe,TRUE,FALSE,No,http://datensicherhe.it/torproject,https://datensicherhe.it/torproject,,,http://datensicherhe.it/torproject/dist/,https://datensicherhe.it/torproject/dist/,,,Fri Sep 9 22:46:02 2016 -NocturnalFilth,Disciples of Disorder,NL,Netherlands,Europe,TRUE,FALSE,NO,http://torproject.mirror.disciplesofdisorder.com,https://torproject.mirror.disciplesofdisorder.com,,,http://torproject.mirror.disciplesofdisorder.com/dist/,https://torproject.mirror.disciplesofdisorder.com/dist/,,,Wed May 17 11:00:42 2017 -tormirror0121.10.swsnyder@spamgourmet.com,tormirror,DE,Germany,Europe,FALSE,NO,http://tormirror.snydernet.net/,https://tormirror.snydernet.net/,,,http://tormirror.snydernet.net/dist/,https://tormirror.snydernet.net/dist/,,,Mon Dec 28 17:11:31 2015,Wed Sep 5 16:16:16 2018 -justaguy@riseup.net,Justaguy,FR,France,Europe,TRUE,FALSE,No,http://tormirror.justaguy.pw/,https://tormirror.justaguy.pw,,,http://tormirror.justaguy.pw/dist/,https://tormirror.justaguy.pw/dist/,,,Sat Jan 16 12:17:09 2016 -Disciples of Disorder,Vargr,NL,Netherlands,Europe,TRUE,FALSE,NO,http://tor.mirror.disciplesofdisorder.eu,https://tor.mirror.disciplesofdisorder.eu,,,http://tor.mirror.disciplesofdisorder.eu/dist/,https://tor.mirror.disciplesofdisorder.eu/dist/,,http://vargrevir52vkbte.onion,Thu Dec 24 08:50:00 2015 -nick at calyx dot com,The Calyx Institute,US,United States of America,NorthAmerica,TRUE,FALSE,No,http://tor.calyxinstitute.org,https://tor.calyxinstitute.org,,,http://tor.calyxinstitute.org/dist/,https://tor.calyxinstitute.org/dist/,,http://tmdrhl4e4anhsjc5.onion,Wed Sep 5 16:53:44 2018 -tor@armbrust.me,Michael Armbruster,FR,France,Europe,TRUE,TRUE,No,http://tor.armbrust.me/,https://tor.armbrust.me/,rsync://tor.armbrust.me/tor,,http://tor.armbrust.me/dist/,https://tor.armbrust.me/dist,rsync://tor.armbrust.me/tor-dist,,Wed Sep 5 16:53:44 2018 -HdO Tor,HdO Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://tor.hdoev.de/,,,,http://tor.hdoev.de/dist/,,,,Fri Sep 9 22:46:02 2016 -Tor Fan,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://torproject.mirror.metalgamer.eu/,https://torproject.mirror.metalgamer.eu/,,,http://torproject.mirror.metalgamer.eu/dist/,https://torproject.mirror.metalgamer.eu/dist/,,,Wed Sep 5 16:53:44 2018 -john AT quintex.com,Quintex Alliance Consulting,US,United States of America,NorthAmerica,TRUE,FALSE,No,http://torproject.quintex.com/,https://torproject.quintex.com,rsync://mirror.quintex.com/torprojectwebsite,ftp://mirror.quintex.com/torproject.org,http://torproject.quintex.com/dist,https://torproject.quintex.com/dist,rsync://mirror.quintex.com/torprojectdist,,Fri Sep 9 22:46:02 2016 -noc AT babylon DOT network,Babylon Network,NL,The Netherlands,Europe,TRUE,TRUE,No,http://nl.mirror.babylon.network/torproject/,https://nl.mirror.babylon.network/torproject/,rsync://nl.mirror.babylon.network/torproject/,ftp://nl.mirror.babylon.network/torproject/,http://nl.mirror.babylon.network/torproject/dist/,https://nl.mirror.babylon.network/torproject/dist/,rsync://nl.mirror.babylon.network/torproject/dist/,,Sun Jan 7 20:12:24 2018 -noc AT babylon DOT network,Babylon Network,FR,France,Europe,TRUE,TRUE,No,http://fr.mirror.babylon.network/torproject/,https://fr.mirror.babylon.network/torproject/,rsync://fr.mirror.babylon.network/torproject/,ftp://fr.mirror.babylon.network/torproject/,http://fr.mirror.babylon.network/torproject/dist/,https://fr.mirror.babylon.network/torproject/dist/,rsync://fr.mirror.babylon.network/torproject/dist/,,Sun Jan 7 20:12:24 2018 -Pool Toys,Pool Toys,SGP,Singapore,Asia,TRUE,TRUE,No,http://mirrors-sg.pooltoys.com/tor/,,rsync://mirrors-sg.pooltoys.com/tor/,ftp://mirrors-sg.pooltoys.com/tor/,http://mirrors-sg.pooltoys.com/tor/,,,, -cyberrax at yahoo.com,CyberSiDE,EE,Estonia,Europe,TRUE,FALSE,No,http://cyberside.net.ee/sibul/,https://cyberside.net.ee/sibul/,,,http://cyberside.net.ee/sibul/dist/,https://cyberside.net.ee/sibul/dist/,,,Wed Sep 5 00:49:40 2018 -torsupport AT tb-itf DOT de,TB-ITF,DE,Germany,Europe,TRUE,TRUE,No,http://tormirror.tb-itf-tor.de,https://tormirror.tb-itf-tor.de,,ftp://tormirror.tb-itf-tor.de/,http://tormirror.tb-itf-tor.de/dist/,https://tormirror.tb-itf-tor.de/dist/,,,Wed Sep 5 16:53:44 2018 -Disciples of Disorder,Vargr,NL,Netherlands,Europe,TRUE,FALSE,NO,http://tor.mirror.disciplesofdisorder.eu,https://tor.mirror.disciplesofdisorder.eu,,,http://tor.mirror.disciplesofdisorder.eu/dist/,https://tor.mirror.disciplesofdisorder.eu/dist/,,http://vargrevir52vkbte.onion, -admin @T standaloneinstaler.com,Standalone Installer Software,FR,France,Europe,TRUE,TRUE,No,http://mirrors.standaloneinstaller.com/torproject/,,rsync://mirrors.standaloneinstaller.com/torproject/,,http://mirrors.standaloneinstaller.com/torproject/dist,,rsync://mirrors.standaloneinstaller.com/torproject/dist,,Wed Sep 5 16:16:16 2018 -lutz.horn@posteo.de,,DE,Germany,Europe,TRUE,FALSE,No,,https://tor.lhorn.de/,,,,https://tor.lhorn.de/dist/,,,Wed Feb 8 12:00:00 2017 -karibu@freedif.org,Freedif,VN,Vietnam,Asia,TRUE,FALSE,No,http://mirror.freedif.org/TorProject/,https://mirror.freedif.org/TorProject/,,,http://mirror.freedif.org/TorProject/dist,https://mirror.freedif.org/TorProject/dist,,,Wed Sep 5 00:49:40 2018 -Tor Fan,Tor Supporter,FR,France,Europe,TRUE,FALSE,No,http://torproject.xj1.fr/,,,,http://torproject.xj1.fr/dist/,,,javkk6746z7wvigk.onion,Wed May 31 03:15:41 2017 -tienhn@vinahost.vn,VinaHost,VN,Viet Nam,Asia,TRUE,FALSE,No,,https://mirror.vinahost.vn/torproject.org,rsync://mirror.vinahost.vn/torproject.org,,,https://mirror.vinahost.vn/torproject.org/dist/,rsync://mirror.vinahost.vn/torproject.org/dist,,Wed Apr 19 18:52:55 2017 -mirror AT funkfreundelandshut DOT de,Funkfreunde Landshut e.V.,DE,Germany,Europe,TRUE,FALSE,No,http://mirror.funkfreundelandshut.de/torproject.org/,,,,http://mirror.funkfreundelandshut.de:81/torproject.org/dist/,,,http://44.225.40.254/torproject.org/dist,Wed Sep 5 00:49:40 2018 -email@heikorichter.name,Tor Supporter,DE,Germany,Europe,TRUE,TRUE,No,http://tor.heikorichter.name,https://tor.heikorichter.name,,,http://tor.heikorichter.name/dist,https://tor.heikorichter.name/dist,rsync://ftp.heikorichter.name/tor,,Sun Jan 7 20:12:24 2018 -tor secure voyage,secure.voyage,CA,Canada,NorthAmerica,TRUE,FALSE,No,http://tor.secure.voyage,https://tor.secure.voyage,,,http://tor.secure.voyage/dist,https://tor.secure.voyage/dist,,,Mon Jan 8 07:58:44 2018 -razx.cloud,razx,CA,Canada,NorthAmerica,TRUE,FALSE,No,http://tcejorprot.razx.cloud/,https://tcejorprot.razx.cloud/,,,http://tcejorprot.razx.cloud/dist/,https://tcejorprot.razx.cloud/dist,,http://rsqiscyvxt4qgaiw.onion/torproject.org/,Wed Sep 5 19:32:45 2018 -coby [at ]127001 [dot] ovh,Tor Supporter,DE,Germany,Europe,TRUE,FALSE,No,http://tor.127001.ovh/,https://tor.127001.ovh/,,,http://tor.127001.ovh/dist/,https://tor.127001.ovh/dist/,,,Mon Jan 8 07:58:44 2018 -Tor Fan,Tor Supporter,FR,France,Europe,TRUE,TRUE,No,http://mirror.oldsql.cc/tor/,https://mirror.oldsql.cc/tor/,,,http://mirror.oldsql.cc/tor/dist/,https://mirror.oldsql.cc/tor/dist/,,http://oldsqlcbr3aykyta.onion/tor,Wed Sep 5 19:32:45 2018 -Lunar,Tor World (torworld.org),DE,Germany,Europe,TRUE,FALSE,No,http://mirror.torworld.org/,https://mirror.torworld.org/,,,http://mirror.torworld.org/dist/,https://mirror.torworld.org/dist/,,,Wed Sep 5 14:06:00 2018 -Merlijn de Leeuw,Serverius Connectivity,NL,Netherlands,Europe,TRUE,TRUE,NO,http://mirror.serverius.net,https://mirror.serverius.net/torproject,rsync://mirror.serverius.net/torproject,,http://mirror.serverius.net/dist,https://mirror.serverius.net/dist,rsync://mirror.serverius.net/dist,, -iletisim at hackerspace.ist,Hackerspace Istanbul,NL,Netherlands,Europe,TRUE,FALSE,No,http://tor.hackerspace.ist/,https://tor.hackerspace.ist/,,,http://tor.hackerspace.ist/dist/,https://tor.hackerspace.ist/dist/,,, -iletisim at hackerspace.ist,Ozgurlesin.org (hs.ist),NL,Netherlands,Europe,TRUE,FALSE,No,http://tor.ozgurlesin.org/,https://tor.ozgurlesin.org/,,,http://tor.ozgurlesin.org/dist/,https://tor.ozgurlesin.org/dist/,,, -stian at nortor.no,nortor.no,NO,Norway,Europe,TRUE,TRUE,No,http://mirror.nortor.no,https://mirror.nortor.no,,,http://mirror.nortor.no/dist,https://mirror.nortor.no/dist,,http://t6phizbufdw7fqgy.onion, -ftp-adm at acc.umu.se,Academic Computer Club Umea University,SE,Sweden,Europe,TRUE,TRUE,TRUE,,,,,http://ftp.acc.umu.se/mirror/torproject.org/dist/,https://ftp.acc.umu.se/mirror/torproject.org/dist/,rsync://ftp.acc.umu.se/mirror/torproject.org/dist/,, +adminContact, orgName, isoCC, subRegion, region, ipv4, ipv6, loadBalanced, httpWebsiteMirror, httpsWebsiteMirror, rsyncWebsiteMirror, ftpWebsiteMirror, httpDistMirror, httpsDistMirror, rsyncDistMirror, hiddenServiceMirror, updateDate +mirror-service@netcologne.de, NetCologne GmbH, DE, NRW, Europe, TRUE, TRUE, FALSE, http://mirror.netcologne.de/torproject.org/, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, , , rsync://mirror.netcologne.de/torproject.org/dist, , Wed Oct 10 21:16:50 2018 +mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, Ukraine, , TRUE, TRUE, TRUE, http://torproject.ip-connect.vn.ua/, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist/, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Wed Oct 10 21:16:50 2018 +torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Wed Oct 10 21:16:50 2018 +info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, FALSE, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion/, Wed Oct 10 21:16:50 2018 +http://www.multinet.no, MultiNet AS, NO, Trondheim, Europe, TRUE, TRUE, FALSE, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Wed Oct 10 21:16:50 2018 +haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, FALSE, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Wed Oct 10 21:16:50 2018 +Tor Fan, spline, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor/, , , rsync://ftp.spline.de/tor/dist, , Wed Oct 10 21:16:50 2018 +hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, FALSE, http://torproject.ph3x.at/, https://torproject.ph3x.at/, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Wed Oct 10 21:16:50 2018 +webmaster AT askapache DOT com, AskApache, US, California, NorthAmerica, TRUE, FALSE, FALSE, http://tor.askapache.com/, , , , http://tor.askapache.com/dist/, , , , Wed Oct 10 21:16:50 2018 +paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, Australia, TRUE, FALSE, FALSE, http://torproject.coffswifi.net/, , , , http://torproject.coffswifi.net/dist/, , , , Wed Oct 10 21:16:50 2018 +hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Europe, TRUE, FALSE, FALSE, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Wed Oct 10 21:16:50 2018 +Tor Fan, torservers, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://www.torservers.net/mirrors/torproject.org/, , , , https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Wed Oct 10 18:30:47 2018 +tor@les.net, tor@les.net, CA, Canada, NorthAmerica, TRUE, FALSE, FALSE, http://tor.les.net/, , , , , , , , Wed Oct 10 18:30:47 2018 +tor@stalkr.net, stalkr.net, FR, France, Europe, TRUE, TRUE, FALSE, , https://tor.stalkr.net/, , , , https://tor.stalkr.net/dist/, , , Wed Oct 10 21:16:50 2018 +doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://tor-mirror.cyberguerrilla.org/, , , , https://tor-mirror.cyberguerrilla.org/dist/, , http://6dvj6v5imhny3anf.onion/, Wed Oct 10 15:39:32 2018 +Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://mirror.velcommuta.de/tor/, , , , https://mirror.velcommuta.de/tor/dist/, , , Wed Oct 10 21:16:50 2018 +EFF, EFF, US, United States of America, NorthAmerica, TRUE, FALSE, FALSE, , https://tor.eff.org/, , , , https://tor.eff.org/dist/, , , Wed Oct 10 21:16:50 2018 +admin AT nuclear DASH weapons DOT net, Setec Administrator, US, Texas, NorthAmerica, TRUE, FALSE, FALSE, http://tor.nuclear-weapons.net/, https://tor.nuclear-weapons.net/, , , http://tor.nuclear-weapons.net/dist/, https://tor.nuclear-weapons.net/dist/, , , Wed Oct 10 21:16:50 2018 +alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Wed Oct 10 21:16:50 2018 +tor@0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Wed Oct 10 21:16:50 2018 +James Murphy, intfxdx.com, US, United States of America, NorthAmerica, TRUE, TRUE, FALSE, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Wed Oct 10 21:16:50 2018 +tor AT eprci NET, EPRCI, US, NH, NorthAmerica, TRUE, FALSE, FALSE, http://tor.eprci.net/, , , , http://tor.eprci.net/dist/, , , , Wed Oct 10 21:16:50 2018 +tor-admin AT wardsback DOT org, wardsback.org, FR, France, Europe, TRUE, FALSE, FALSE, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Wed Oct 10 21:16:50 2018 +hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, FALSE, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Wed Oct 10 21:16:50 2018 +tor at tvdw dot eu, TvdW, , , , TRUE, TRUE, TRUE, http://tor-exit.network/, , , , http://tor-exit.network/dist/, , , , Wed Oct 10 21:16:50 2018 +tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, FALSE, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion/, Wed Oct 10 21:16:50 2018 +Stefan, sela Internet, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://sela.io/mirrors/torproject.org/, , , , https://sela.io/mirrors/torproject.org/dist/, , , Wed Oct 10 21:16:50 2018 +webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.ccc.de/, https://tor.ccc.de/, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Wed Oct 10 21:16:50 2018 +tormirror0121.10.swsnyder@spamgourmet.com, tormirror, DE, Germany, Europe, FALSE, FALSE, FALSE, https://tormirror.snydernet.net/, , , http://tormirror.snydernet.net/dist/, https://tormirror.snydernet.net/dist/, , ,, Wed Oct 10 21:16:50 2018 +nick at calyx dot com, The Calyx Institute, US, United States of America, NorthAmerica, TRUE, FALSE, FALSE, http://tor.calyxinstitute.org/, https://tor.calyxinstitute.org/, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion/, Wed Oct 10 21:16:50 2018 +tor@armbrust.me, Michael Armbruster, FR, France, Europe, TRUE, TRUE, FALSE, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist/, rsync://tor.armbrust.me/tor-dist, , Wed Oct 10 21:16:50 2018 +Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Wed Oct 10 21:16:50 2018 +torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Wed Oct 10 21:16:50 2018 +admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, Europe, TRUE, TRUE, FALSE, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist/, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Wed Oct 10 21:16:50 2018 +karibu@freedif.org, Freedif, VN, Vietnam, Asia, TRUE, FALSE, FALSE, , https://mirror.freedif.org/TorProject/, , , , https://mirror.freedif.org/TorProject/dist/, , , Wed Oct 10 21:16:50 2018 +mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.funkfreundelandshut.de/torproject.org/, , , , , , , http://44.225.40.254/torproject.org/dist/, Wed Oct 10 21:16:50 2018 +razx.cloud, razx, CA, Canada, NorthAmerica, TRUE, FALSE, FALSE, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist/, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Wed Oct 10 21:16:50 2018 +Tor Fan, Tor Supporter, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.oldsql.cc/tor/, https://mirror.oldsql.cc/tor/, , , http://mirror.oldsql.cc/tor/dist/, https://mirror.oldsql.cc/tor/dist/, , http://oldsqlcbr3aykyta.onion/tor/, Wed Oct 10 21:16:50 2018 +Lunar, Tor World (torworld.org), DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.torworld.org/, https://mirror.torworld.org/, , , http://mirror.torworld.org/dist/, https://mirror.torworld.org/dist/, , , Wed Oct 10 21:16:50 2018 +Merlijn de Leeuw, Serverius Connectivity, NL, Netherlands, Europe, TRUE, TRUE, FALSE, http://mirror.serverius.net/, https://mirror.serverius.net/torproject/, rsync://mirror.serverius.net/torproject, , , , rsync://mirror.serverius.net/dist, , Wed Oct 10 21:16:50 2018 +iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.hackerspace.ist/, https://tor.hackerspace.ist/, , , http://tor.hackerspace.ist/dist/, https://tor.hackerspace.ist/dist/, , , Wed Oct 10 18:30:47 2018 +iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Wed Oct 10 18:30:47 2018 +stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Wed Oct 10 21:16:50 2018 From 23e4c183d2bacf91d5a9623e5ffb569a5b59484a Mon Sep 17 00:00:00 2001 From: traumschule Date: Fri, 12 Oct 2018 04:37:34 +0200 Subject: [PATCH 04/10] update-mirrors.pl: improve error handling (#27997) --- update-mirrors.pl | 171 ++++++++++++++++++++++++---------------------- 1 file changed, 88 insertions(+), 83 deletions(-) diff --git a/update-mirrors.pl b/update-mirrors.pl index e70d151c..01eb2296 100755 --- a/update-mirrors.pl +++ b/update-mirrors.pl @@ -54,6 +54,8 @@ sub print_help { "help" => sub { &print_help } ) or die "Error parsing arguments. Please try again.\n"; +my (@columns, @torfiles, %randomtorfiles, %failures); + # Functions sub DateString { @@ -114,7 +116,7 @@ sub ExtractDate { }; if ($date && $date->epoch > 0) { - print "\tExtractDate: ". DateString($date) ."\n"; + print "\tExtractDate:\t". DateString($date) ."\n"; return $date; } else { warn "\tExtractDate: strptime returned empty date for: $string\n"; @@ -133,7 +135,7 @@ sub FindVersion { my ($content, $url) = @_; # TODO Parsing the webpage is an unstable solution (#21222). foreach (split "\n", $content) { - if (/Version (.+) -/) { return $1; } + if (/Version ([\d\.]+) /) { return $1; } } return undef; } @@ -147,30 +149,16 @@ sub Fetch { my $result = $ua->request($request); my $code = $result->code(); print "$code\n"; + my $last_modified; + if ($result->header('Last-Modified')) { + $last_modified = $result->header('Last-Modified'); + print "\tLast-Modified:\t$last_modified\n"; + } if ($result->is_success && $code eq "200") { my $content = $result->content; if ($content) { - if ($content =~ /301 Moved Permanently/) { - print "\tFetch: Received '301 Moved Permanently'\n"; - return -301; - } elsif ($content =~ /403 Forbidden/) { - print "\tFetch: Received '403 Forbidden'\n"; - return -403; - } elsif ($code eq "404") { - print "\tFetch: Received '404 Not Found'\n"; - return -404; - } elsif ($sub) { return $sub->($content, $url, $ua); - } else { - # We are probably asked to return a time object for a mirror without trace URL. - # Check header - https://metacpan.org/pod/HTTP::Headers - if ($result->header('Last-Modified')) { - return ExtractDate( $result->header('Last-Modified') ); - } else { - # In this case the mirror is probably up but doesn't tell when it was updated last. - warn "\tFetch: Found no Last-Modified header.\n"; - } - } + return $sub->($content, $url, $ua); } else { print "\tFetch: Empty content, no mirror here.\n"; return -1; @@ -184,6 +172,11 @@ sub Fetch { } elsif ($code eq "404") { #print "\tFetch: Received '404 Not Found'\n"; return -404; + } else { + my $error = $result->message; + $error =~ s/^.+\(([^)]+)\).*$/$1/; + print "\t$code $error\n"; + push (@{$failures{$error}}, $url); } return undef; } @@ -222,11 +215,10 @@ sub DumpMirrors { print $csvfh join(", ", @$columns) . "\n"; print "\nSaving mirrors that responded since ". DateString($time_barrier) ." (". $time_barrier->epoch .").\n"; foreach my $server(@m) { - # Drop mirrors that weren't reachable for some time - next if (! $server->{updateDate} || $server->{updateDate} < $time_barrier); next unless ($server->{httpWebsiteMirror} || $server->{httpsWebsiteMirror} || $server->{ftpWebsiteMirror} || $server->{httpDistMirror} || $server->{httpsDistMirror} || $server->{hiddenServiceMirror}); - - $server->{updateDate} = gmtime($server->{updateDate}) if ($server->{updateDate}); + if ($opts{'remove_missing'}) { + next if (! $server->{updateDate} || $server->{updateDate} < $time_barrier); + } print $csvfh join(", ", map($server->{$_}, @$columns)); print $csvfh "\n"; } @@ -266,7 +258,6 @@ sub PrintServer { my $secperday = 86400; my $trace_path = 'project/trace/www-master.torproject.org'; my $download_path = 'download/download.html.en'; -my (@columns, @torfiles, %randomtorfiles, %failures); my @m = LoadMirrors(\@columns); # Init LWP @@ -298,11 +289,16 @@ sub PrintServer { my $tb_version = (Fetch($lua, "http://expyuzz4wqqyqhjn.onion/$download_path", \&FindVersion) or Fetch($lua, "https://www.torproject.org/$download_path", \&FindVersion)) or die "Can't extract tb version from tpo. Are we or they offline?\n"; -if ($tb_version && $tb_version =~ /^\d+\.\d+/) { print "Tor Browser stable: $tb_version.\n"; } +if ($tb_version) { print "Tor Browser stable: $tb_version\n"; } else { die "Found no Tor Browser version on the download page, this script needs an update ($tb_version).\n"; } # nit: There's virtually no risk to receive a 403 above but it could cause a bug. +# Save hash of current checksum file to verify dist mirrors later +my $sumfile = "/torbrowser/$tb_version/sha256sums-signed-build.txt"; +$randomtorfiles{$sumfile} = Fetch($lua, CleanUrl("https://dist.torproject.org/$sumfile"), \&ExtractSig); +die "Couldn't extract signature of $sumfile." unless ($randomtorfiles{$sumfile} || $randomtorfiles{$sumfile} >0); + if ($opts{'verify_files'}) { # it is not optimal that we crawl dist, but it might be necessary if we # are asked to thoroughly verify files on the mirrors. @@ -325,83 +321,91 @@ sub PrintServer { } } - foreach my $serverType('httpWebsiteMirror', 'httpsWebsiteMirror', 'ftpWebsiteMirror', 'httpDistMirror', 'httpsDistMirror', 'hiddenServiceMirror') { - if ($server->{$serverType}) { + foreach my $serverType ('httpWebsiteMirror', 'httpsWebsiteMirror', 'ftpWebsiteMirror', 'httpDistMirror', 'httpsDistMirror', 'hiddenServiceMirror') { + next unless ($server->{$serverType}); - my $url = CleanUrl("$server->{$serverType}/"); - if ($url ne "$server->{$serverType}") { # silently correct URL - $server->{$serverType} = $url; - } + my $url = CleanUrl("$server->{$serverType}/"); + if ($url ne "$server->{$serverType}") { # silently correct URL + $server->{$serverType} = $url; + } - # Retrieve trace URL as most reliable source for the mirror age + # There are several mirror types and we want to find out if each is up to date + if ($serverType =~ /httpWebsiteMirror|httpsWebsiteMirror|ftpWebsiteMirror|hiddenServiceMirror/) { my $updateDate = Fetch($lua, CleanUrl("$url$trace_path"), \&ExtractDate); - if (! $updateDate || defined $updateDate && $updateDate == -404) { # unreachable or date in bad shape - # We keep a list of mirrors without trace URL and try to use - # the Last-Modified header of the base URL instead. - $updateDate = Fetch($lua, CleanUrl($url)); - push (@{$failures{'No trace URL'}}, "$url ($server->{'adminContact'})"); - } - - if (not defined $updateDate) { # two attempts to extract the date failed - push (@{$failures{'No Last-Modified header'}}, "$url ($server->{'adminContact'})"); - warn "\t$url ($server->{'adminContact'}) has issues but without --remove-failing we keep it.\n"; + if (not defined $updateDate) { + if ($opts{'remove_failing'}) { + print "\tRemoving $url\n"; + $server->{$serverType} = ''; + next; + } + #push (@{$failures{'No trace URL'}}, "$url ($server->{'adminContact'})"); + #print "\t$url ($server->{'adminContact'}) has issues but without --remove-failing we keep it.\n"; } elsif ($updateDate < 0) { # We received a clear error. - print "\tRemoving server $url.\n"; + print "\tRemoving $url\n"; $server->{$serverType} = ''; - # Check offered TB version and (optionally) verify files } elsif ($updateDate) { $server->{updateDate} = $updateDate; - # Compare tor browser version - if ($serverType =~ /httpWebsiteMirror|httpsWebsiteMirror|hiddenServiceMirror/) { - my $version = Fetch($lua, CleanUrl("$url$download_path"), \&FindVersion); - unless ($version) { - print "\tFound no Tor Browser version.\n"; - push (@{$failures{'No download version.'}}, "$url ($server->{'adminContact'})"); - } elsif ($tb_version ne $version) { - print "\tMirror offers an old Tor Browser version: $version\n"; - push (@{$failures{'Wrong download version.'}}, "$url ($server->{'adminContact'})"); - } + # Check offered TB version + my $version = Fetch($lua, CleanUrl("$url$download_path"), \&FindVersion); + my $errors; + unless ($version) { + print "\tFound no Tor Browser version.\n"; + push (@{$failures{'No download version'}}, "$url ($server->{'adminContact'})"); + $errors++; + } elsif ($tb_version ne $version) { + print "\tMirror offers an old Tor Browser version: $version\n"; + push (@{$failures{'Wrong download version'}}, "$url ($server->{'adminContact'})"); + $errors++; + } else { print "\tTor Browser stable: $version\n"; } + if ($errors && $opts{'remove_failing'}) { + print "\tRemoving $url\n"; + $server->{$serverType} = ''; + next; } + } - # #22182: "The current way how the script is checking - # the mirror sites, isn't the best (it is looking for - # existing .xpi, .dmg, .exe, .tar.gz files)" - # Skipping if not requested with --verify-files - next unless ($opts{'verify_files'}); - $server->{sigMatched} = 1; - foreach my $randomtorfile(keys %randomtorfiles) { - my $sig = Fetch($lua, CleanUrl("$url$randomtorfile"), \&ExtractSig); - if (!$sig) { - push (@{$failures{'No signature.'}}, "$url ($server->{'adminContact'})"); - $server->{sigMatched} = 0; - last; - } elsif ($sig ne $randomtorfiles{$randomtorfile}) { - push (@{$failures{'Signature mismatch.'}}, "$url ($server->{'adminContact'})"); - $server->{sigMatched} = 0; - last; - } - } + } elsif ($serverType =~ /httpDistMirror|httpsDistMirror/) { + + $server->{sigMatched} = 1; + foreach my $randomtorfile(keys %randomtorfiles) { + my $sig = Fetch($lua, CleanUrl("$url$randomtorfile"), \&ExtractSig); + if (!$sig) { + $server->{sigMatched} = 0; + last; + } elsif ($sig ne $randomtorfiles{$randomtorfile}) { + push (@{$failures{'Signature mismatch'}}, "$url ($server->{'adminContact'})"); + $server->{sigMatched} = 0; + last; + } else { + # TODO how do we find out the update time without another request + # If we do not update the time only-dist mirrors are discriminated. + # Alternatively setting the current time may be misleading. + # Using $tortime assuming everything is fine passing the checksum test. + $server->{updateDate} = DateString($tortime); + } } - } + } else { die "Unrecognized server type: $serverType\n"; } } } # TODO we could also check rsync # show f of mirrors without trace URL -my $errors; -foreach my $error (keys %failures) { - if (@{$failures{$error}} > 0) { $errors++; - print "\n$error:\n"; - map { print "\t$_\n" } @{$failures{$error}}; - # TODO we could tweak this to show a sample mail to the mirror admin +if (!$opts{'remove_failing'}) { + my $errors; + foreach my $error (keys %failures) { + if (@{$failures{$error}} > 0) { $errors++; + print "\n$error:\n"; + map { print "\t$_\n" } @{$failures{$error}}; + # TODO we could tweak this to show a sample mail to the mirror admin + } } + print "Use --remove-failing to remove them from the list.\n" if ($errors); } -print "Use --remove-failing to remove them from the list.\n" if ($errors); # open wmi for writing open (my $wmifh, '>', $opts{'wmifile'}) or die "Can't write $opts{'wmifile'}: $!"; @@ -418,6 +422,7 @@ sub PrintServer { Possible improvements: - above code has several TODOs +- code is repeated in the server test loop - the various server types are repeated at a few places and should be centralized in a hash - be less verbose per default - use consistent variable/function names From 4e6cc72aef1feb0a5d38de4d4b68bda4321bc528 Mon Sep 17 00:00:00 2001 From: traumschule Date: Fri, 12 Oct 2018 08:33:04 +0200 Subject: [PATCH 05/10] update mirrors table and csv (#27941) --- include/mirrors-table.wmi | 34 ++++++++++++++++ include/tor-mirrors.csv | 86 +++++++++++++++++++-------------------- 2 files changed, 77 insertions(+), 43 deletions(-) diff --git a/include/mirrors-table.wmi b/include/mirrors-table.wmi index e69de29b..b0d2a053 100644 --- a/include/mirrors-table.wmi +++ b/include/mirrors-table.wmi @@ -0,0 +1,34 @@ + + + + CA + + razx + + Up to date + - + onion + http + http + https + https + - + - + + + + + NO + + nortor.no + + Up to date + - + onion + http + http + https + https + - + - + diff --git a/include/tor-mirrors.csv b/include/tor-mirrors.csv index 84b3e027..e013efda 100644 --- a/include/tor-mirrors.csv +++ b/include/tor-mirrors.csv @@ -1,44 +1,44 @@ adminContact, orgName, isoCC, subRegion, region, ipv4, ipv6, loadBalanced, httpWebsiteMirror, httpsWebsiteMirror, rsyncWebsiteMirror, ftpWebsiteMirror, httpDistMirror, httpsDistMirror, rsyncDistMirror, hiddenServiceMirror, updateDate -mirror-service@netcologne.de, NetCologne GmbH, DE, NRW, Europe, TRUE, TRUE, FALSE, http://mirror.netcologne.de/torproject.org/, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, , , rsync://mirror.netcologne.de/torproject.org/dist, , Wed Oct 10 21:16:50 2018 -mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, Ukraine, , TRUE, TRUE, TRUE, http://torproject.ip-connect.vn.ua/, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist/, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Wed Oct 10 21:16:50 2018 -torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Wed Oct 10 21:16:50 2018 -info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, FALSE, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion/, Wed Oct 10 21:16:50 2018 -http://www.multinet.no, MultiNet AS, NO, Trondheim, Europe, TRUE, TRUE, FALSE, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Wed Oct 10 21:16:50 2018 -haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, FALSE, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Wed Oct 10 21:16:50 2018 -Tor Fan, spline, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor/, , , rsync://ftp.spline.de/tor/dist, , Wed Oct 10 21:16:50 2018 -hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, FALSE, http://torproject.ph3x.at/, https://torproject.ph3x.at/, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Wed Oct 10 21:16:50 2018 -webmaster AT askapache DOT com, AskApache, US, California, NorthAmerica, TRUE, FALSE, FALSE, http://tor.askapache.com/, , , , http://tor.askapache.com/dist/, , , , Wed Oct 10 21:16:50 2018 -paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, Australia, TRUE, FALSE, FALSE, http://torproject.coffswifi.net/, , , , http://torproject.coffswifi.net/dist/, , , , Wed Oct 10 21:16:50 2018 -hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Europe, TRUE, FALSE, FALSE, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Wed Oct 10 21:16:50 2018 -Tor Fan, torservers, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://www.torservers.net/mirrors/torproject.org/, , , , https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Wed Oct 10 18:30:47 2018 -tor@les.net, tor@les.net, CA, Canada, NorthAmerica, TRUE, FALSE, FALSE, http://tor.les.net/, , , , , , , , Wed Oct 10 18:30:47 2018 -tor@stalkr.net, stalkr.net, FR, France, Europe, TRUE, TRUE, FALSE, , https://tor.stalkr.net/, , , , https://tor.stalkr.net/dist/, , , Wed Oct 10 21:16:50 2018 -doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://tor-mirror.cyberguerrilla.org/, , , , https://tor-mirror.cyberguerrilla.org/dist/, , http://6dvj6v5imhny3anf.onion/, Wed Oct 10 15:39:32 2018 -Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://mirror.velcommuta.de/tor/, , , , https://mirror.velcommuta.de/tor/dist/, , , Wed Oct 10 21:16:50 2018 -EFF, EFF, US, United States of America, NorthAmerica, TRUE, FALSE, FALSE, , https://tor.eff.org/, , , , https://tor.eff.org/dist/, , , Wed Oct 10 21:16:50 2018 -admin AT nuclear DASH weapons DOT net, Setec Administrator, US, Texas, NorthAmerica, TRUE, FALSE, FALSE, http://tor.nuclear-weapons.net/, https://tor.nuclear-weapons.net/, , , http://tor.nuclear-weapons.net/dist/, https://tor.nuclear-weapons.net/dist/, , , Wed Oct 10 21:16:50 2018 -alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Wed Oct 10 21:16:50 2018 -tor@0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Wed Oct 10 21:16:50 2018 -James Murphy, intfxdx.com, US, United States of America, NorthAmerica, TRUE, TRUE, FALSE, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Wed Oct 10 21:16:50 2018 -tor AT eprci NET, EPRCI, US, NH, NorthAmerica, TRUE, FALSE, FALSE, http://tor.eprci.net/, , , , http://tor.eprci.net/dist/, , , , Wed Oct 10 21:16:50 2018 -tor-admin AT wardsback DOT org, wardsback.org, FR, France, Europe, TRUE, FALSE, FALSE, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Wed Oct 10 21:16:50 2018 -hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, FALSE, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Wed Oct 10 21:16:50 2018 -tor at tvdw dot eu, TvdW, , , , TRUE, TRUE, TRUE, http://tor-exit.network/, , , , http://tor-exit.network/dist/, , , , Wed Oct 10 21:16:50 2018 -tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, FALSE, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion/, Wed Oct 10 21:16:50 2018 -Stefan, sela Internet, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://sela.io/mirrors/torproject.org/, , , , https://sela.io/mirrors/torproject.org/dist/, , , Wed Oct 10 21:16:50 2018 -webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.ccc.de/, https://tor.ccc.de/, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Wed Oct 10 21:16:50 2018 -tormirror0121.10.swsnyder@spamgourmet.com, tormirror, DE, Germany, Europe, FALSE, FALSE, FALSE, https://tormirror.snydernet.net/, , , http://tormirror.snydernet.net/dist/, https://tormirror.snydernet.net/dist/, , ,, Wed Oct 10 21:16:50 2018 -nick at calyx dot com, The Calyx Institute, US, United States of America, NorthAmerica, TRUE, FALSE, FALSE, http://tor.calyxinstitute.org/, https://tor.calyxinstitute.org/, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion/, Wed Oct 10 21:16:50 2018 -tor@armbrust.me, Michael Armbruster, FR, France, Europe, TRUE, TRUE, FALSE, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist/, rsync://tor.armbrust.me/tor-dist, , Wed Oct 10 21:16:50 2018 -Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Wed Oct 10 21:16:50 2018 -torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Wed Oct 10 21:16:50 2018 -admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, Europe, TRUE, TRUE, FALSE, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist/, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Wed Oct 10 21:16:50 2018 -karibu@freedif.org, Freedif, VN, Vietnam, Asia, TRUE, FALSE, FALSE, , https://mirror.freedif.org/TorProject/, , , , https://mirror.freedif.org/TorProject/dist/, , , Wed Oct 10 21:16:50 2018 -mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.funkfreundelandshut.de/torproject.org/, , , , , , , http://44.225.40.254/torproject.org/dist/, Wed Oct 10 21:16:50 2018 -razx.cloud, razx, CA, Canada, NorthAmerica, TRUE, FALSE, FALSE, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist/, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Wed Oct 10 21:16:50 2018 -Tor Fan, Tor Supporter, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.oldsql.cc/tor/, https://mirror.oldsql.cc/tor/, , , http://mirror.oldsql.cc/tor/dist/, https://mirror.oldsql.cc/tor/dist/, , http://oldsqlcbr3aykyta.onion/tor/, Wed Oct 10 21:16:50 2018 -Lunar, Tor World (torworld.org), DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.torworld.org/, https://mirror.torworld.org/, , , http://mirror.torworld.org/dist/, https://mirror.torworld.org/dist/, , , Wed Oct 10 21:16:50 2018 -Merlijn de Leeuw, Serverius Connectivity, NL, Netherlands, Europe, TRUE, TRUE, FALSE, http://mirror.serverius.net/, https://mirror.serverius.net/torproject/, rsync://mirror.serverius.net/torproject, , , , rsync://mirror.serverius.net/dist, , Wed Oct 10 21:16:50 2018 -iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.hackerspace.ist/, https://tor.hackerspace.ist/, , , http://tor.hackerspace.ist/dist/, https://tor.hackerspace.ist/dist/, , , Wed Oct 10 18:30:47 2018 -iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Wed Oct 10 18:30:47 2018 -stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Wed Oct 10 21:16:50 2018 +mirror-service@netcologne.de, NetCologne GmbH, DE, NRW, Europe, TRUE, TRUE, FALSE, http://mirror.netcologne.de/torproject.org/, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, , , rsync://mirror.netcologne.de/torproject.org/dist, , Thu Oct 11 16:46:15 2018 +mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, Ukraine, , TRUE, TRUE, TRUE, http://torproject.ip-connect.vn.ua/, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist/, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Tue Oct 9 16:46:15 2018 +torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Tue Oct 9 16:46:15 2018 +info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, FALSE, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion/, Tue Oct 9 16:46:15 2018 +http://www.multinet.no, MultiNet AS, NO, Trondheim, Europe, TRUE, TRUE, FALSE, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Tue Oct 9 16:46:15 2018 +haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, FALSE, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Tue Oct 9 16:46:15 2018 +Tor Fan, spline, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor/, , , rsync://ftp.spline.de/tor/dist, , Thu Oct 11 16:46:15 2018 +hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, FALSE, http://torproject.ph3x.at/, https://torproject.ph3x.at/, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Tue Oct 9 16:46:15 2018 +webmaster AT askapache DOT com, AskApache, US, California, NorthAmerica, TRUE, FALSE, FALSE, http://tor.askapache.com/, , , , http://tor.askapache.com/dist/, , , , Tue Oct 9 16:46:15 2018 +paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, Australia, TRUE, FALSE, FALSE, http://torproject.coffswifi.net/, , , , http://torproject.coffswifi.net/dist/, , , , Tue Oct 9 16:46:15 2018 +hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Europe, TRUE, FALSE, FALSE, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Tue Oct 9 16:46:15 2018 +Tor Fan, torservers, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://www.torservers.net/mirrors/torproject.org/, , , , https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Tue Oct 9 16:46:15 2018 +tor@les.net, tor@les.net, CA, Canada, NorthAmerica, TRUE, FALSE, FALSE, http://tor.les.net/, , , , , , , , Thu Oct 11 16:46:15 2018 +tor@stalkr.net, stalkr.net, FR, France, Europe, TRUE, TRUE, FALSE, , https://tor.stalkr.net/, , , , https://tor.stalkr.net/dist/, , , Tue Oct 9 16:46:15 2018 +doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://tor-mirror.cyberguerrilla.org/, , , , https://tor-mirror.cyberguerrilla.org/dist/, , , Tue Oct 9 16:46:15 2018 +Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://mirror.velcommuta.de/tor/, , , , https://mirror.velcommuta.de/tor/dist/, , , Tue Oct 9 16:46:15 2018 +EFF, EFF, US, United States of America, NorthAmerica, TRUE, FALSE, FALSE, , https://tor.eff.org/, , , , https://tor.eff.org/dist/, , , Tue Oct 9 16:46:15 2018 +admin AT nuclear DASH weapons DOT net, Setec Administrator, US, Texas, NorthAmerica, TRUE, FALSE, FALSE, http://tor.nuclear-weapons.net/, https://tor.nuclear-weapons.net/, , , http://tor.nuclear-weapons.net/dist/, https://tor.nuclear-weapons.net/dist/, , , Tue Oct 9 16:46:15 2018 +alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Tue Oct 9 16:46:15 2018 +tor@0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Tue Oct 9 16:46:15 2018 +James Murphy, intfxdx.com, US, United States of America, NorthAmerica, TRUE, TRUE, FALSE, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Tue Oct 9 16:46:15 2018 +tor AT eprci NET, EPRCI, US, NH, NorthAmerica, TRUE, FALSE, FALSE, http://tor.eprci.net/, , , , http://tor.eprci.net/dist/, , , , Tue Oct 9 16:46:15 2018 +tor-admin AT wardsback DOT org, wardsback.org, FR, France, Europe, TRUE, FALSE, FALSE, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Tue Oct 9 16:46:15 2018 +hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, FALSE, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Tue Oct 9 16:46:15 2018 +tor at tvdw dot eu, TvdW, , , , TRUE, TRUE, TRUE, http://tor-exit.network/, , , , http://tor-exit.network/dist/, , , , Tue Oct 9 16:46:15 2018 +tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, FALSE, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion/, Tue Oct 9 16:46:15 2018 +Stefan, sela Internet, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://sela.io/mirrors/torproject.org/, , , , https://sela.io/mirrors/torproject.org/dist/, , , Tue Oct 9 16:46:15 2018 +webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.ccc.de/, https://tor.ccc.de/, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Tue Oct 9 16:46:15 2018 +tormirror0121.10.swsnyder@spamgourmet.com, tormirror, DE, Germany, Europe, FALSE, FALSE, FALSE, https://tormirror.snydernet.net/, , , , https://tormirror.snydernet.net/dist/, , , , Tue Oct 9 16:46:15 2018 +nick at calyx dot com, The Calyx Institute, US, United States of America, NorthAmerica, TRUE, FALSE, FALSE, http://tor.calyxinstitute.org/, https://tor.calyxinstitute.org/, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion/, Tue Oct 9 16:46:15 2018 +tor@armbrust.me, Michael Armbruster, FR, France, Europe, TRUE, TRUE, FALSE, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist/, rsync://tor.armbrust.me/tor-dist, , Tue Oct 9 16:46:15 2018 +Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Tue Oct 9 16:46:15 2018 +torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Tue Oct 9 16:46:15 2018 +admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, Europe, TRUE, TRUE, FALSE, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist/, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Tue Oct 9 16:46:15 2018 +karibu@freedif.org, Freedif, VN, Vietnam, Asia, TRUE, FALSE, FALSE, , https://mirror.freedif.org/TorProject/, , , , https://mirror.freedif.org/TorProject/dist/, , , Tue Oct 9 16:46:15 2018 +mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.funkfreundelandshut.de/torproject.org/, , , , , , , http://44.225.40.254/torproject.org/dist/, Thu Oct 11 16:46:15 2018 +razx.cloud, razx, CA, Canada, NorthAmerica, TRUE, FALSE, FALSE, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist/, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Thu Oct 11 16:46:15 2018 +Tor Fan, Tor Supporter, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.oldsql.cc/tor/, https://mirror.oldsql.cc/tor/, , , http://mirror.oldsql.cc/tor/dist/, https://mirror.oldsql.cc/tor/dist/, , http://oldsqlcbr3aykyta.onion/tor/, Tue Oct 9 16:46:15 2018 +Lunar, Tor World (torworld.org), DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.torworld.org/, https://mirror.torworld.org/, , , http://mirror.torworld.org/dist/, https://mirror.torworld.org/dist/, , , Tue Oct 9 16:46:15 2018 +Merlijn de Leeuw, Serverius Connectivity, NL, Netherlands, Europe, TRUE, TRUE, FALSE, , https://mirror.serverius.net/torproject/, rsync://mirror.serverius.net/torproject, , , , rsync://mirror.serverius.net/dist, , Thu Oct 11 16:46:15 2018 +iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.hackerspace.ist/, https://tor.hackerspace.ist/, , , http://tor.hackerspace.ist/dist/, https://tor.hackerspace.ist/dist/, , , Tue Oct 9 16:46:15 2018 +iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Tue Oct 9 16:46:15 2018 +stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Thu Oct 11 16:46:15 2018 From da5573009193e5140499dec34bc3315738c79ef3 Mon Sep 17 00:00:00 2001 From: traumschule Date: Mon, 15 Oct 2018 15:54:20 +0200 Subject: [PATCH 06/10] Add freemirror.org (#28047) --- include/tor-mirrors.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/include/tor-mirrors.csv b/include/tor-mirrors.csv index e013efda..72f836d1 100644 --- a/include/tor-mirrors.csv +++ b/include/tor-mirrors.csv @@ -42,3 +42,4 @@ Merlijn de Leeuw, Serverius Connectivity, NL, Netherlands, Europe, TRUE, TRUE, F iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.hackerspace.ist/, https://tor.hackerspace.ist/, , , http://tor.hackerspace.ist/dist/, https://tor.hackerspace.ist/dist/, , , Tue Oct 9 16:46:15 2018 iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Tue Oct 9 16:46:15 2018 stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Thu Oct 11 16:46:15 2018 +adam.quenneville AT freemirror.org,The Free Mirror Project,CA,Canada,NorthAmerica,TRUE,FALSE,FALSE,http://mirror1.freemirror.org/tor/torproject.org/,https://mirror1.freemirror.org/tor/torproject.org/,rsync://mirror1.freemirror.org/tor-www,,http://mirror1.freemirror.org/tor/dist/,https://mirror1.freemirror.org/tor/dist/,rsync://mirror1.freemirror.org/tor-dist,, From 5fa9b39540ada387c9adc17e7b96d07ca13a990b Mon Sep 17 00:00:00 2001 From: traumschule Date: Wed, 17 Oct 2018 10:06:40 +0200 Subject: [PATCH 07/10] sort mirrors by region (#28083) --- getinvolved/en/mirrors.wml | 16 +- include/mirrors-table.wmi | 587 +++++++++++++++++++++++++++++++++++-- include/tor-mirrors.csv | 86 +++--- update-mirrors.pl | 60 ++-- 4 files changed, 655 insertions(+), 94 deletions(-) diff --git a/getinvolved/en/mirrors.wml b/getinvolved/en/mirrors.wml index 198b54f4..5f77b586 100644 --- a/getinvolved/en/mirrors.wml +++ b/getinvolved/en/mirrors.wml @@ -22,19 +22,15 @@ If you would like to run a mirror, please read our instructions for running a mirror.

+ +

Note: The update time only reflects when the mirror has been checked last.

- - - - - - - - - - + + + + #include "mirrors-table.wmi"
CountryOrganisationStatusftphttp dist/http websitehttps dist/https websitersync dist/rsync website Updatedwebdist
diff --git a/include/mirrors-table.wmi b/include/mirrors-table.wmi index b0d2a053..a4210ad0 100644 --- a/include/mirrors-table.wmi +++ b/include/mirrors-table.wmi @@ -1,34 +1,577 @@ + +

.global

+

worldwide

+ TvdW + Sun Oct 14 23:14:59 2018 + + http + + + http + + +

Asia

+

Taiwan

+ + + Department of CSE. Yuan Ze University + Sun Oct 14 23:14:59 2018 + + ftp + http + https + rsync + + + http + https + rsync + + +

Vietnam

+ + + Freedif + Tue Oct 9 16:46:15 2018 + + https + + + https + + +

Europe

+

Austria

+ + + ph3x + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + +

France

+ + + stalkr.net + Sun Oct 14 23:14:59 2018 + + https + + + https + + + + + wardsback.org + Sun Oct 14 23:14:59 2018 + + http + + + http + + + + + Michael Armbruster + Sun Oct 14 23:14:59 2018 + + http + https + rsync + + + http + https + rsync + + + + + Standalone Installer Software + Sun Oct 14 23:14:59 2018 + + http + rsync + + + http + rsync + + + + + Tor Supporter + Sun Oct 14 23:14:59 2018 + + onion + http + https + + + http + https + + +

Germany

+ + + NetCologne GmbH + Tue Oct 16 23:14:59 2018 + + ftp + http + rsync + + + rsync + + + + + spline + Tue Oct 16 23:14:59 2018 + + ftp + http + https + rsync + + + rsync + + + + + Funkfreunde Landshut e.V. + Tue Oct 16 23:14:59 2018 + + onion + http + + + + + + + TB-ITF + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + + + + torservers + Sun Oct 14 23:14:59 2018 + + onion + https + + + https + + + + + cYbergueRrilLa AnonyMous NeXus + Sun Oct 14 23:14:59 2018 + + https + + + https + + + + + Tor Supporter + Sun Oct 14 23:14:59 2018 + + https + + + https + + + + + Tor Supporter + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + + + + 0x3d.lu + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + + + + sela Internet + Sun Oct 14 23:14:59 2018 + + https + + + https + + + + + Chaos Computer Club + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + + + + tormirror + Sun Oct 14 23:14:59 2018 + + http + + + http + + + + + Tor Supporter + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + + + + TB-ITF + Sun Oct 14 23:14:59 2018 + + ftp + http + https + + + http + https + + + + + Tor World (torworld.org) + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + +

Iceland

+ + + Frenn vun der Enn A.S.B.L. + Sun Oct 14 23:14:59 2018 + + onion + http + + + http + + + + + TheOnionRouter + Sun Oct 14 23:14:59 2018 + + http + + + http + + +

Netherlands

+ + + Serverius Connectivity + Tue Oct 16 23:14:59 2018 + + https + rsync + + + rsync + + + + + Hackerspace Istanbul + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + + + + Ozgurlesin.org (hs.ist) + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + +

Norway

+ + + nortor.no + Tue Oct 16 23:14:59 2018 + + onion + http + https + + + http + https + + + + + MultiNet AS + Sun Oct 14 23:14:59 2018 + + http + + + http + + +

Spain

+ + + Tor Supporter + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + +

Switzerland

+ + + urown.net + Sun Oct 14 23:14:59 2018 + + onion + http + https + + + http + https + + +

Ukraine

+ + + IP-Connect LLC + Sun Oct 14 23:14:59 2018 + + ftp + http + rsync + + + http + rsync + + +

North America

+

Canada

+ + + tor@les.net + Tue Oct 16 23:14:59 2018 + + http + + + + + + + razx + Tue Oct 16 23:14:59 2018 + + onion + http + https + + + http + https + + - CA + + The Free Mirror Project + Sun Oct 14 23:14:59 2018 + + http + https + rsync + + + http + https + rsync + + +

United States

- razx + + AskApache + Sun Oct 14 23:14:59 2018 + + + + http + + - Up to date - - - onion - http - http - https - https - - - - + + EFF + Sun Oct 14 23:14:59 2018 + + https + + + https + + Setec Administrator + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + - NO + + intfxdx.com + Sun Oct 14 23:14:59 2018 + + http + https + + + http + https + + - nortor.no + + EPRCI + Sun Oct 14 23:14:59 2018 + + http + + + http + + - Up to date - - - onion - http - http - https - https - - - - + + The Calyx Institute + Sun Oct 14 23:14:59 2018 + + onion + http + https + + + http + https + + +

Oceania

+

Australia and New Zealand

+ + + CoffsWiFi + Sun Oct 14 23:14:59 2018 + + http + + + http + diff --git a/include/tor-mirrors.csv b/include/tor-mirrors.csv index 72f836d1..014bbfd2 100644 --- a/include/tor-mirrors.csv +++ b/include/tor-mirrors.csv @@ -1,45 +1,45 @@ adminContact, orgName, isoCC, subRegion, region, ipv4, ipv6, loadBalanced, httpWebsiteMirror, httpsWebsiteMirror, rsyncWebsiteMirror, ftpWebsiteMirror, httpDistMirror, httpsDistMirror, rsyncDistMirror, hiddenServiceMirror, updateDate -mirror-service@netcologne.de, NetCologne GmbH, DE, NRW, Europe, TRUE, TRUE, FALSE, http://mirror.netcologne.de/torproject.org/, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, , , rsync://mirror.netcologne.de/torproject.org/dist, , Thu Oct 11 16:46:15 2018 -mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, Ukraine, , TRUE, TRUE, TRUE, http://torproject.ip-connect.vn.ua/, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist/, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Tue Oct 9 16:46:15 2018 -torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Tue Oct 9 16:46:15 2018 -info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, FALSE, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion/, Tue Oct 9 16:46:15 2018 -http://www.multinet.no, MultiNet AS, NO, Trondheim, Europe, TRUE, TRUE, FALSE, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Tue Oct 9 16:46:15 2018 -haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, FALSE, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Tue Oct 9 16:46:15 2018 -Tor Fan, spline, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor/, , , rsync://ftp.spline.de/tor/dist, , Thu Oct 11 16:46:15 2018 -hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, FALSE, http://torproject.ph3x.at/, https://torproject.ph3x.at/, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Tue Oct 9 16:46:15 2018 -webmaster AT askapache DOT com, AskApache, US, California, NorthAmerica, TRUE, FALSE, FALSE, http://tor.askapache.com/, , , , http://tor.askapache.com/dist/, , , , Tue Oct 9 16:46:15 2018 -paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, Australia, TRUE, FALSE, FALSE, http://torproject.coffswifi.net/, , , , http://torproject.coffswifi.net/dist/, , , , Tue Oct 9 16:46:15 2018 -hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Europe, TRUE, FALSE, FALSE, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Tue Oct 9 16:46:15 2018 -Tor Fan, torservers, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://www.torservers.net/mirrors/torproject.org/, , , , https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Tue Oct 9 16:46:15 2018 -tor@les.net, tor@les.net, CA, Canada, NorthAmerica, TRUE, FALSE, FALSE, http://tor.les.net/, , , , , , , , Thu Oct 11 16:46:15 2018 -tor@stalkr.net, stalkr.net, FR, France, Europe, TRUE, TRUE, FALSE, , https://tor.stalkr.net/, , , , https://tor.stalkr.net/dist/, , , Tue Oct 9 16:46:15 2018 -doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://tor-mirror.cyberguerrilla.org/, , , , https://tor-mirror.cyberguerrilla.org/dist/, , , Tue Oct 9 16:46:15 2018 -Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://mirror.velcommuta.de/tor/, , , , https://mirror.velcommuta.de/tor/dist/, , , Tue Oct 9 16:46:15 2018 -EFF, EFF, US, United States of America, NorthAmerica, TRUE, FALSE, FALSE, , https://tor.eff.org/, , , , https://tor.eff.org/dist/, , , Tue Oct 9 16:46:15 2018 -admin AT nuclear DASH weapons DOT net, Setec Administrator, US, Texas, NorthAmerica, TRUE, FALSE, FALSE, http://tor.nuclear-weapons.net/, https://tor.nuclear-weapons.net/, , , http://tor.nuclear-weapons.net/dist/, https://tor.nuclear-weapons.net/dist/, , , Tue Oct 9 16:46:15 2018 -alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Tue Oct 9 16:46:15 2018 -tor@0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Tue Oct 9 16:46:15 2018 -James Murphy, intfxdx.com, US, United States of America, NorthAmerica, TRUE, TRUE, FALSE, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Tue Oct 9 16:46:15 2018 -tor AT eprci NET, EPRCI, US, NH, NorthAmerica, TRUE, FALSE, FALSE, http://tor.eprci.net/, , , , http://tor.eprci.net/dist/, , , , Tue Oct 9 16:46:15 2018 -tor-admin AT wardsback DOT org, wardsback.org, FR, France, Europe, TRUE, FALSE, FALSE, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Tue Oct 9 16:46:15 2018 -hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, FALSE, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Tue Oct 9 16:46:15 2018 -tor at tvdw dot eu, TvdW, , , , TRUE, TRUE, TRUE, http://tor-exit.network/, , , , http://tor-exit.network/dist/, , , , Tue Oct 9 16:46:15 2018 -tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, FALSE, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion/, Tue Oct 9 16:46:15 2018 -Stefan, sela Internet, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://sela.io/mirrors/torproject.org/, , , , https://sela.io/mirrors/torproject.org/dist/, , , Tue Oct 9 16:46:15 2018 -webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.ccc.de/, https://tor.ccc.de/, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Tue Oct 9 16:46:15 2018 -tormirror0121.10.swsnyder@spamgourmet.com, tormirror, DE, Germany, Europe, FALSE, FALSE, FALSE, https://tormirror.snydernet.net/, , , , https://tormirror.snydernet.net/dist/, , , , Tue Oct 9 16:46:15 2018 -nick at calyx dot com, The Calyx Institute, US, United States of America, NorthAmerica, TRUE, FALSE, FALSE, http://tor.calyxinstitute.org/, https://tor.calyxinstitute.org/, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion/, Tue Oct 9 16:46:15 2018 -tor@armbrust.me, Michael Armbruster, FR, France, Europe, TRUE, TRUE, FALSE, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist/, rsync://tor.armbrust.me/tor-dist, , Tue Oct 9 16:46:15 2018 -Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Tue Oct 9 16:46:15 2018 -torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Tue Oct 9 16:46:15 2018 -admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, Europe, TRUE, TRUE, FALSE, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist/, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Tue Oct 9 16:46:15 2018 +mirror-service@netcologne.de, NetCologne GmbH, DE, Germany, Europe, TRUE, TRUE, FALSE, http://mirror.netcologne.de/torproject.org/, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, , , rsync://mirror.netcologne.de/torproject.org/dist, , Tue Oct 16 23:14:59 2018 +mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, Ukraine, Europe, TRUE, TRUE, TRUE, http://torproject.ip-connect.vn.ua/, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist/, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Sun Oct 14 23:14:59 2018 +torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Sun Oct 14 23:14:59 2018 +info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, FALSE, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion/, Sun Oct 14 23:14:59 2018 +http://www.multinet.no, MultiNet AS, NO, Norway, Europe, TRUE, TRUE, FALSE, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Sun Oct 14 23:14:59 2018 +haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, FALSE, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Sun Oct 14 23:14:59 2018 +Tor Fan, spline, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor/, , , rsync://ftp.spline.de/tor/dist, , Tue Oct 16 23:14:59 2018 +hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, FALSE, http://torproject.ph3x.at/, https://torproject.ph3x.at/, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Sun Oct 14 23:14:59 2018 +webmaster AT askapache DOT com, AskApache, US, United States, North America, TRUE, FALSE, FALSE, , , , , http://tor.askapache.com/dist/, , , , Sun Oct 14 23:14:59 2018 +paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, Oceania, TRUE, FALSE, FALSE, http://torproject.coffswifi.net/, , , , http://torproject.coffswifi.net/dist/, , , , Sun Oct 14 23:14:59 2018 +hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Europe, TRUE, FALSE, FALSE, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Sun Oct 14 23:14:59 2018 +Tor Fan, torservers, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://www.torservers.net/mirrors/torproject.org/, , , , https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Sun Oct 14 23:14:59 2018 +tor@les.net, tor@les.net, CA, Canada, North America, TRUE, FALSE, FALSE, http://tor.les.net/, , , , , , , , Tue Oct 16 23:14:59 2018 +tor@stalkr.net, stalkr.net, FR, France, Europe, TRUE, TRUE, FALSE, , https://tor.stalkr.net/, , , , https://tor.stalkr.net/dist/, , , Sun Oct 14 23:14:59 2018 +doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://tor-mirror.cyberguerrilla.org/, , , , https://tor-mirror.cyberguerrilla.org/dist/, , , Sun Oct 14 23:14:59 2018 +Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://mirror.velcommuta.de/tor/, , , , https://mirror.velcommuta.de/tor/dist/, , , Sun Oct 14 23:14:59 2018 +EFF, EFF, US, United States, North America, TRUE, FALSE, FALSE, , https://tor.eff.org/, , , , https://tor.eff.org/dist/, , , Sun Oct 14 23:14:59 2018 +admin AT nuclear DASH weapons DOT net, Setec Administrator, US, United States, North America, TRUE, FALSE, FALSE, http://tor.nuclear-weapons.net/, https://tor.nuclear-weapons.net/, , , http://tor.nuclear-weapons.net/dist/, https://tor.nuclear-weapons.net/dist/, , , Sun Oct 14 23:14:59 2018 +alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Sun Oct 14 23:14:59 2018 +tor@0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Sun Oct 14 23:14:59 2018 +James Murphy, intfxdx.com, US, United States, North America, TRUE, TRUE, FALSE, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Sun Oct 14 23:14:59 2018 +tor AT eprci NET, EPRCI, US, United States, North America, TRUE, FALSE, FALSE, http://tor.eprci.net/, , , , http://tor.eprci.net/dist/, , , , Sun Oct 14 23:14:59 2018 +tor-admin AT wardsback DOT org, wardsback.org, FR, France, Europe, TRUE, FALSE, FALSE, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Sun Oct 14 23:14:59 2018 +hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, FALSE, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Sun Oct 14 23:14:59 2018 +tor at tvdw dot eu, TvdW, , worldwide, .global, TRUE, TRUE, TRUE, http://tor-exit.network/, , , , http://tor-exit.network/dist/, , , , Sun Oct 14 23:14:59 2018 +tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, FALSE, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion/, Sun Oct 14 23:14:59 2018 +Stefan, sela Internet, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://sela.io/mirrors/torproject.org/, , , , https://sela.io/mirrors/torproject.org/dist/, , , Sun Oct 14 23:14:59 2018 +webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.ccc.de/, https://tor.ccc.de/, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Sun Oct 14 23:14:59 2018 +tormirror0121.10.swsnyder@spamgourmet.com, tormirror, DE, Germany, Europe, FALSE, FALSE, FALSE, https://tormirror.snydernet.net/, , , , https://tormirror.snydernet.net/dist/, , , , Sun Oct 14 23:14:59 2018 +nick at calyx dot com, The Calyx Institute, US, United States, North America, TRUE, FALSE, FALSE, http://tor.calyxinstitute.org/, https://tor.calyxinstitute.org/, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion/, Sun Oct 14 23:14:59 2018 +tor@armbrust.me, Michael Armbruster, FR, France, Europe, TRUE, TRUE, FALSE, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist/, rsync://tor.armbrust.me/tor-dist, , Sun Oct 14 23:14:59 2018 +Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Sun Oct 14 23:14:59 2018 +torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Sun Oct 14 23:14:59 2018 +admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, Europe, TRUE, TRUE, FALSE, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist/, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Sun Oct 14 23:14:59 2018 karibu@freedif.org, Freedif, VN, Vietnam, Asia, TRUE, FALSE, FALSE, , https://mirror.freedif.org/TorProject/, , , , https://mirror.freedif.org/TorProject/dist/, , , Tue Oct 9 16:46:15 2018 -mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.funkfreundelandshut.de/torproject.org/, , , , , , , http://44.225.40.254/torproject.org/dist/, Thu Oct 11 16:46:15 2018 -razx.cloud, razx, CA, Canada, NorthAmerica, TRUE, FALSE, FALSE, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist/, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Thu Oct 11 16:46:15 2018 -Tor Fan, Tor Supporter, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.oldsql.cc/tor/, https://mirror.oldsql.cc/tor/, , , http://mirror.oldsql.cc/tor/dist/, https://mirror.oldsql.cc/tor/dist/, , http://oldsqlcbr3aykyta.onion/tor/, Tue Oct 9 16:46:15 2018 -Lunar, Tor World (torworld.org), DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.torworld.org/, https://mirror.torworld.org/, , , http://mirror.torworld.org/dist/, https://mirror.torworld.org/dist/, , , Tue Oct 9 16:46:15 2018 -Merlijn de Leeuw, Serverius Connectivity, NL, Netherlands, Europe, TRUE, TRUE, FALSE, , https://mirror.serverius.net/torproject/, rsync://mirror.serverius.net/torproject, , , , rsync://mirror.serverius.net/dist, , Thu Oct 11 16:46:15 2018 -iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.hackerspace.ist/, https://tor.hackerspace.ist/, , , http://tor.hackerspace.ist/dist/, https://tor.hackerspace.ist/dist/, , , Tue Oct 9 16:46:15 2018 -iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Tue Oct 9 16:46:15 2018 -stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Thu Oct 11 16:46:15 2018 -adam.quenneville AT freemirror.org,The Free Mirror Project,CA,Canada,NorthAmerica,TRUE,FALSE,FALSE,http://mirror1.freemirror.org/tor/torproject.org/,https://mirror1.freemirror.org/tor/torproject.org/,rsync://mirror1.freemirror.org/tor-www,,http://mirror1.freemirror.org/tor/dist/,https://mirror1.freemirror.org/tor/dist/,rsync://mirror1.freemirror.org/tor-dist,, +mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.funkfreundelandshut.de/torproject.org/, , , , , , , http://44.225.40.254/torproject.org/dist/, Tue Oct 16 23:14:59 2018 +razx.cloud, razx, CA, Canada, North America, TRUE, FALSE, FALSE, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist/, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Tue Oct 16 23:14:59 2018 +Tor Fan, Tor Supporter, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.oldsql.cc/tor/, https://mirror.oldsql.cc/tor/, , , http://mirror.oldsql.cc/tor/dist/, https://mirror.oldsql.cc/tor/dist/, , http://oldsqlcbr3aykyta.onion/tor/, Sun Oct 14 23:14:59 2018 +Lunar, Tor World (torworld.org), DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.torworld.org/, https://mirror.torworld.org/, , , http://mirror.torworld.org/dist/, https://mirror.torworld.org/dist/, , , Sun Oct 14 23:14:59 2018 +Merlijn de Leeuw, Serverius Connectivity, NL, Netherlands, Europe, TRUE, TRUE, FALSE, , https://mirror.serverius.net/torproject/, rsync://mirror.serverius.net/torproject, , , , rsync://mirror.serverius.net/dist, , Tue Oct 16 23:14:59 2018 +iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.hackerspace.ist/, https://tor.hackerspace.ist/, , , http://tor.hackerspace.ist/dist/, https://tor.hackerspace.ist/dist/, , , Sun Oct 14 23:14:59 2018 +iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Sun Oct 14 23:14:59 2018 +stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Tue Oct 16 23:14:59 2018 +adam.quenneville AT freemirror.org, The Free Mirror Project, CA, Canada, North America, TRUE, FALSE, FALSE, http://mirror1.freemirror.org/tor/torproject.org/, https://mirror1.freemirror.org/tor/torproject.org/, rsync://mirror1.freemirror.org/tor-www, , http://mirror1.freemirror.org/tor/dist/, https://mirror1.freemirror.org/tor/dist/, rsync://mirror1.freemirror.org/tor-dist, , Sun Oct 14 23:14:59 2018 diff --git a/update-mirrors.pl b/update-mirrors.pl index 01eb2296..1a20cf39 100755 --- a/update-mirrors.pl +++ b/update-mirrors.pl @@ -54,7 +54,7 @@ sub print_help { "help" => sub { &print_help } ) or die "Error parsing arguments. Please try again.\n"; -my (@columns, @torfiles, %randomtorfiles, %failures); +my (@columns, @torfiles, %randomtorfiles, %failures, %regions); # Functions @@ -143,7 +143,6 @@ sub FindVersion { sub Fetch { my ($ua, $url, $sub) = @_; if (! $url || $url eq '') { die "Fetch: called with empty URL.\n"; } - STDOUT->autoflush(1); # unbuffer stdout to show progress print "\nGET $url: "; my $request = new HTTP::Request GET => "$url"; my $result = $ua->request($request); @@ -228,26 +227,29 @@ sub DumpMirrors { sub PrintServer { my ($server, $fh) = @_; - print $fh "\n\n - $server->{isoCC}\n - $server->{orgName}\n - Up to date\n"; + print $fh "\n\n\t$server->{orgName}\n\t$server->{updateDate}\n"; - my %prettyNames = ( # TODO make this accessible + my %web = ( httpWebsiteMirror => "http", httpsWebsiteMirror => "https", ftpWebsiteMirror => "ftp", rsyncWebsiteMirror => "rsync", + hiddenServiceMirror => "onion"); + my %dist = ( httpDistMirror => "http", httpsDistMirror => "https", - rsyncDistMirror => "rsync", - hiddenServiceMirror => "onion"); - - foreach my $precious ( sort keys %prettyNames ) { - if ($server->{$precious}) { - print $fh " {$precious} . "\">" . - "$prettyNames{$precious}\n"; - } else { print $fh " - \n"; } + rsyncDistMirror => "rsync"); + + foreach my $type (\%web, \%dist) { + print $fh "\t\n"; + foreach my $protocol ( sort keys %$type ) { + if ($server->{$protocol}) { + my $url = $server->{$protocol}; + my $tag = $type->{$protocol}; + print $fh "\t\t$tag\n"; + } + } + print $fh "\t\n"; } print $fh "\n"; } @@ -258,6 +260,7 @@ sub PrintServer { my $secperday = 86400; my $trace_path = 'project/trace/www-master.torproject.org'; my $download_path = 'download/download.html.en'; +STDOUT->autoflush(1); # unbuffer stdout to show progress my @m = LoadMirrors(\@columns); # Init LWP @@ -314,7 +317,6 @@ sub PrintServer { } for my $server (@m) { - foreach my $field (qw/ipv4 ipv6 loadBalanced/) { # unify boolean values unless ($server->{$field} =~ /TRUE|FALSE/) { $server->{$field} = ($server->{$field} =~ /yes|true|1/i) ? 'TRUE' : 'FALSE'; @@ -390,6 +392,7 @@ sub PrintServer { } } else { die "Unrecognized server type: $serverType\n"; } } + push (@{$regions{ $server->{region} }{ $server->{subRegion} } }, $server); } # TODO we could also check rsync @@ -409,10 +412,29 @@ sub PrintServer { # open wmi for writing open (my $wmifh, '>', $opts{'wmifile'}) or die "Can't write $opts{'wmifile'}: $!"; - +$wmifh->autoflush(1); # unbuffer stdout to show progress # Print server list sorted from last known recent update to unknown update times -foreach my $server ( sort { $b->{updateDate} <=> $a->{updateDate} } grep {$_->{updateDate} && $_->{updateDate} > $tortime && $_->{sigMatched}} @m ) { - PrintServer($server, $wmifh); +# TODO We want to have this sorted by region https://bugs.torproject.org/28083 + +print $wmifh "
    \n"; +foreach my $region (sort keys %regions) { + print $wmifh "
  • $region: "; + foreach my $subregion (sort keys %{$regions{$region}}) { + print $wmifh "$subregion (". @{$regions{$region}{$subregion}} .") "; + } + print $wmifh "
  • \n"; +} +print $wmifh "
\n"; + +foreach my $region (sort keys %regions) { + print $wmifh "

$region

\n"; + foreach my $subregion (sort keys %{$regions{$region}}) { + print $wmifh "

$subregion

\n"; +# foreach my $server ( sort { $b->{updateDate} <=> $a->{updateDate} } grep {$_->{updateDate} && $_->{updateDate} > $tortime } @{$regions{$region}{$subregion}} ) { + foreach my $server ( sort { $b->{updateDate} <=> $a->{updateDate} } @{$regions{$region}{$subregion}} ) { + PrintServer($server, $wmifh); + } + } } DumpMirrors(\@columns, $tortime - 31*$secperday, @m); close($wmifh); From d541f8dedeace155b465269e84456dd020e11b1c Mon Sep 17 00:00:00 2001 From: traumschule Date: Tue, 23 Oct 2018 23:08:10 +0200 Subject: [PATCH 08/10] Add cyberbits.eu mirror (#28165) --- include/tor-mirrors.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/include/tor-mirrors.csv b/include/tor-mirrors.csv index 014bbfd2..caec3cad 100644 --- a/include/tor-mirrors.csv +++ b/include/tor-mirrors.csv @@ -43,3 +43,4 @@ iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Sun Oct 14 23:14:59 2018 stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Tue Oct 16 23:14:59 2018 adam.quenneville AT freemirror.org, The Free Mirror Project, CA, Canada, North America, TRUE, FALSE, FALSE, http://mirror1.freemirror.org/tor/torproject.org/, https://mirror1.freemirror.org/tor/torproject.org/, rsync://mirror1.freemirror.org/tor-www, , http://mirror1.freemirror.org/tor/dist/, https://mirror1.freemirror.org/tor/dist/, rsync://mirror1.freemirror.org/tor-dist, , Sun Oct 14 23:14:59 2018 +root AT cyberbits DOT eu, cyberbits.eu, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.cyberbits.eu/torproject.org/, https://mirror.cyberbits.eu/torproject.org/, , , http://mirror.cyberbits.eu/torproject.org/dist/, https://mirror.cyberbits.eu/torproject.org/dist/, , , Sun Oct 21 17:59:11 2018 From 90ac0752a6e9fa2f32c53243ff1feed6b59193b0 Mon Sep 17 00:00:00 2001 From: traumschule Date: Wed, 24 Oct 2018 09:01:53 +0200 Subject: [PATCH 09/10] Improve update-mirrors.pl - Fix time bug - add --skip-tests option - report errors on mirrors-table.wmi --- update-mirrors.pl | 133 +++++++++++++++++++++++++++++----------------- 1 file changed, 85 insertions(+), 48 deletions(-) diff --git a/update-mirrors.pl b/update-mirrors.pl index 1a20cf39..18271c41 100755 --- a/update-mirrors.pl +++ b/update-mirrors.pl @@ -15,11 +15,12 @@ # Set Defaults my %opts = ( - 'max-age' => 2, + 'max_age' => 2, 'socks_proxy' => '127.0.0.1:9050', 'disable_proxy' => 0, 'verify_files' => 0, 'remove_failing' => 0, + 'skip_tests' => 0, 'csvfile' => 'include/tor-mirrors.csv', 'wmifile' => 'include/mirrors-table.wmi'); @@ -30,12 +31,13 @@ sub print_help { https://www.torproject.org/getinvolved/mirrors Usage: $0 [options] -\t--max-age\t\tChange acceptable age for mirrors in days (Default: $opts{'max-age'}) +\t--max-age\t\tChange acceptable age for mirrors in days (Default: $opts{'max_age'}) \t--socks-proxy\t\tDefine SOCKS proxy to access mirrors (Default: $opts{'socks_proxy'}) \t--no-proxy\t\tDirectly connect to mirrors. \t--verify-files\t\tDownload random files and verify their signature \t\t\t\t(depending on connection speed this can take a bit) \t--remove-failing\tRemove unreachable mirrors from the list +\t--skip-tests\t\tjust regenerate table (after minor changes or for debugging) \t--csv\t\t\tDefine alternative csv file (Default: $opts{'csvfile'}) \t--wmi\t\t\tDefine alternative wmi file (Default: $opts{'wmifile'}) \t--help\t\t\tShow this help\n"; @@ -44,40 +46,59 @@ sub print_help { # Parse Options GetOptions( - "max-age=n" => \$opts{'max-age'}, + "max-age=n" => \$opts{'max_age'}, "socks-proxy=s" => \$opts{'socks_proxy'}, "no-proxy" => \$opts{'no_proxy'}, "verify-files" => \$opts{'verify_files'}, - "remove-failing" => \$opts{'remove_failing'}, + "remove-failing" => \$opts{'remove_failing'}, + "skip-tests" => \$opts{'skip_tests'}, "csv=s" => \$opts{'csvfile'}, "wmi=s" => \$opts{'wmifile'}, "help" => sub { &print_help } ) or die "Error parsing arguments. Please try again.\n"; +# TODO Make global variables unnecessary my (@columns, @torfiles, %randomtorfiles, %failures, %regions); # Functions +# Returns a date string for a given date object sub DateString { - my $date_object = shift; + my ($date_object) = @_; return $date_object->strftime("%a %b %e %T %Y"); } -sub SanitizeContent { # remove letters, numbers and other characters - my $taintedData = shift; +# Returns seconds since epoch [string] +sub GetTime { + my ($string) = @_; + try { + # usually the string looks like: Sun Oct 21 21:18:56 2018 + my $date = Time::Piece->strptime($string, "%a %b %d %T %Y"); + return $date->epoch; + } catch { + warn "\tGetTime: Failed to parse: $string\n"; + return 0; + }; +} + +# Strips special characters [string] +sub SanitizeContent { + my ($taintedData) = @_; my $whitelist = '-a-zA-Z0-9: +'; # clean the data, return cleaned data $taintedData =~ s/[^$whitelist]//go; return $taintedData; } -sub CleanUrl { # remove potential double slash - my $url = shift; +# Removes potential double slash at end of an URL [string] +sub CleanUrl { + my ($url) = @_; die "CleanUrl: called without argument.\n" unless ($url); $url =~ s/([^:])\/\//$1\//g; return $url; } +# Returns array of files [string, string, object] sub ExtractLinks { my ($content, $url, $ua) = @_; unless ($content) { die "ExtractLinks: Called with empty content.\n"; } @@ -98,8 +119,9 @@ sub ExtractLinks { return @links; } +# Prints date string [string] sub ExtractDate { - my $string = shift; + my ($string) = @_; die "\tExtractDate: called with empty string.\n" unless ($string); my @lines = split "\n", $string; warn "\tExtractDate: empty string after split by newlines.\n" unless ($lines[0]); @@ -124,6 +146,7 @@ sub ExtractDate { return undef; } +# Prints signature [string, string] sub ExtractSig { my ($content, $url) = @_; my $sig = sha256_hex($content); @@ -131,6 +154,7 @@ sub ExtractSig { return $sig; } +# Returns version strin [string, string] sub FindVersion { my ($content, $url) = @_; # TODO Parsing the webpage is an unstable solution (#21222). @@ -140,6 +164,7 @@ sub FindVersion { return undef; } +# Calls subrouting or print / saves error [ua object, string, subroutine] sub Fetch { my ($ua, $url, $sub) = @_; if (! $url || $url eq '') { die "Fetch: called with empty URL.\n"; } @@ -175,13 +200,14 @@ sub Fetch { my $error = $result->message; $error =~ s/^.+\(([^)]+)\).*$/$1/; print "\t$code $error\n"; - push (@{$failures{$error}}, $url); + push (@{$failures{"$code $error"}}, $url); } return undef; } +# Returns array of mirrors [string] sub LoadMirrors { - my $columns = shift; + my ($columns) = @_; open(my $fh, "<", $opts{'csvfile'}) or die "Cannot open '$opts{'csvfile'}': $!"; my $line = <$fh>; chomp($line); @@ -208,6 +234,7 @@ sub LoadMirrors { return @mirrors; } +# Writes mirrors to file [string, int, array] sub DumpMirrors { my ($columns, $time_barrier, @m) = @_; open(my $csvfh, ">", $opts{'csvfile'}) or die "Cannot open '$opts{'csvfile'}': $!"; @@ -216,7 +243,7 @@ sub DumpMirrors { foreach my $server(@m) { next unless ($server->{httpWebsiteMirror} || $server->{httpsWebsiteMirror} || $server->{ftpWebsiteMirror} || $server->{httpDistMirror} || $server->{httpsDistMirror} || $server->{hiddenServiceMirror}); if ($opts{'remove_missing'}) { - next if (! $server->{updateDate} || $server->{updateDate} < $time_barrier); + next unless ($server->{updateDate} && $server->{updateDate} > $time_barrier); } print $csvfh join(", ", map($server->{$_}, @$columns)); print $csvfh "\n"; @@ -225,9 +252,10 @@ sub DumpMirrors { print "Updated $opts{'csvfile'}.\n"; } +# Returns html for a given server [string] sub PrintServer { - my ($server, $fh) = @_; - print $fh "\n\n\t$server->{orgName}\n\t$server->{updateDate}\n"; + my ($server) = @_; + my $return = "\n\n\t$server->{orgName}\n\t$server->{updateDate}\n"; my %web = ( httpWebsiteMirror => "http", @@ -241,31 +269,35 @@ sub PrintServer { rsyncDistMirror => "rsync"); foreach my $type (\%web, \%dist) { - print $fh "\t\n"; + $return .= "\t\n"; foreach my $protocol ( sort keys %$type ) { if ($server->{$protocol}) { my $url = $server->{$protocol}; my $tag = $type->{$protocol}; - print $fh "\t\t$tag\n"; + $return .= "\t\t$tag\n"; } } - print $fh "\t\n"; + $return .= "\t\n"; } - print $fh "\n"; + $return .= "\n"; + return $return; } # Start chdir dirname($0); die "Could not find 'include' - are we in the webwml directory?.\n" unless (-d 'include'); -my $secperday = 86400; +my $tortime = localtime; +my ($secperday, $lua, $tb_version) = (86400); my $trace_path = 'project/trace/www-master.torproject.org'; my $download_path = 'download/download.html.en'; STDOUT->autoflush(1); # unbuffer stdout to show progress my @m = LoadMirrors(\@columns); +unless ($opts{'skip_tests'}) { + # Init LWP print "=============== Testing mirrors with LWP UserAgent $LWP::VERSION ===============\n"; -my $lua = LWP::UserAgent->new( +$lua = LWP::UserAgent->new( max_redirect => 0, keep_alive => 1, timeout => 30, @@ -281,15 +313,14 @@ sub PrintServer { # Test proxy with tpo print "\nRetrieve current time from tpo:"; -my $tortime = (Fetch($lua, "http://expyuzz4wqqyqhjn.onion/$trace_path", \&ExtractDate) +$tortime = (Fetch($lua, "http://expyuzz4wqqyqhjn.onion/$trace_path", \&ExtractDate) or Fetch($lua, "https://www.torproject.org/$trace_path", \&ExtractDate)) or die "Can't extract time from tpo. Are we or they offline?\n"; die "Failed to parse date returned by tpo ($tortime).\n" if ($tortime < 0); -$tortime -= $opts{'max-age'} * $secperday; print "The time barrier for mirrors to be listed is ". DateString($tortime) ." (". $tortime->epoch .").\n"; print "\nDetermine current TB version:"; -my $tb_version = (Fetch($lua, "http://expyuzz4wqqyqhjn.onion/$download_path", \&FindVersion) +$tb_version = (Fetch($lua, "http://expyuzz4wqqyqhjn.onion/$download_path", \&FindVersion) or Fetch($lua, "https://www.torproject.org/$download_path", \&FindVersion)) or die "Can't extract tb version from tpo. Are we or they offline?\n"; if ($tb_version) { print "Tor Browser stable: $tb_version\n"; } @@ -316,6 +347,8 @@ sub PrintServer { print "Using these files for sig matching:\n". join("\n", keys %randomtorfiles) ."\n"; } +} # / skip_tests +$tortime -= $opts{'max_age'} * $secperday; for my $server (@m) { foreach my $field (qw/ipv4 ipv6 loadBalanced/) { # unify boolean values unless ($server->{$field} =~ /TRUE|FALSE/) { @@ -333,6 +366,7 @@ sub PrintServer { # There are several mirror types and we want to find out if each is up to date if ($serverType =~ /httpWebsiteMirror|httpsWebsiteMirror|ftpWebsiteMirror|hiddenServiceMirror/) { + next if ($opts{skip_tests}); my $updateDate = Fetch($lua, CleanUrl("$url$trace_path"), \&ExtractDate); if (not defined $updateDate) { @@ -341,7 +375,7 @@ sub PrintServer { $server->{$serverType} = ''; next; } - #push (@{$failures{'No trace URL'}}, "$url ($server->{'adminContact'})"); + push (@{$failures{'No trace URL'}}, $url); #print "\t$url ($server->{'adminContact'}) has issues but without --remove-failing we keep it.\n"; } elsif ($updateDate < 0) { # We received a clear error. @@ -356,11 +390,11 @@ sub PrintServer { my $errors; unless ($version) { print "\tFound no Tor Browser version.\n"; - push (@{$failures{'No download version'}}, "$url ($server->{'adminContact'})"); + push (@{$failures{'No download version'}}, $url); $errors++; } elsif ($tb_version ne $version) { print "\tMirror offers an old Tor Browser version: $version\n"; - push (@{$failures{'Wrong download version'}}, "$url ($server->{'adminContact'})"); + push (@{$failures{'Wrong download version'}}, $url); $errors++; } else { print "\tTor Browser stable: $version\n"; } if ($errors && $opts{'remove_failing'}) { @@ -371,7 +405,7 @@ sub PrintServer { } } elsif ($serverType =~ /httpDistMirror|httpsDistMirror/) { - + next if ($opts{skip_tests}); $server->{sigMatched} = 1; foreach my $randomtorfile(keys %randomtorfiles) { my $sig = Fetch($lua, CleanUrl("$url$randomtorfile"), \&ExtractSig); @@ -379,7 +413,7 @@ sub PrintServer { $server->{sigMatched} = 0; last; } elsif ($sig ne $randomtorfiles{$randomtorfile}) { - push (@{$failures{'Signature mismatch'}}, "$url ($server->{'adminContact'})"); + push (@{$failures{'Signature mismatch'}}, $url); $server->{sigMatched} = 0; last; } else { @@ -392,30 +426,29 @@ sub PrintServer { } } else { die "Unrecognized server type: $serverType\n"; } } - push (@{$regions{ $server->{region} }{ $server->{subRegion} } }, $server); + if ($server->{updateDate} && &GetTime($server->{updateDate}) > $tortime->epoch) { + push (@{$regions{ $server->{region} }{ $server->{subRegion} } }, $server); + } else { push (@{$failures{'Outdated'}}, "$server->{'orgName'}"); } + # TODO We could generate a mail to admins with failing mirrors } # TODO we could also check rsync -# show f of mirrors without trace URL +# show mirror issues +my $failing_mirrors; if (!$opts{'remove_failing'}) { - my $errors; - foreach my $error (keys %failures) { - if (@{$failures{$error}} > 0) { $errors++; - print "\n$error:\n"; - map { print "\t$_\n" } @{$failures{$error}}; - # TODO we could tweak this to show a sample mail to the mirror admin - } + foreach my $error (sort keys %failures) { + next unless (@{$failures{$error}} > 0); + my $failing = join ', ', @{$failures{$error}}; + $failing_mirrors .= "

$error

\n$failing"; } - print "Use --remove-failing to remove them from the list.\n" if ($errors); } # open wmi for writing open (my $wmifh, '>', $opts{'wmifile'}) or die "Can't write $opts{'wmifile'}: $!"; $wmifh->autoflush(1); # unbuffer stdout to show progress -# Print server list sorted from last known recent update to unknown update times -# TODO We want to have this sorted by region https://bugs.torproject.org/28083 +# Print server list sorted by region print $wmifh "
    \n"; foreach my $region (sort keys %regions) { print $wmifh "
  • $region: "; @@ -427,24 +460,28 @@ sub PrintServer { print $wmifh "
\n"; foreach my $region (sort keys %regions) { - print $wmifh "

$region

\n"; + my $subregions; foreach my $subregion (sort keys %{$regions{$region}}) { - print $wmifh "

$subregion

\n"; -# foreach my $server ( sort { $b->{updateDate} <=> $a->{updateDate} } grep {$_->{updateDate} && $_->{updateDate} > $tortime } @{$regions{$region}{$subregion}} ) { - foreach my $server ( sort { $b->{updateDate} <=> $a->{updateDate} } @{$regions{$region}{$subregion}} ) { - PrintServer($server, $wmifh); + my $servers; + foreach my $server ( + sort { &GetTime($b->{updateDate}) <=> &GetTime($a->{updateDate}) } + @{$regions{$region}{$subregion}} ) { + $servers .= PrintServer($server); } + $subregions .= "

$subregion

\n$servers" if ($servers); } + print $wmifh "

$region

\n$subregions" if ($subregions); } -DumpMirrors(\@columns, $tortime - 31*$secperday, @m); +print $wmifh "

Why is my mirror not listed above?

\n$failing_mirrors" if ($failing_mirrors); close($wmifh); + +DumpMirrors(\@columns, $tortime - 31*$secperday, @m); print "Updated $opts{'wmifile'}.\nWe are done here, enjoy your day!\n"; __END__ Possible improvements: - above code has several TODOs -- code is repeated in the server test loop - the various server types are repeated at a few places and should be centralized in a hash - be less verbose per default - use consistent variable/function names From 68b8f6a7d3b0e97e26ed7a261a4f1f31c5fb9a41 Mon Sep 17 00:00:00 2001 From: traumschule Date: Wed, 24 Oct 2018 13:40:05 +0200 Subject: [PATCH 10/10] Update list of mirrors --- include/mirrors-table.wmi | 513 +++----------------------------------- include/tor-mirrors.csv | 103 ++++---- 2 files changed, 94 insertions(+), 522 deletions(-) diff --git a/include/mirrors-table.wmi b/include/mirrors-table.wmi index a4210ad0..9363c083 100644 --- a/include/mirrors-table.wmi +++ b/include/mirrors-table.wmi @@ -1,151 +1,24 @@ -

.global

-

worldwide

- - - TvdW - Sun Oct 14 23:14:59 2018 - - http - - - http - - -

Asia

-

Taiwan

- - - Department of CSE. Yuan Ze University - Sun Oct 14 23:14:59 2018 - - ftp - http - https - rsync - - - http - https - rsync - - -

Vietnam

- - - Freedif - Tue Oct 9 16:46:15 2018 - - https - - - https - -

Europe

-

Austria

- - - ph3x - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - -

France

- - - stalkr.net - Sun Oct 14 23:14:59 2018 - - https - - - https - - - - - wardsback.org - Sun Oct 14 23:14:59 2018 - - http - - - http - - - - - Michael Armbruster - Sun Oct 14 23:14:59 2018 - - http - https - rsync - - - http - https - rsync - - - - - Standalone Installer Software - Sun Oct 14 23:14:59 2018 - - http - rsync - - - http - rsync - - - - - Tor Supporter - Sun Oct 14 23:14:59 2018 - - onion - http - https - - - http - https - -

Germany

- NetCologne GmbH - Tue Oct 16 23:14:59 2018 + Funkfreunde Landshut e.V. + Wed Oct 24 01:16:59 2018 - ftp - http - rsync + http - rsync + http spline - Tue Oct 16 23:14:59 2018 + Wed Oct 24 01:16:59 2018 ftp http @@ -158,231 +31,36 @@ - Funkfreunde Landshut e.V. - Tue Oct 16 23:14:59 2018 - - onion - http - - - - - - - TB-ITF - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - - - - torservers - Sun Oct 14 23:14:59 2018 - - onion - https - - - https - - - - - cYbergueRrilLa AnonyMous NeXus - Sun Oct 14 23:14:59 2018 - - https - - - https - - - - - Tor Supporter - Sun Oct 14 23:14:59 2018 - - https - - - https - - - - - Tor Supporter - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - - - - 0x3d.lu - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - - - - sela Internet - Sun Oct 14 23:14:59 2018 - - https - - - https - - - - - Chaos Computer Club - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - - - - tormirror - Sun Oct 14 23:14:59 2018 - - http - - - http - - - - - Tor Supporter - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - - - - TB-ITF - Sun Oct 14 23:14:59 2018 - - ftp - http - https - - - http - https - - - - - Tor World (torworld.org) - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - -

Iceland

- - - Frenn vun der Enn A.S.B.L. - Sun Oct 14 23:14:59 2018 - - onion - http - - - http - - - - - TheOnionRouter - Sun Oct 14 23:14:59 2018 + NetCologne GmbH + Tue Oct 23 15:12:38 2018 - http + rsync - http + http + rsync

Netherlands

Serverius Connectivity - Tue Oct 16 23:14:59 2018 + Wed Oct 24 01:16:59 2018 https rsync + http + https rsync - - - Hackerspace Istanbul - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - - - - Ozgurlesin.org (hs.ist) - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - -

Norway

nortor.no - Tue Oct 16 23:14:59 2018 + Wed Oct 24 01:16:59 2018 onion http @@ -393,36 +71,11 @@ https - - - MultiNet AS - Sun Oct 14 23:14:59 2018 - - http - - - http - - -

Spain

- - - Tor Supporter - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - -

Switzerland

urown.net - Sun Oct 14 23:14:59 2018 + Wed Oct 24 01:16:59 2018 onion http @@ -433,37 +86,12 @@ https -

Ukraine

- - - IP-Connect LLC - Sun Oct 14 23:14:59 2018 - - ftp - http - rsync - - - http - rsync - -

North America

Canada

- - tor@les.net - Tue Oct 16 23:14:59 2018 - - http - - - - - razx - Tue Oct 16 23:14:59 2018 + Wed Oct 24 01:16:59 2018 onion http @@ -476,102 +104,33 @@ - The Free Mirror Project - Sun Oct 14 23:14:59 2018 - - http - https - rsync - - - http - https - rsync - - -

United States

- - - AskApache - Sun Oct 14 23:14:59 2018 - - - - http - - - - - EFF - Sun Oct 14 23:14:59 2018 - - https - - - https - - - - - Setec Administrator - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - - - - intfxdx.com - Sun Oct 14 23:14:59 2018 - - http - https - - - http - https - - - - - EPRCI - Sun Oct 14 23:14:59 2018 - - http - - - http - - - - - The Calyx Institute - Sun Oct 14 23:14:59 2018 + tor@les.net + Wed Oct 24 01:16:59 2018 - onion - http - https + http - http - https -

Oceania

-

Australia and New Zealand

- CoffsWiFi - Sun Oct 14 23:14:59 2018 + tor@les.net + Wed Oct 24 01:16:59 2018 - http + http - http + http +

Why is my mirror not listed above?

+

302 Found

+http://www.torproject.is/dist/torbrowser/8.0.3/sha256sums-signed-build.txt

500 Connection timed out

+http://tor-exit.network/project/trace/www-master.torproject.org, http://tor-exit.network/dist/torbrowser/8.0.3/sha256sums-signed-build.txt, http://cyberside.net.ee/sibul/dist/torbrowser/8.0.3/sha256sums-signed-build.txt, https://cyberside.net.ee/sibul/dist/torbrowser/8.0.3/sha256sums-signed-build.txt, http://cyberside.net.ee/tor/torbrowser/8.0.3/sha256sums-signed-build.txt

500 Protocol error

+http://tor.mirrors.lucidnetworks.net/dist/torbrowser/8.0.3/sha256sums-signed-build.txt

500 SSL connect attempt failed error:1416F086:SSL routines:tls_process_server_certificate:certificate verify failed

+https://mirror.ntzk.de/torproject.org/dist/torbrowser/8.0.3/sha256sums-signed-build.txt, https://tor.nuclear-weapons.net/dist/torbrowser/8.0.3/sha256sums-signed-build.txt

500 hostname verification failed

+https://tor.hackerspace.ist/project/trace/www-master.torproject.org, https://tor.hackerspace.ist/dist/torbrowser/8.0.3/sha256sums-signed-build.txt, https://108.248.87.242/dist/torbrowser/8.0.3/sha256sums-signed-build.txt

No trace URL

+http://tor-exit.network/, https://tor.hackerspace.ist/

Outdated

+TvdW, Department of CSE. Yuan Ze University, Freedif, VinaHost, ph3x, University of Rijeka, CyberSiDE, CyberSIDE, Standalone Installer Software, cyberbits.eu, Tor Supporter, wardsback.org, Michael Armbruster, stalkr.net, Tor Supporter, cYbergueRrilLa AnonyMous NeXus, Tor Supporter, Tor World (torworld.org), Netzkonstrukt Berlin, sela Internet, sela Internet, Tor Supporter, torservers, Tor Supporter, 0x3d.lu, tormirror, TB-ITF, Chaos Computer Club, Tor Supporter, TheOnionRouter, Frenn vun der Enn A.S.B.L., torproject.is, Hackerspace Istanbul, Ozgurlesin.org (hs.ist), MultiNet AS, Tor Supporter, Academic Computer Club Umea University, IP-Connect LLC, EFF, The Free Mirror Project, Setec Administrator, EFF, HackThisSite.org, Lucid Networks, intfxdx.com, The Calyx Institute, EPRCI, AskApache, CoffsWiFi

Signature mismatch

+http://tor.stalkr.net/dist/, http://reichster.de/mirrors/torproject.org/dist/, https://reichster.de/mirrors/torproject.org/dist/, http://mirror.funkfreundelandshut.de:81/torproject.org/dist/, http://mirror.ntzk.de/torproject.org/dist/, http://mirror.netcologne.de/torproject.org/dist/, http://sela.io/mirrors/torproject.org/dist/, http://www.torservers.net/mirrors/torproject.org/dist/, http://tor.void.gr/dist/, https://tor.void.gr/dist/, http://mirror.serverius.net/dist/, https://mirror.serverius.net/dist/, http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, http://mirror1.freemirror.org/tor/dist/, https://mirror1.freemirror.org/tor/dist/, http://tor.les.net/dist/, http://tor.nuclear-weapons.net/dist/, http://tor.askapache.com/dist/

Wrong download version

+http://tor.hackerspace.ist/, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/ \ No newline at end of file diff --git a/include/tor-mirrors.csv b/include/tor-mirrors.csv index caec3cad..ea0042ef 100644 --- a/include/tor-mirrors.csv +++ b/include/tor-mirrors.csv @@ -1,46 +1,59 @@ adminContact, orgName, isoCC, subRegion, region, ipv4, ipv6, loadBalanced, httpWebsiteMirror, httpsWebsiteMirror, rsyncWebsiteMirror, ftpWebsiteMirror, httpDistMirror, httpsDistMirror, rsyncDistMirror, hiddenServiceMirror, updateDate -mirror-service@netcologne.de, NetCologne GmbH, DE, Germany, Europe, TRUE, TRUE, FALSE, http://mirror.netcologne.de/torproject.org/, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, , , rsync://mirror.netcologne.de/torproject.org/dist, , Tue Oct 16 23:14:59 2018 -mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, Ukraine, Europe, TRUE, TRUE, TRUE, http://torproject.ip-connect.vn.ua/, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist/, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Sun Oct 14 23:14:59 2018 -torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Sun Oct 14 23:14:59 2018 -info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, FALSE, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion/, Sun Oct 14 23:14:59 2018 -http://www.multinet.no, MultiNet AS, NO, Norway, Europe, TRUE, TRUE, FALSE, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Sun Oct 14 23:14:59 2018 -haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, FALSE, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Sun Oct 14 23:14:59 2018 -Tor Fan, spline, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor/, , , rsync://ftp.spline.de/tor/dist, , Tue Oct 16 23:14:59 2018 -hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, FALSE, http://torproject.ph3x.at/, https://torproject.ph3x.at/, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Sun Oct 14 23:14:59 2018 -webmaster AT askapache DOT com, AskApache, US, United States, North America, TRUE, FALSE, FALSE, , , , , http://tor.askapache.com/dist/, , , , Sun Oct 14 23:14:59 2018 -paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, Oceania, TRUE, FALSE, FALSE, http://torproject.coffswifi.net/, , , , http://torproject.coffswifi.net/dist/, , , , Sun Oct 14 23:14:59 2018 -hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Europe, TRUE, FALSE, FALSE, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Sun Oct 14 23:14:59 2018 -Tor Fan, torservers, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://www.torservers.net/mirrors/torproject.org/, , , , https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Sun Oct 14 23:14:59 2018 -tor@les.net, tor@les.net, CA, Canada, North America, TRUE, FALSE, FALSE, http://tor.les.net/, , , , , , , , Tue Oct 16 23:14:59 2018 -tor@stalkr.net, stalkr.net, FR, France, Europe, TRUE, TRUE, FALSE, , https://tor.stalkr.net/, , , , https://tor.stalkr.net/dist/, , , Sun Oct 14 23:14:59 2018 -doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://tor-mirror.cyberguerrilla.org/, , , , https://tor-mirror.cyberguerrilla.org/dist/, , , Sun Oct 14 23:14:59 2018 -Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://mirror.velcommuta.de/tor/, , , , https://mirror.velcommuta.de/tor/dist/, , , Sun Oct 14 23:14:59 2018 -EFF, EFF, US, United States, North America, TRUE, FALSE, FALSE, , https://tor.eff.org/, , , , https://tor.eff.org/dist/, , , Sun Oct 14 23:14:59 2018 -admin AT nuclear DASH weapons DOT net, Setec Administrator, US, United States, North America, TRUE, FALSE, FALSE, http://tor.nuclear-weapons.net/, https://tor.nuclear-weapons.net/, , , http://tor.nuclear-weapons.net/dist/, https://tor.nuclear-weapons.net/dist/, , , Sun Oct 14 23:14:59 2018 -alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Sun Oct 14 23:14:59 2018 -tor@0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Sun Oct 14 23:14:59 2018 -James Murphy, intfxdx.com, US, United States, North America, TRUE, TRUE, FALSE, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Sun Oct 14 23:14:59 2018 -tor AT eprci NET, EPRCI, US, United States, North America, TRUE, FALSE, FALSE, http://tor.eprci.net/, , , , http://tor.eprci.net/dist/, , , , Sun Oct 14 23:14:59 2018 -tor-admin AT wardsback DOT org, wardsback.org, FR, France, Europe, TRUE, FALSE, FALSE, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Sun Oct 14 23:14:59 2018 -hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, FALSE, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Sun Oct 14 23:14:59 2018 -tor at tvdw dot eu, TvdW, , worldwide, .global, TRUE, TRUE, TRUE, http://tor-exit.network/, , , , http://tor-exit.network/dist/, , , , Sun Oct 14 23:14:59 2018 -tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, FALSE, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion/, Sun Oct 14 23:14:59 2018 -Stefan, sela Internet, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://sela.io/mirrors/torproject.org/, , , , https://sela.io/mirrors/torproject.org/dist/, , , Sun Oct 14 23:14:59 2018 -webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.ccc.de/, https://tor.ccc.de/, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Sun Oct 14 23:14:59 2018 -tormirror0121.10.swsnyder@spamgourmet.com, tormirror, DE, Germany, Europe, FALSE, FALSE, FALSE, https://tormirror.snydernet.net/, , , , https://tormirror.snydernet.net/dist/, , , , Sun Oct 14 23:14:59 2018 -nick at calyx dot com, The Calyx Institute, US, United States, North America, TRUE, FALSE, FALSE, http://tor.calyxinstitute.org/, https://tor.calyxinstitute.org/, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion/, Sun Oct 14 23:14:59 2018 -tor@armbrust.me, Michael Armbruster, FR, France, Europe, TRUE, TRUE, FALSE, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist/, rsync://tor.armbrust.me/tor-dist, , Sun Oct 14 23:14:59 2018 -Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Sun Oct 14 23:14:59 2018 -torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Sun Oct 14 23:14:59 2018 -admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, Europe, TRUE, TRUE, FALSE, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist/, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Sun Oct 14 23:14:59 2018 -karibu@freedif.org, Freedif, VN, Vietnam, Asia, TRUE, FALSE, FALSE, , https://mirror.freedif.org/TorProject/, , , , https://mirror.freedif.org/TorProject/dist/, , , Tue Oct 9 16:46:15 2018 -mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.funkfreundelandshut.de/torproject.org/, , , , , , , http://44.225.40.254/torproject.org/dist/, Tue Oct 16 23:14:59 2018 -razx.cloud, razx, CA, Canada, North America, TRUE, FALSE, FALSE, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist/, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Tue Oct 16 23:14:59 2018 -Tor Fan, Tor Supporter, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.oldsql.cc/tor/, https://mirror.oldsql.cc/tor/, , , http://mirror.oldsql.cc/tor/dist/, https://mirror.oldsql.cc/tor/dist/, , http://oldsqlcbr3aykyta.onion/tor/, Sun Oct 14 23:14:59 2018 -Lunar, Tor World (torworld.org), DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.torworld.org/, https://mirror.torworld.org/, , , http://mirror.torworld.org/dist/, https://mirror.torworld.org/dist/, , , Sun Oct 14 23:14:59 2018 -Merlijn de Leeuw, Serverius Connectivity, NL, Netherlands, Europe, TRUE, TRUE, FALSE, , https://mirror.serverius.net/torproject/, rsync://mirror.serverius.net/torproject, , , , rsync://mirror.serverius.net/dist, , Tue Oct 16 23:14:59 2018 -iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.hackerspace.ist/, https://tor.hackerspace.ist/, , , http://tor.hackerspace.ist/dist/, https://tor.hackerspace.ist/dist/, , , Sun Oct 14 23:14:59 2018 -iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Sun Oct 14 23:14:59 2018 -stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Tue Oct 16 23:14:59 2018 -adam.quenneville AT freemirror.org, The Free Mirror Project, CA, Canada, North America, TRUE, FALSE, FALSE, http://mirror1.freemirror.org/tor/torproject.org/, https://mirror1.freemirror.org/tor/torproject.org/, rsync://mirror1.freemirror.org/tor-www, , http://mirror1.freemirror.org/tor/dist/, https://mirror1.freemirror.org/tor/dist/, rsync://mirror1.freemirror.org/tor-dist, , Sun Oct 14 23:14:59 2018 -root AT cyberbits DOT eu, cyberbits.eu, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.cyberbits.eu/torproject.org/, https://mirror.cyberbits.eu/torproject.org/, , , http://mirror.cyberbits.eu/torproject.org/dist/, https://mirror.cyberbits.eu/torproject.org/dist/, , , Sun Oct 21 17:59:11 2018 +tor at tvdw dot eu, TvdW, , worldwide, .global, TRUE, TRUE, TRUE, http://tor-exit.network/, , , , http://tor-exit.network/dist/, , , , Mon Oct 22 01:16:59 2018 +hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, FALSE, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Mon Oct 22 01:16:59 2018 +karibu@freedif.org, Freedif, VN, Vietnam, Asia, TRUE, FALSE, FALSE, , https://mirror.freedif.org/TorProject/, , , , https://mirror.freedif.org/TorProject/dist/, , , Mon Oct 22 01:16:59 2018 +tienhn@vinahost.vn, VinaHost, VN, Vietnam, Asia, TRUE, FALSE, FALSE, , , rsync://mirror.vinahost.vn/torproject.org, , , https://mirror.vinahost.vn/torproject.org/dist/, rsync://mirror.vinahost.vn/torproject.org/dist, , Mon Oct 22 01:16:59 2018 +hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, FALSE, http://torproject.ph3x.at/, https://torproject.ph3x.at/, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Mon Oct 22 01:16:59 2018 +Vedran Miletić, University of Rijeka, HR, Croatia, Europe, TRUE, FALSE, FALSE, , , , , http://mirrors.uniri.hr/torproject.org/dist/, https://mirrors.uniri.hr/torproject.org/dist/, , , Mon Oct 22 01:16:59 2018 +cyberrax at yahoo.com, CyberSiDE, EE, Estonia, Europe, TRUE, FALSE, FALSE, , , , , http://cyberside.net.ee/sibul/dist/, https://cyberside.net.ee/sibul/dist/, , , Wed Sep 5 00:49:40 2018 +margus.random at mail.ee, CyberSIDE, EE, Estonia, Europe, TRUE, FALSE, FALSE, , , , , http://cyberside.net.ee/tor/, , , , Wed Sep 5 00:49:40 2018 +admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, Europe, TRUE, TRUE, FALSE, , , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist/, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Mon Oct 22 01:16:59 2018 +root AT cyberbits DOT eu, cyberbits.eu, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.cyberbits.eu/torproject.org/, https://mirror.cyberbits.eu/torproject.org/, , , http://mirror.cyberbits.eu/torproject.org/dist/, https://mirror.cyberbits.eu/torproject.org/dist/, , , Mon Oct 22 01:16:59 2018 +Tor Fan, Tor Supporter, FR, France, Europe, TRUE, TRUE, FALSE, http://mirror.oldsql.cc/tor/, https://mirror.oldsql.cc/tor/, , , http://mirror.oldsql.cc/tor/dist/, https://mirror.oldsql.cc/tor/dist/, , , Mon Oct 22 01:16:59 2018 +tor-admin AT wardsback DOT org, wardsback.org, FR, France, Europe, TRUE, FALSE, FALSE, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Mon Oct 22 01:16:59 2018 +tor@armbrust.me, Michael Armbruster, FR, France, Europe, TRUE, TRUE, FALSE, , , rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist/, rsync://tor.armbrust.me/tor-dist, , Mon Oct 22 01:16:59 2018 +tor@stalkr.net, stalkr.net, FR, France, Europe, TRUE, TRUE, FALSE, , , , , http://tor.stalkr.net/dist/, https://tor.stalkr.net/dist/, , , Mon Oct 22 01:16:59 2018 +alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Mon Oct 22 01:16:59 2018 +doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, Europe, TRUE, FALSE, FALSE, , , , , , https://tor-mirror.cyberguerrilla.org/dist/, , , Mon Oct 22 01:16:59 2018 +Ich Eben, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, , , , , http://reichster.de/mirrors/torproject.org/dist/, https://reichster.de/mirrors/torproject.org/dist/, , , Wed Sep 5 14:06:00 2018 +Lunar, Tor World (torworld.org), DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.torworld.org/, https://mirror.torworld.org/, , , http://mirror.torworld.org/dist/, https://mirror.torworld.org/dist/, , , Mon Oct 22 01:16:59 2018 +mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, Germany, Europe, TRUE, FALSE, FALSE, http://mirror.funkfreundelandshut.de/torproject.org/, , , , http://mirror.funkfreundelandshut.de:81/torproject.org/dist/, , , , Wed Oct 24 01:16:59 2018 +mirror ntzk de, Netzkonstrukt Berlin, DE, Germany, Europe, TRUE, FALSE, FALSE, , , , , http://mirror.ntzk.de/torproject.org/dist/, https://mirror.ntzk.de/torproject.org/dist/, , , Wed Sep 5 16:53:44 2018 +mirror-service@netcologne.de, NetCologne GmbH, DE, Germany, Europe, TRUE, TRUE, FALSE, , , rsync://mirror.netcologne.de/torproject.org, , http://mirror.netcologne.de/torproject.org/dist/, , rsync://mirror.netcologne.de/torproject.org/dist, , Tue Oct 23 15:12:38 2018 +Stefan, sela Internet, DE, Germany, Europe, TRUE, TRUE, FALSE, , https://sela.io/mirrors/torproject.org/, , , http://sela.io/mirrors/torproject.org/dist/, https://sela.io/mirrors/torproject.org/dist/, , , Mon Oct 22 01:16:59 2018 +Stefan, sela Internet, DE, Germany, Europe, TRUE, TRUE, FALSE, , , , , , https://sela.io/mirrors/torproject.org/dist/, , , Mon Oct 22 01:16:59 2018 +Tor Fan, spline, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor/, , , rsync://ftp.spline.de/tor/dist, , Wed Oct 24 01:16:59 2018 +Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Mon Oct 22 01:16:59 2018 +Tor Fan, torservers, DE, Germany, Europe, TRUE, FALSE, FALSE, , https://www.torservers.net/mirrors/torproject.org/, , , http://www.torservers.net/mirrors/torproject.org/dist/, https://www.torservers.net/mirrors/torproject.org/dist/, , , Mon Oct 22 01:16:59 2018 +Tor Fan, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, FALSE, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Mon Oct 22 01:16:59 2018 +tor@0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Mon Oct 22 01:16:59 2018 +tormirror0121.10.swsnyder@spamgourmet.com, tormirror, DE, Germany, Europe, TRUE, FALSE, FALSE, https://tormirror.snydernet.net/, , , , , https://tormirror.snydernet.net/dist/, , , Mon Oct 22 01:16:59 2018 +torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, FALSE, http://tormirror.tb-itf-tor.de/, https://tormirror.tb-itf-tor.de/, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Mon Oct 22 01:16:59 2018 +webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, FALSE, http://tor.ccc.de/, https://tor.ccc.de/, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Mon Oct 22 01:16:59 2018 +Tor Fan, Tor Supporter, GR, Greece, Europe, TRUE, TRUE, FALSE, , , , , http://tor.void.gr/dist/, https://tor.void.gr/dist/, , , Wed Jun 27 21:28:08 2018 +hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Europe, TRUE, FALSE, FALSE, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Mon Oct 22 01:16:59 2018 +info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, FALSE, , , , , http://torproject.lu/dist/, , , , Mon Oct 22 01:16:59 2018 +Tor Fan, torproject.is, IS, Iceland, Europe, TRUE, FALSE, FALSE, , , , , http://www.torproject.is/dist/, , , , Wed Sep 5 16:53:44 2018 +iletisim at hackerspace.ist, Hackerspace Istanbul, NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.hackerspace.ist/, https://tor.hackerspace.ist/, , , http://tor.hackerspace.ist/dist/, https://tor.hackerspace.ist/dist/, , , Mon Oct 22 01:16:59 2018 +iletisim at hackerspace.ist, Ozgurlesin.org (hs.ist), NL, Netherlands, Europe, TRUE, FALSE, FALSE, http://tor.ozgurlesin.org/, https://tor.ozgurlesin.org/, , , http://tor.ozgurlesin.org/dist/, https://tor.ozgurlesin.org/dist/, , , Mon Oct 22 01:16:59 2018 +Merlijn de Leeuw, Serverius Connectivity, NL, Netherlands, Europe, TRUE, TRUE, FALSE, , https://mirror.serverius.net/torproject/, rsync://mirror.serverius.net/torproject, , http://mirror.serverius.net/dist/, https://mirror.serverius.net/dist/, rsync://mirror.serverius.net/dist, , Wed Oct 24 01:16:59 2018 +http://www.multinet.no, MultiNet AS, NO, Norway, Europe, TRUE, TRUE, FALSE, , , , , http://tor.multinet.no/dist/, , , , Mon Oct 22 01:16:59 2018 +stian at nortor.no, nortor.no, NO, Norway, Europe, TRUE, TRUE, FALSE, http://mirror.nortor.no/, https://mirror.nortor.no/, , , http://mirror.nortor.no/dist/, https://mirror.nortor.no/dist/, , http://t6phizbufdw7fqgy.onion/, Wed Oct 24 01:16:59 2018 +haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, FALSE, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Mon Oct 22 01:16:59 2018 +ftp-adm at acc.umu.se, Academic Computer Club Umea University, SE, Sweden, Europe, TRUE, TRUE, TRUE, , , , , http://ftp.acc.umu.se/mirror/torproject.org/dist/, https://ftp.acc.umu.se/mirror/torproject.org/dist/, rsync://ftp.acc.umu.se/mirror/torproject.org/dist/, , Mon Oct 22 01:16:59 2018 +tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, FALSE, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion/, Wed Oct 24 01:16:59 2018 +mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, Ukraine, Europe, TRUE, TRUE, TRUE, http://torproject.ip-connect.vn.ua/, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist/, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Mon Oct 22 01:16:59 2018 +EFF, EFF, US, United States, Europe, TRUE, FALSE, FALSE, , https://tor.eff.org/, , , , https://tor.eff.org/dist/, , , Mon Oct 22 01:16:59 2018 +adam.quenneville AT freemirror.org, The Free Mirror Project, CA, Canada, North America, TRUE, FALSE, FALSE, , , rsync://mirror1.freemirror.org/tor-www, , http://mirror1.freemirror.org/tor/dist/, https://mirror1.freemirror.org/tor/dist/, rsync://mirror1.freemirror.org/tor-dist, , Sun Oct 14 23:14:59 2018 +razx.cloud, razx, CA, Canada, North America, TRUE, FALSE, FALSE, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist/, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Wed Oct 24 01:16:59 2018 +tor@les.net, tor@les.net, CA, Canada, North America, TRUE, FALSE, FALSE, http://tor.les.net/, , , , , , , , Wed Oct 24 01:16:59 2018 +tor@les.net, tor@les.net, CA, Canada, North America, TRUE, FALSE, FALSE, http://tor.les.net/, , , , http://tor.les.net/dist/, , , , Wed Oct 24 01:16:59 2018 +admin AT nuclear DASH weapons DOT net, Setec Administrator, US, Texas, North America, TRUE, FALSE, FALSE, , , , , http://tor.nuclear-weapons.net/dist/, https://tor.nuclear-weapons.net/dist/, , , Wed Sep 5 00:49:40 2018 +EFF, EFF, US, United States, North America, TRUE, FALSE, FALSE, , https://tor.eff.org/, , , , https://tor.eff.org/dist/, , , Mon Oct 22 01:16:59 2018 +hackthissite.org, HackThisSite.org, US, United States, North America, TRUE, TRUE, FALSE, , , , , http://mirror.hackthissite.org/tor/, https://mirror.hackthissite.org/tor/, , , Mon Oct 22 01:16:59 2018 +hostmaster@lucidnetworks.net, Lucid Networks, US, United States, North America, TRUE, FALSE, FALSE, , , rsync://tor.mirrors.lucidnetworks.net::tor, , http://tor.mirrors.lucidnetworks.net/dist/, , rsync://tor.mirrors.lucidnetworks.net::tor-dist, , Wed Sep 5 16:53:44 2018 +James Murphy, intfxdx.com, US, United States, North America, TRUE, TRUE, FALSE, , , , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Mon Oct 22 01:16:59 2018 +nick at calyx dot com, The Calyx Institute, US, United States, North America, TRUE, FALSE, FALSE, http://tor.calyxinstitute.org/, https://tor.calyxinstitute.org/, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , , Mon Oct 22 01:16:59 2018 +tor AT eprci NET, EPRCI, US, United States, North America, TRUE, FALSE, FALSE, http://tor.eprci.net/, , , , http://tor.eprci.net/dist/, , , , Mon Oct 22 01:16:59 2018 +webmaster AT askapache DOT com, AskApache, US, United States, North America, TRUE, FALSE, FALSE, , , , , http://tor.askapache.com/dist/, , , , Mon Oct 22 01:16:59 2018 +paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, Oceania, TRUE, FALSE, FALSE, http://torproject.coffswifi.net/, , , , http://torproject.coffswifi.net/dist/, , , , Mon Oct 22 01:16:59 2018