d888f593e3817e21d94f99b9c9033aaa745acae5
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

1) #!/usr/bin/perl -w
2) use warnings;
3) use strict;
4) use LWP::Simple;
5) use LWP;
6) use Date::Parse;
Jacob Appelbaum Removed dupe mirror entry,...

Jacob Appelbaum authored 15 years ago

7) use Date::Format;
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

8) 
Jacob Appelbaum Add credit and some idea of...

Jacob Appelbaum authored 15 years ago

9) #
10) # A quick hack by Jacob Appelbaum <jacob@appelbaum.net>
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

11) # LWP suggestions by Leigh Honeywell
Jacob Appelbaum Add credit and some idea of...

Jacob Appelbaum authored 15 years ago

12) # This is Free Software (GPLv3)
13) # http://www.gnu.org/licenses/gpl-3.0.txt
14) #
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

15) # CHANGELOG
16) # 20091003 Code changes to elimiate the need for a trailing slash in addresses for script runtime
17) # 20091004 Code changes to increase out of date tolerance to 48 hours
18) # 20091028 Code changes to increase timout to 30 seconds (attempting to # resolve "unknown" status')
19) # 20091028 Code changes to change user agent of script
20) # 20100807 Remove dead mirrors.
Jacob Appelbaum Add credit and some idea of...

Jacob Appelbaum authored 15 years ago

21) 
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

22) print "Creating LWP agent ($LWP::VERSION)...\n";
23) my $lua = LWP::UserAgent->new(
24)     keep_alive => 1,
Jon@svn.torproject.org alter timout values (15 -> 30)

Jon@svn.torproject.org authored 14 years ago

25)     timeout => 30,
Jon@svn.torproject.org revert r21050

Jon@svn.torproject.org authored 14 years ago

26)     agent => "Tor MirrorCheck Agent"
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

27) );
28) 
29) sub sanitize {
30)     my $taintedData = shift;
31)     my $cleanedData;
32)     my $whitelist = '-a-zA-Z0-9: +';
33) 
34)     # clean the data, return cleaned data
35)     $taintedData =~ s/[^$whitelist]//go;
36)     $cleanedData = $taintedData;
37) 
38)     return $cleanedData;
39) }
40) 
41) sub FetchDate {
42)     my $url = shift; # Base url for mirror
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

43)     my $trace = "project/trace/www-master.torproject.org"; # this file should always exist
Andrew Lewman fix the perlism.

Andrew Lewman authored 10 years ago

44)     $url = "$url/$trace";
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

45) 
46)     print "Fetching possible date from: $url\n";
47) 
48)     my $request = new HTTP::Request GET => "$url";
49)     my $result = $lua->request($request);
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

50)     my $code = $result->code();
51)     print "Result code $code\n";
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

52) 
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

53)     if ($result->is_success && $code eq "200"){
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

54)        my $taint = $result->content;
55)        my $content = sanitize($taint);
56)        if ($content) {
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

57) 
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

58)             my $date = str2time($content);
59) 
60)             if ($date) {
61)                 print "We've fetched a date $date.\n";
62)                 return $date;
63)             } else {
64)                 print "We've haven't fetched a date.\n";
65)                 return "Unknown";
66)             }
67) 
68)         } else {
69)             print "Unable to fetch date, empty content returned.\n";
70)             return "Unknown";
71)         }
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

72) 
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

73)     } else {
74)        print "Our request failed, we had no result.\n";
75)        return "Unknown";
76)     }
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

77) 
78)     return "Unknown";
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

79) }
80) 
81) # This is the list of all known Tor mirrors
82) # Add new mirrors to the bottom!
Jon@svn.torproject.org Reorder mirrors, cypher's r...

Jon@svn.torproject.org authored 14 years ago

83) my %m = (
84) 
Andrew Lewman update mirrors.

Andrew Lewman authored 11 years ago

85) 
Andrew Lewman add CoralCDN into the mix.

Andrew Lewman authored 13 years ago

86)         mirror000 => {
87)             adminContact => "coralcdn.org",
88)             orgName => "CoralCDN",
89)             isoCC => "INT",
90)             subRegion => "",
91)             region => "INT",
92)             ipv4 => "True",
93)             ipv6 => "False",
94)             loadBalanced => "Yes",
95)             httpWebsiteMirror => "http://www.torproject.org.nyud.net/",
96)             httpsWebsiteMirror => "",
97)             rsyncWebsiteMirror => "",
98)             ftpWebsiteMirror => "",
99)             httpDistMirror => "http://www.torproject.org.nyud.net/dist/",
100)             httpsDistMirror => "",
101)             rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

102)             hiddenServiceMirror => ""
Andrew Lewman add CoralCDN into the mix.

Andrew Lewman authored 13 years ago

103)         },
104) 
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

105)         mirror001 => {
106)             adminContact => "BarkerJr AT barkerjr DOT net",
107)             orgName => "BarkerJr",
108)             isoCC => "FR",
109)             subRegion => "",
110)             region => "FR",
111)             ipv4 => "True",
112)             ipv6 => "False",
113)             loadBalanced => "No",
Jon@svn.torproject.org Fix the breakages I created...

Jon@svn.torproject.org authored 14 years ago

114)             httpWebsiteMirror => "http://www.oignon.net/",
Andrew Lewman per BarkerJr, update https:...

Andrew Lewman authored 13 years ago

115)             httpsWebsiteMirror => "https://www.oignon.net/",
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

116)             rsyncWebsiteMirror => "",
117)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Change the megahal mirror....

Jon@svn.torproject.org authored 14 years ago

118)             httpDistMirror => "http://www.oignon.net/dist/",
Andrew Lewman per BarkerJr, update https:...

Andrew Lewman authored 13 years ago

119)             httpsDistMirror => "https://www.oignon.net/dist/",
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

120)             rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

121)             hiddenServiceMirror => ""
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

122)         },
123) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

124)        mirror003 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

125)             adminContact => "citizen428 AT gmail DOT com",
Andrew Lewman update bbs mirror

Andrew Lewman authored 13 years ago

126)             orgName => "[[:bbs:]]",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

127)             isoCC => "DE",
128)             subRegion => "",
129)             region => "Europe",
130)             ipv4 => "True",
131)             ipv6 => "False",
132)             loadBalanced => "Unknown",
133)             httpWebsiteMirror => "http://tor.blingblingsquad.net/",
Andrew Lewman add in the self-signed ssl...

Andrew Lewman authored 13 years ago

134)             httpsWebsiteMirror => "https://tor.blingblingsquad.net/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

135)             ftpWebsiteMirror => "",
136)             rsyncWebsiteMirror => "",
Andrew Lewman update mirrors.

Andrew Lewman authored 11 years ago

137)             httpDistMirror => "http://tor.blingblingsquad.net/dist/",
138)             httpsDistMirror => "https://tor.blingblingsquad.net/dist/",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

139)             rsyncDistMirror => ""
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

140)         },
141) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

142)        mirror007 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

143)             adminContact => "info AT zentrum-der-gesundheit DOT de",
Mfr add contact address on mirr...

Mfr authored 15 years ago

144)             orgName => "Zentrum der Gesundheit",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

145)             isoCC => "DK",
146)             subRegion => "",
147)             region => "Europe",
148)             ipv4 => "True",
149)             ipv6 => "False",
150)             loadBalanced => "Unknown",
Andrew Lewman update one mirror per request

Andrew Lewman authored 14 years ago

151)             httpWebsiteMirror => "http://tor.idnr.ws/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

152)             ftpWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

153)             rsyncWebsiteMirror => "",
Andrew Lewman update one mirror per request

Andrew Lewman authored 14 years ago

154)             httpDistMirror => "http://tor.idnr.ws/dist/",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

155)             rsyncDistMirror => ""
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

156)         },
157) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

158)        mirror008 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

159)             adminContact => "root AT amorphis DOT eu",
Mfr add contact address on mirr...

Mfr authored 15 years ago

160)             orgName => "Amorphis",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

161)             isoCC => "NL",
162)             subRegion => "",
163)             region => "Europe",
164)             ipv4 => "True",
165)             ipv6 => "False",
166)             loadBalanced => "Unknown",
167)             httpWebsiteMirror => "http://tor.amorphis.eu/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

168)             rsyncWebsiteMirror => "",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

169)             ftpWebsiteMirror => "",
170)             httpDistMirror => "http://tor.amorphis.eu/dist/",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

171)             rsyncDistMirror => ""
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

172)         },
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

173)        mirror010 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

174)             adminContact => "webmaster AT ccc DOT de",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

175)             orgName => "CCC",
176)             isoCC => "NL",
177)             subRegion => "",
178)             region => "Europe",
179)             ipv4 => "True",
180)             ipv6 => "False",
181)             loadBalanced => "Unknown",
182)             httpWebsiteMirror => "http://tor.ccc.de/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

183)             rsyncWebsiteMirror => "",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

184)             ftpWebsiteMirror => "",
185)             httpDistMirror => "http://tor.ccc.de/dist/",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

186)             rsyncDistMirror => ""
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

187)         },
188) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

189)        mirror013 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

190) 	    adminContact => "hostmaster AT zombiewerks DOT com",
Mfr fix more typos

Mfr authored 15 years ago

191)             orgName => "TheOnionRouter",
Andrew Lewman update the mirrors table, u...

Andrew Lewman authored 12 years ago

192)             isoCC => "IS",
193)             subRegion => "",
194)             region => "Iceland",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

195)             ipv4 => "True",
196)             ipv6 => "False",
197)             loadBalanced => "Unknown",
Andrew Lewman add xpdm back to the list,...

Andrew Lewman authored 12 years ago

198)             httpWebsiteMirror => "http://theonionrouter.com/",
199)             httpsWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

200)             rsyncWebsiteMirror => "",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

201)             ftpWebsiteMirror => "",
Andrew Lewman add xpdm back to the list,...

Andrew Lewman authored 12 years ago

202)             httpDistMirror => "http://theonionrouter.com/dist/",
203)             httpsDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

204)             rsyncDistMirror => ""
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

205)         },
Andrew Lewman add xpdm back to the list,...

Andrew Lewman authored 12 years ago

206)     mirror014 => {
207)         adminContact => "tormaster AT xpdm DOT us",
208)         orgName => "Xpdm",
209)         isoCC => "US",
210)         subRegion => "",
211)         region => "North America",
212)         ipv4 => "True",
213)         ipv6 => "False",
214)         loadBalanced => "Unknown",
215)         httpWebsiteMirror => "http://torproj.xpdm.us/",
216)         httpsWebsiteMirror => "https://torproj.xpdm.us/",
217)         rsyncWebsiteMirror => "",
218)         ftpWebsiteMirror => "",
219)         httpDistMirror => "http://torproj.xpdm.us/dist/",
220)         httpsDistMirror => "https://torproj.xpdm.us/dist/",
221)         rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

222)         hiddenServiceMirror => "http://h3prhz46uktgm4tt.onion/"
Andrew Lewman add xpdm back to the list,...

Andrew Lewman authored 12 years ago

223)         },
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

224)      mirror016 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

225)             adminContact => "security AT hostoffice DOT hu",
Andrew Lewman Added mirror.tor.hu back to...

Andrew Lewman authored 15 years ago

226)             orgName => "Unknown",
227)             isoCC => "HU",
228)             subRegion => "Hungary",
229)             region => "Europe",
230)             ipv4 => "True",
231)             ipv6 => "False",
232)             loadBalanced => "No",
Andrew Lewman purge the dead mirrors that...

Andrew Lewman authored 13 years ago

233)             httpWebsiteMirror => "http://mirror.tor.hu/",
Andrew Lewman Added mirror.tor.hu back to...

Andrew Lewman authored 15 years ago

234)             httpsWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

235)             rsyncWebsiteMirror => "",
Andrew Lewman Added mirror.tor.hu back to...

Andrew Lewman authored 15 years ago

236)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

237)             httpDistMirror => "http://mirror.tor.hu/dist/",
Andrew Lewman Added mirror.tor.hu back to...

Andrew Lewman authored 15 years ago

238)             httpsDistMirror => "",
239)             rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

240)             hiddenServiceMirror => ""
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

241)         },
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

242)    mirror018 => {
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

243)             adminContact => "",
244)             orgName => "chaos darmstadt",
245)             isoCC => "DE",
246)             subRegion => "Germany",
247)             region => "Europe",
248)             ipv4 => "True",
249)             ipv6 => "False",
250)             loadBalanced => "No",
251)             httpWebsiteMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/",
252)             httpsWebsiteMirror => "",
253)             rsyncWebsiteMirror => "",
254)             ftpWebsiteMirror => "",
255)             httpDistMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/dist/",
256)             httpsDistMirror => "",
257)             rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

258)             hiddenServiceMirror => ""
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 14 years ago

259)         },
Andrew Lewman Add mirror 41, remove plent...

Andrew Lewman authored 14 years ago

260) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

261) 	mirror019 => {
Jon@svn.torproject.org Update AskApache - http://a...

Jon@svn.torproject.org authored 14 years ago

262)             adminContact => "webmaster AT askapache DOT com",
263)             orgName => "AskApache",
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 14 years ago

264)             isoCC => "US",
265)             subRegion => "California",
266)             region => "US",
267)             ipv4 => "True",
268)             ipv6 => "False",
269)             loadBalanced => "No",
270)             httpWebsiteMirror => "http://tor.askapache.com/",
271)             httpsWebsiteMirror => "",
272)             rsyncWebsiteMirror => "",
273)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Update AskApache - http://a...

Jon@svn.torproject.org authored 14 years ago

274)             httpDistMirror => "http://tor.askapache.com/dist/",
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 14 years ago

275)             httpsDistMirror => "",
276)             rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

277)             hiddenServiceMirror => ""
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

278)         },
Andrew Lewman Add mirror 41, remove plent...

Andrew Lewman authored 14 years ago

279) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

280) 	mirror020 => {
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

281)             adminContact => " mail AT benjamin-meier DOT info ",
282)             orgName => "beme it",
Andrew Lewman update the mirror list than...

Andrew Lewman authored 14 years ago

283)             isoCC => "DE",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

284)             subRegion => "",
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

285)             region => "DE",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

286)             ipv4 => "True",
287)             ipv6 => "False",
288)             loadBalanced => "No",
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

289)             httpWebsiteMirror => "http://tor.beme-it.de/",
Andrew Lewman add ssl to beme-it mirror.

Andrew Lewman authored 13 years ago

290)             httpsWebsiteMirror => "https://tor.beme-it.de/",
Andrew Lewman update the mirror list than...

Andrew Lewman authored 14 years ago

291)             rsyncWebsiteMirror => "rsync://tor.beme-it.de/tor",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

292)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

293)             httpDistMirror => "http://tor.beme-it.de/dist/",
Andrew Lewman add ssl to beme-it mirror.

Andrew Lewman authored 13 years ago

294)             httpsDistMirror => "https://tor.beme-it.de/dist/",
Andrew Lewman update the mirror list than...

Andrew Lewman authored 14 years ago

295)             rsyncDistMirror => "rsync://tor.beme-it.de/tor/dist",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

296)             hiddenServiceMirror => ""
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

297)         },
Andrew Lewman Add mirror 41, remove plent...

Andrew Lewman authored 14 years ago

298) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

299)         mirror021 => {
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

300)             adminContact => "",
Andrew Lewman create names for the blank...

Andrew Lewman authored 13 years ago

301)             orgName => "India Tor Fans",
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

302)             isoCC => "IN",
303)             subRegion => "",
304)             region => "IN",
305)             ipv4 => "True",
306)             ipv6 => "False",
307)             loadBalanced => "No",
Jon@svn.torproject.org resolving inconsistancy

Jon@svn.torproject.org authored 14 years ago

308)             httpWebsiteMirror => "http://www.torproject.org.in/",
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

309)             httpsWebsiteMirror => "",
310)             rsyncWebsiteMirror => "",
311)             ftpWebsiteMirror => "",
312)             httpDistMirror => "http://www.torproject.org.in/dist/",
313)             httpsDistMirror => "",
314)             rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

315)             hiddenServiceMirror => ""
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

316)         },
317) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

318)         mirror024 => {
Andrew Lewman add new mirror in ukraine,...

Andrew Lewman authored 14 years ago

319)             adminContact => "",
Andrew Lewman create names for the blank...

Andrew Lewman authored 13 years ago

320)             orgName => "homosu",
Andrew Lewman change the region for homos...

Andrew Lewman authored 14 years ago

321)             isoCC => "SE",
Andrew Lewman add new mirror in ukraine,...

Andrew Lewman authored 14 years ago

322)             subRegion => "",
Andrew Lewman change the region for homos...

Andrew Lewman authored 14 years ago

323)             region => "SE",
Andrew Lewman add new mirror in ukraine,...

Andrew Lewman authored 14 years ago

324)             ipv4 => "True",
325)             ipv6 => "False",
326)             loadBalanced => "No",
327)             httpWebsiteMirror => "http://tor.homosu.net/",
328)             httpsWebsiteMirror => "",
329)             rsyncWebsiteMirror => "",
330)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

331)             httpDistMirror => "http://tor.homosu.net/dist/",
Andrew Lewman add new mirror in ukraine,...

Andrew Lewman authored 14 years ago

332)             httpsDistMirror => "",
333)             rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

334)             hiddenServiceMirror => ""
Andrew Lewman fix the stanza.

Andrew Lewman authored 13 years ago

335)         },
Andrew Lewman Add 1.5 of the estonian mir...

Andrew Lewman authored 13 years ago

336) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

337)         mirror025 => {
Andrew Lewman Add 1.5 of the estonian mir...

Andrew Lewman authored 13 years ago

338)             adminContact => "margus.random at mail.ee",
339)             orgName => "CyberSIDE",
Andrew Lewman fix the EE country code.

Andrew Lewman authored 13 years ago

340)             isoCC => "EE",
Andrew Lewman Add 1.5 of the estonian mir...

Andrew Lewman authored 13 years ago

341)             subRegion => "",
342)             region => "EE",
343)             ipv4 => "True",
344)             ipv6 => "False",
345)             loadBalanced => "No",
346)             httpWebsiteMirror => "http://cyberside.planet.ee/tor/",
347)             httpsWebsiteMirror => "",
348)             rsyncWebsiteMirror => "",
349)             ftpWebsiteMirror => "",
Andrew Lewman update the cyberside mirror

Andrew Lewman authored 13 years ago

350)             httpDistMirror => "http://cyberside.net.ee/tor/",
Andrew Lewman Add 1.5 of the estonian mir...

Andrew Lewman authored 13 years ago

351)             httpsDistMirror => "",
352)             rsyncDistMirror => "",
Andrew Lewman remove consitently dead mir...

Andrew Lewman authored 10 years ago

353)             hiddenServiceMirror => ""
Andrew Lewman add the tomyn mirror.

Andrew Lewman authored 13 years ago

354)         },
Andrew Lewman add a mirror, update the ta...

Andrew Lewman authored 14 years ago

355) 
Andrew Lewman add a new mirror

Andrew Lewman authored 13 years ago

356)         mirror028 => {
Andrew Lewman add new mirror

Andrew Lewman authored 13 years ago

357)             adminContact => "",
Andrew Lewman add org name by request.

Andrew Lewman authored 13 years ago

358)             orgName => "NW Linux",
Andrew Lewman add new mirror

Andrew Lewman authored 13 years ago

359)             isoCC => "US",
360)             subRegion => "WA",
361)             region => "US",
362)             ipv4 => "True",
363)             ipv6 => "False",
364)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

365)             httpWebsiteMirror => "http://torproject.nwlinux.us/",
Andrew Lewman add new mirror

Andrew Lewman authored 13 years ago

366)             httpsWebsiteMirror => "",
Andrew Lewman add updated nwlinux mirrors.

Andrew Lewman authored 13 years ago

367)             rsyncWebsiteMirror => "rsync://nwlinux.us/tor-web",
Andrew Lewman add new mirror

Andrew Lewman authored 13 years ago

368)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

369)             httpDistMirror => "http://torproject.nwlinux.us/dist/",
Andrew Lewman add new mirror

Andrew Lewman authored 13 years ago

370)             httpsDistMirror => "",
Andrew Lewman add updated nwlinux mirrors.

Andrew Lewman authored 13 years ago

371)             rsyncDistMirror => "rsync://nwlinux.us/tor-dist",
Andrew Lewman add LazyTiger's mirror

Andrew Lewman authored 13 years ago

372)             hiddenServiceMirror => "",
373)         },
Andrew Lewman 5coluna is down.

Andrew Lewman authored 13 years ago

374)         mirror029 => {
Andrew Lewman add LazyTiger's mirror

Andrew Lewman authored 13 years ago

375)             adminContact => "",
376)             orgName => "LazyTiger",
377)             isoCC => "FR",
378)             subRegion => "",
379)             region => "FR",
380)             ipv4 => "True",
381)             ipv6 => "False",
382)             loadBalanced => "No",
383)             httpWebsiteMirror => "http://tor.taiga-san.net/",
384)             httpsWebsiteMirror => "",
385)             rsyncWebsiteMirror => "",
386)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

387)             httpDistMirror => "http://tor.taiga-san.net/dist/",
Andrew Lewman add LazyTiger's mirror

Andrew Lewman authored 13 years ago

388)             httpsDistMirror => "",
389)             rsyncDistMirror => "",
Andrew Lewman Add the searchprivate mirror.

Andrew Lewman authored 13 years ago

390)             hiddenServiceMirror => "",
391)         },
Andrew Lewman 5coluna is down.

Andrew Lewman authored 13 years ago

392)         mirror030 => {
Andrew Lewman Add the searchprivate mirror.

Andrew Lewman authored 13 years ago

393)             adminContact => "",
394)             orgName => "searchprivate",
395)             isoCC => "US",
396)             subRegion => "TX",
397)             region => "US",
398)             ipv4 => "True",
399)             ipv6 => "False",
400)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

401)             httpWebsiteMirror => "http://tor.searchprivate.com/",
Andrew Lewman Add the searchprivate mirror.

Andrew Lewman authored 13 years ago

402)             httpsWebsiteMirror => "",
403)             rsyncWebsiteMirror => "",
404)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

405)             httpDistMirror => "http://tor.searchprivate.com/dist/",
Andrew Lewman Add the searchprivate mirror.

Andrew Lewman authored 13 years ago

406)             httpsDistMirror => "",
407)             rsyncDistMirror => "",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

408)             hiddenServiceMirror => "",
409)         },
Andrew Lewman 5coluna is down.

Andrew Lewman authored 13 years ago

410)         mirror031 => {
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

411)             adminContact => "",
412)             orgName => "cyberarmy",
413)             isoCC => "AT",
414)             subRegion => "",
415)             region => "AT",
416)             ipv4 => "True",
417)             ipv6 => "False",
418)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

419)             httpWebsiteMirror => "http://tor.cyberarmy.at/",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

420)             httpsWebsiteMirror => "",
421)             rsyncWebsiteMirror => "",
422)             ftpWebsiteMirror => "",
Andrew Lewman clean up some obvious dead...

Andrew Lewman authored 12 years ago

423)             httpDistMirror => "",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

424)             httpsDistMirror => "",
425)             rsyncDistMirror => "",
426)             hiddenServiceMirror => "",
427)         },
428)         mirror032 => {
429)             adminContact => "",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

430)             orgName => "torproject.is",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

431)             isoCC => "IS",
432)             subRegion => "",
433)             region => "IS",
434)             ipv4 => "True",
435)             ipv6 => "False",
436)             loadBalanced => "No",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

437)             httpWebsiteMirror => "http://torproject.is/",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

438)             httpsWebsiteMirror => "",
439)             rsyncWebsiteMirror => "",
440)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

441)             httpDistMirror => "http://torproject.is/dist/",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

442)             httpsDistMirror => "",
443)             rsyncDistMirror => "",
Andrew Lewman add the tomyn mirror.

Andrew Lewman authored 13 years ago

444)             hiddenServiceMirror => "",
Andrew Lewman add torserver.net mirrors.

Andrew Lewman authored 13 years ago

445)         },
446)         mirror033 => {
447)             adminContact => "",
448)             orgName => "torservers",
449)             isoCC => "DE",
450)             subRegion => "",
451)             region => "DE",
452)             ipv4 => "True",
453)             ipv6 => "False",
454)             loadBalanced => "No",
455)             httpWebsiteMirror => "http://www.torservers.net/mirrors/torproject.org/",
456)             httpsWebsiteMirror => "https://www.torservers.net/mirrors/torproject.org/",
457)             rsyncWebsiteMirror => "",
458)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

459)             httpDistMirror => "http://www.torservers.net/mirrors/torproject.org/dist/",
460)             httpsDistMirror => "https://www.torservers.net/mirrors/torproject.org/dist/",
Andrew Lewman add torserver.net mirrors.

Andrew Lewman authored 13 years ago

461)             rsyncDistMirror => "",
462)             hiddenServiceMirror => "http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/",
Andrew Lewman add http://tor.webersiedlun...

Andrew Lewman authored 13 years ago

463)         },
Andrew Lewman add https://www.coevoet.nl/...

Andrew Lewman authored 12 years ago

464)         mirror036 => {
465)             adminContact => "",
466)             orgName => "",
467)             isoCC => "NL",
468)             subRegion => "",
469)             region => "NL",
470)             ipv4 => "True",
471)             ipv6 => "False",
472)             loadBalanced => "No",
473)             httpWebsiteMirror => "",
474)             httpsWebsiteMirror => "",
475)             rsyncWebsiteMirror => "",
476)             ftpWebsiteMirror => "",
477)             httpDistMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

478)             httpsDistMirror => "https://www.coevoet.nl/tor/dist/",
Andrew Lewman add https://www.coevoet.nl/...

Andrew Lewman authored 12 years ago

479)             rsyncDistMirror => "",
480)             hiddenServiceMirror => "",
Andrew Lewman update mirrors list and mir...

Andrew Lewman authored 12 years ago

481)       },
482)         mirror038 => {
483)             adminContact => "",
484)             orgName => "",
485)             isoCC => "LT",
486)             subRegion => "",
487)             region => "LT",
488)             ipv4 => "True",
489)             ipv6 => "False",
490)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

491)             httpWebsiteMirror => "http://tor.vesta.nu/",
Andrew Lewman update mirrors list and mir...

Andrew Lewman authored 12 years ago

492)             httpsWebsiteMirror => "",
493)             rsyncWebsiteMirror => "",
494)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

495)             httpDistMirror => "http://tor.vesta.nu/dist/",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

496)             httpsDistMirror => "",
497)             rsyncDistMirror => "",
Andrew Lewman add tor-key-server mirror.

Andrew Lewman authored 12 years ago

498)             hiddenServiceMirror => "",
Andrew Lewman add Tunisian mirror, remove...

Andrew Lewman authored 12 years ago

499)       },
500)         mirror045 => {
501)             adminContact => "",
502)             orgName => "",
503)             isoCC => "TN",
504)             subRegion => "",
505)             region => "TN",
506)             ipv4 => "True",
507)             ipv6 => "False",
508)             loadBalanced => "No",
509)             httpWebsiteMirror => "http://tor.mirror.tn/",
510)             httpsWebsiteMirror => "",
511)             rsyncWebsiteMirror => "",
512)             ftpWebsiteMirror => "",
513)             httpDistMirror => "http://tor.mirror.tn/dist/",
514)             httpsDistMirror => "",
515)             rsyncDistMirror => "",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

516)             hiddenServiceMirror => "",
Andrew Lewman add the new cryptowars.info...

Andrew Lewman authored 12 years ago

517)       },
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

518)         mirror045 => {
Andrew Lewman add the new cryptowars.info...

Andrew Lewman authored 12 years ago

519)             adminContact => "",
520)             orgName => "",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

521)             isoCC => "TN",
Andrew Lewman add the new cryptowars.info...

Andrew Lewman authored 12 years ago

522)             subRegion => "",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

523)             region => "TN",
Andrew Lewman add the new cryptowars.info...

Andrew Lewman authored 12 years ago

524)             ipv4 => "True",
525)             ipv6 => "False",
526)             loadBalanced => "No",
Andrew Lewman add a new mirror, update tw...

Andrew Lewman authored 12 years ago

527)             httpWebsiteMirror => "http://torproject.antagonism.org/",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

528)             httpsWebsiteMirror => "https://torproject.antagonism.org/",
529)             rsyncWebsiteMirror => "",
530)             ftpWebsiteMirror => "",
Andrew Lewman remove antagonism/dist from...

Andrew Lewman authored 11 years ago

531)             httpDistMirror => "",
532)             httpsDistMirror => "",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

533)             rsyncDistMirror => "",
Andrew Lewman add new mirror, refresh mir...

Andrew Lewman authored 12 years ago

534)             hiddenServiceMirror => "",
Andrew Lewman add another mirror, refresh...

Andrew Lewman authored 12 years ago

535)       },
536)         mirror048 => {
537)             adminContact => "",
538)             orgName => "",
539)             isoCC => "AT",
540)             subRegion => "",
541)             region => "AT",
542)             ipv4 => "True",
543)             ipv6 => "True",
544)             loadBalanced => "No",
545)             httpWebsiteMirror => "http://tor.dont-know-me.at/",
546)             httpsWebsiteMirror => "",
547)             rsyncWebsiteMirror => "",
548)             ftpWebsiteMirror => "",
549)             httpDistMirror => "http://tor.dont-know-me.at/dist/",
550)             httpsDistMirror => "",
551)             rsyncDistMirror => "",
Andrew Lewman add a new mirror in iceland...

Andrew Lewman authored 12 years ago

552)             hiddenServiceMirror => "",
553)         },
554)         mirror049 => {
555)             adminContact => "IceBear",
Andrew Lewman update mirrors again.

Andrew Lewman authored 12 years ago

556)             orgName => "myRL.net",
Andrew Lewman add a new mirror in iceland...

Andrew Lewman authored 12 years ago

557)             isoCC => "IS",
558)             subRegion => "",
559)             region => "IS",
560)             ipv4 => "True",
561)             ipv6 => "False",
562)             loadBalanced => "No",
563)             httpWebsiteMirror => "http://tor.myrl.net/",
564)             httpsWebsiteMirror => "https://tor.myrl.net/",
565)             rsyncWebsiteMirror => "",
566)             ftpWebsiteMirror => "",
567)             httpDistMirror => "http://tor.myrl.net/dist/",
568)             httpsDistMirror => "https://tor.myrl.net/dist/",
569)             rsyncDistMirror => "",
Andrew Lewman add a new mirror, refresh t...

Andrew Lewman authored 12 years ago

570)             hiddenServiceMirror => "",
571)         },
572)         mirror050 => {
573)             adminContact => "",
Andrew Lewman fix org name and update mir...

Andrew Lewman authored 12 years ago

574)             orgName => "borgmann.tv",
Andrew Lewman add a new mirror, refresh t...

Andrew Lewman authored 12 years ago

575)             isoCC => "DE",
576)             subRegion => "",
577)             region => "DE",
578)             ipv4 => "True",
579)             ipv6 => "False",
580)             loadBalanced => "No",
581)             httpWebsiteMirror => "http://tor.borgmann.tv/",
582)             httpsWebsiteMirror => "",
583)             rsyncWebsiteMirror => "",
584)             ftpWebsiteMirror => "",
585)             httpDistMirror => "http://tor.borgmann.tv/dist/",
586)             httpsDistMirror => "",
587)             rsyncDistMirror => "",
Andrew Lewman add a new mirror, update th...

Andrew Lewman authored 12 years ago

588)             hiddenServiceMirror => "",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

589)         },
590)         mirror051 => {
591)             adminContact => "",
592)             orgName => "torland",
Andrew Lewman update the mirrors table.

Andrew Lewman authored 12 years ago

593)             isoCC => "GB",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

594)             subRegion => "",
Andrew Lewman update the mirrors table.

Andrew Lewman authored 12 years ago

595)             region => "GB",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

596)             ipv4 => "True",
597)             ipv6 => "False",
598)             loadBalanced => "No",
Andrew Lewman fix torland mirror path, up...

Andrew Lewman authored 12 years ago

599)             httpWebsiteMirror => "http://mirror.torland.me/torproject.org/",
600)             httpsWebsiteMirror => "https://mirror.torland.me/torproject.org/",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

601)             rsyncWebsiteMirror => "",
602)             ftpWebsiteMirror => "",
Andrew Lewman fix torland mirror path, up...

Andrew Lewman authored 12 years ago

603)             httpDistMirror => "http://mirror.torland.me/torproject.org/dist/",
604)             httpsDistMirror => "https://mirror.torland.me/torproject.org/dist/",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

605)             rsyncDistMirror => "",
606)             hiddenServiceMirror => "",
607)         },
608)         mirror052 => {
609)             adminContact => "",
610)             orgName => "spline",
611)             isoCC => "DE",
612)             subRegion => "",
613)             region => "DE",
614)             ipv4 => "True",
615)             ipv6 => "False",
616)             loadBalanced => "No",
617)             httpWebsiteMirror => "http://tor.spline.de/",
Andrew Lewman add https spline mirror, up...

Andrew Lewman authored 12 years ago

618)             httpsWebsiteMirror => "https://tor.spline.inf.fu-berlin.de/",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

619)             rsyncWebsiteMirror => "rsync://ftp.spline.de/tor",
620)             ftpWebsiteMirror => "ftp://ftp.spline.de/pub/tor",
621)             httpDistMirror => "http://tor.spline.de/dist/",
Andrew Lewman add https spline mirror, up...

Andrew Lewman authored 12 years ago

622)             httpsDistMirror => "https://tor.spline.inf.fu-berlin.de/dist/",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

623)             rsyncDistMirror => "rsync://ftp.spline.de/tor/dist",
624)             hiddenServiceMirror => "",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 12 years ago

625)         },
626)         mirror053 => {
627)             adminContact => "",
628)             orgName => "",
629)             isoCC => "AT",
630)             subRegion => "",
631)             region => "AT",
632)             ipv4 => "True",
633)             ipv6 => "False",
634)             loadBalanced => "No",
635)             httpWebsiteMirror => "http://torproject.ph3x.at/",
636)             httpsWebsiteMirror => "",
637)             rsyncWebsiteMirror => "",
638)             ftpWebsiteMirror => "",
639)             httpDistMirror => "http://torproject.ph3x.at/dist/",
640)             httpsDistMirror => "",
641)             rsyncDistMirror => "",
Andrew Lewman add a new mirror and refres...

Andrew Lewman authored 12 years ago

642)             hiddenServiceMirror => "",
643)         },
644)         mirror054 => {
645)             adminContact => "",
Andrew Lewman fix hessmo details and dist...

Andrew Lewman authored 12 years ago

646)             orgName => "hessmo",
Andrew Lewman add a new mirror and refres...

Andrew Lewman authored 12 years ago

647)             isoCC => "US",
648)             subRegion => "",
649)             region => "US",
650)             ipv4 => "True",
651)             ipv6 => "False",
652)             loadBalanced => "No",
653)             httpWebsiteMirror => "http://mirror.hessmo.com/tor/",
654)             httpsWebsiteMirror => "",
655)             rsyncWebsiteMirror => "",
656)             ftpWebsiteMirror => "",
Andrew Lewman fix hessmo details and dist...

Andrew Lewman authored 12 years ago

657)             httpDistMirror => "http://mirror.hessmo.com/tor/dist/",
Andrew Lewman add a new mirror and refres...

Andrew Lewman authored 12 years ago

658)             httpsDistMirror => "",
659)             rsyncDistMirror => "",
Andrew Lewman add a new mirror, update th...

Andrew Lewman authored 12 years ago

660)             hiddenServiceMirror => "",
661)         },
Andrew Lewman add 2 new mirrors, re-run t...

Andrew Lewman authored 12 years ago

662)         mirror058 => {
663)             adminContact => "",
664)             orgName => "",
665)             isoCC => "US",
666)             subRegion => "",
667)             region => "US",
668)             ipv4 => "True",
669)             ipv6 => "True",
670)             loadBalanced => "No",
671)             httpWebsiteMirror => "http://tor.loritsu.com/",
672)             httpsWebsiteMirror => "",
673)             rsyncWebsiteMirror => "",
674)             ftpWebsiteMirror => "",
675)             httpDistMirror => "http://tor.loritsu.com/dist/",
676)             httpsDistMirror => "",
677)             rsyncDistMirror => "",
678)             hiddenServiceMirror => "",
679)         },
Andrew Lewman update mirrors table, add a...

Andrew Lewman authored 11 years ago

680)         mirror060 => {
681)             adminContact => "",
682)             orgName => "",
683)             isoCC => "DE",
684)             subRegion => "",
685)             region => "DE",
686)             ipv4 => "True",
687)             ipv6 => "False",
688)             loadBalanced => "No",
689)             httpWebsiteMirror => "http://torproject.cryptowars.info/",
690)             httpsWebsiteMirror => "https://torproject.cryptowars.info/",
691)             rsyncWebsiteMirror => "rsync://torproject.cryptowars.info/",
692)             ftpWebsiteMirror => "",
693)             httpDistMirror => "http://torproject.cryptowars.info/dist/",
694)             httpsDistMirror => "https://torproject.cryptowars.info/dist/",
695)             rsyncDistMirror => "",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 12 years ago

696)             hiddenServiceMirror => "",
Andrew Lewman add a new mirror, update mi...

Andrew Lewman authored 11 years ago

697)         },
Andrew Lewman add the new mirrors, remove...

Andrew Lewman authored 11 years ago

698)         mirror062 => {
699)             adminContact => "",
700)             orgName => "",
701)             isoCC => "DE",
702)             subRegion => "",
703)             region => "DE",
704)             ipv4 => "True",
705)             ipv6 => "False",
706)             loadBalanced => "No",
707)             httpWebsiteMirror => "http://tor.dev-random.de/",
708)             httpsWebsiteMirror => "https://tor.dev-random.de/",
709)             rsyncWebsiteMirror => "",
710)             ftpWebsiteMirror => "",
711)             httpDistMirror => "http://tor.dev-random.de/dist/",
712)             httpsDistMirror => "https://tor.dev-random.de/dist/",
713)             rsyncDistMirror => "",
714)             hiddenServiceMirror => "",
715)     },
716)         mirror063 => {
717)             adminContact => "",
Andrew Lewman fix the crazyhaze.de mirror...

Andrew Lewman authored 11 years ago

718)             orgName => "crazyhaze.de",
Andrew Lewman add the new mirrors, remove...

Andrew Lewman authored 11 years ago

719)             isoCC => "DE",
720)             subRegion => "",
721)             region => "DE",
722)             ipv4 => "True",
723)             ipv6 => "False",
724)             loadBalanced => "No",
725)             httpWebsiteMirror => "http://tor.crazyhaze.de/",
726)             httpsWebsiteMirror => "https://tor.crazyhaze.de/",
727)             rsyncWebsiteMirror => "",
728)             ftpWebsiteMirror => "",
Andrew Lewman fix the crazyhaze.de mirror...

Andrew Lewman authored 11 years ago

729)             httpDistMirror => "http://tor.crazyhaze.de/dist/",
730)             httpsDistMirror => "https://tor.crazyhaze.de/dist/",
Andrew Lewman add the new mirrors, remove...

Andrew Lewman authored 11 years ago

731)             rsyncDistMirror => "",
732)             hiddenServiceMirror => "",
Andrew Lewman add new mirror.

Andrew Lewman authored 11 years ago

733)     },
734)         mirror066 => {
735)             adminContact => "",
Andrew Lewman update lightning-bolt mirro...

Andrew Lewman authored 11 years ago

736)             orgName => "Lightning-bolt.net",
737)             isoCC => "CZ",
Andrew Lewman add new mirror.

Andrew Lewman authored 11 years ago

738)             subRegion => "",
Andrew Lewman update lightning-bolt mirro...

Andrew Lewman authored 11 years ago

739)             region => "CZ",
Andrew Lewman add new mirror.

Andrew Lewman authored 11 years ago

740)             ipv4 => "True",
741)             ipv6 => "False",
742)             loadBalanced => "No",
743)             httpWebsiteMirror => "http://torproject.lightning-bolt.net/",
744)             httpsWebsiteMirror => "",
745)             rsyncWebsiteMirror => "",
746)             ftpWebsiteMirror => "",
747)             httpDistMirror => "http://torproject.lightning-bolt.net/dist/",
748)             httpsDistMirror => "",
749)             rsyncDistMirror => "",
Andrew Lewman add a new mirror, update mi...

Andrew Lewman authored 11 years ago

750)             hiddenServiceMirror => "",
Andrew Lewman add the new samwhited mirro...

Andrew Lewman authored 11 years ago

751)     },
752)         mirror067 => {
753)             adminContact => "",
754)             orgName => "",
755)             isoCC => "US",
756)             subRegion => "",
757)             region => "US",
758)             ipv4 => "True",
759)             ipv6 => "False",
760)             loadBalanced => "No",
Andrew Lewman update samwhited mirror.

Andrew Lewman authored 11 years ago

761)             httpWebsiteMirror => "http://tor.mirrors.whitedholdings.org/",
762)             httpsWebsiteMirror => "https://tor.mirrors.whitedholdings.org/",
763)             rsyncWebsiteMirror => "rsync://mirrors.whitedholdings.org/tor",
Andrew Lewman add the new samwhited mirro...

Andrew Lewman authored 11 years ago

764)             ftpWebsiteMirror => "",
Andrew Lewman update samwhited mirror.

Andrew Lewman authored 11 years ago

765)             httpDistMirror => "http://tor.mirrors.whitedholdings.org/dist/",
766)             httpsDistMirror => "https://tor.mirrors.whitedholdings.org/dist/",
767)             rsyncDistMirror => "rsync://tor.mirrors.whitedholdings.org/tor-dist",
Andrew Lewman add the new samwhited mirro...

Andrew Lewman authored 11 years ago

768)             hiddenServiceMirror => "",
Andrew Lewman add a mirror in France, upd...

Andrew Lewman authored 11 years ago

769)      },
770)         mirror069 => {
771)             adminContact => "",
772)             orgName => "",
773)             isoCC => "FR",
774)             subRegion => "",
775)             region => "FR",
776)             ipv4 => "True",
777)             ipv6 => "False",
778)             loadBalanced => "No",
779)             httpWebsiteMirror => "http://tor.mirror.chekanov.net/",
780)             httpsWebsiteMirror => "",
781)             rsyncWebsiteMirror => "",
782)             ftpWebsiteMirror => "",
783)             httpDistMirror => "http://tor.mirror.chekanov.net/dist/",
784)             httpsDistMirror => "",
785)             rsyncDistMirror => "",
Andrew Lewman add mirror number 50, updat...

Andrew Lewman authored 11 years ago

786)             hiddenServiceMirror => "",
Andrew Lewman add two new mirrors. refres...

Andrew Lewman authored 11 years ago

787)     },
788)         mirror072 => {
789)             adminContact => "",
790)             orgName => "",
791)             isoCC => "US",
792)             subRegion => "",
793)             region => "US",
794)             ipv4 => "True",
795)             ipv6 => "False",
796)             loadBalanced => "No",
797)             httpWebsiteMirror => "http://tor.minibofh.org/",
798)             httpsWebsiteMirror => "",
799)             rsyncWebsiteMirror => "",
800)             ftpWebsiteMirror => "",
801)             httpDistMirror => "http://tor.minibofh.org/dist/",
802)             httpsDistMirror => "",
803)             rsyncDistMirror => "",
804)             hiddenServiceMirror => "",
805)     },
806)         mirror073 => {
807)             adminContact => "",
808)             orgName => "",
809)             isoCC => "UA",
810)             subRegion => "",
811)             region => "UA",
812)             ipv4 => "True",
813)             ipv6 => "False",
814)             loadBalanced => "No",
815)             httpWebsiteMirror => "http://torua.reactor-xg.kiev.ua/",
816)             httpsWebsiteMirror => "",
817)             rsyncWebsiteMirror => "",
818)             ftpWebsiteMirror => "",
819)             httpDistMirror => "http://torua.reactor-xg.kiev.ua/dist/",
820)             httpsDistMirror => "",
821)             rsyncDistMirror => "",
Andrew Lewman add FoDT mirror and update...

Andrew Lewman authored 11 years ago

822)             hiddenServiceMirror => "",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 11 years ago

823)     },
824)         mirror075 => {
825)             adminContact => "",
Andrew Lewman update me0w and overall mir...

Andrew Lewman authored 11 years ago

826)             orgName => "me0w.cc",
827)             isoCC => "RO",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 11 years ago

828)             subRegion => "",
Andrew Lewman update me0w and overall mir...

Andrew Lewman authored 11 years ago

829)             region => "RO",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 11 years ago

830)             ipv4 => "True",
831)             ipv6 => "False",
832)             loadBalanced => "No",
833)             httpWebsiteMirror => "http://tor.me0w.cc/",
834)             httpsWebsiteMirror => "",
835)             rsyncWebsiteMirror => "",
836)             ftpWebsiteMirror => "",
837)             httpDistMirror => "http://tor.me0w.cc/dist/",
838)             httpsDistMirror => "",
839)             rsyncDistMirror => "",
Andrew Lewman update mirror status.

Andrew Lewman authored 11 years ago

840)             hiddenServiceMirror => "",
841)     },
842)         mirror076 => {
843)             adminContact => "",
844)             orgName => "",
845)             isoCC => "US",
846)             subRegion => "",
847)             region => "US",
848)             ipv4 => "True",
849)             ipv6 => "False",
850)             loadBalanced => "No",
851)             httpWebsiteMirror => "http://mirror.nametoday.me/tor/",
852)             httpsWebsiteMirror => "",
853)             rsyncWebsiteMirror => "",
854)             ftpWebsiteMirror => "",
855)             httpDistMirror => "http://mirror.nametoday.me/tor/dist/",
856)             httpsDistMirror => "",
857)             rsyncDistMirror => "",
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

858)             hiddenServiceMirror => "",
Andrew Lewman update mirrors.

Andrew Lewman authored 11 years ago

859)         },
860)         mirror077 => {
861)             adminContact => "",
862)             orgName => "",
863)             isoCC => "UK",
864)             subRegion => "",
865)             region => "UK",
866)             ipv4 => "True",
867)             ipv6 => "False",
868)             loadBalanced => "No",
869)             httpWebsiteMirror => "http://tor.mage.me.uk/",
870)             httpsWebsiteMirror => "",
871)             rsyncWebsiteMirror => "",
872)             ftpWebsiteMirror => "",
873)             httpDistMirror => "http://tor.mage.me.uk/dist/",
874)             httpsDistMirror => "",
875)             rsyncDistMirror => "",
Andrew Lewman add a new mirror.

Andrew Lewman authored 11 years ago

876)             hiddenServiceMirror => "",
877)     },
878)         mirror078 => {
879)             adminContact => "",
880)             orgName => "",
881)             isoCC => "CH",
882)             subRegion => "",
883)             region => "CH",
884)             ipv4 => "True",
885)             ipv6 => "False",
886)             loadBalanced => "No",
887)             httpWebsiteMirror => "http://torproject.pillo-srv.ch/",
888)             httpsWebsiteMirror => "https://torproject.pillo-srv.ch/",
889)             rsyncWebsiteMirror => "",
890)             ftpWebsiteMirror => "",
891)             httpDistMirror => "http://torproject.pillo-srv.ch/dist/",
892)             httpsDistMirror => "https://torproject.pillo-srv.ch/dist/",
893)             rsyncDistMirror => "",
Andrew Lewman update the list of mirrors.

Andrew Lewman authored 11 years ago

894)             hiddenServiceMirror => "",
895)     },
896)         mirror079 => {
897)             adminContact => "",
898)             orgName => "",
899)             isoCC => "LU",
900)             subRegion => "",
901)             region => "LU",
902)             ipv4 => "True",
903)             ipv6 => "False",
904)             loadBalanced => "No",
905)             httpWebsiteMirror => "http://torproject.adamas.ai/",
906)             httpsWebsiteMirror => "",
907)             rsyncWebsiteMirror => "",
908)             ftpWebsiteMirror => "",
909)             httpDistMirror => "http://torproject.adamas.ai/dist/",
910)             httpsDistMirror => "",
911)             rsyncDistMirror => "",
912)             hiddenServiceMirror => "",
913)     },
914)         mirror080 => {
915)             adminContact => "",
916)             orgName => "",
917)             isoCC => "FR",
918)             subRegion => "",
919)             region => "FR",
920)             ipv4 => "True",
921)             ipv6 => "False",
922)             loadBalanced => "No",
923)             httpWebsiteMirror => "http://torproject.c3l.lu/",
924)             httpsWebsiteMirror => "",
925)             rsyncWebsiteMirror => "",
926)             ftpWebsiteMirror => "",
927)             httpDistMirror => "http://torproject.c3l.lu/dist/",
928)             httpsDistMirror => "",
929)             rsyncDistMirror => "",
Andrew Lewman add tor.li mirror.

Andrew Lewman authored 11 years ago

930)             hiddenServiceMirror => "",
931)     },
932)         mirror081 => {
933)             adminContact => "",
934)             orgName => "",
935)             isoCC => "EE",
936)             subRegion => "",
937)             region => "EE",
938)             ipv4 => "True",
939)             ipv6 => "False",
940)             loadBalanced => "No",
941)             httpWebsiteMirror => "http://tor.li/",
Andrew Lewman update the tor.li mirror

Andrew Lewman authored 11 years ago

942)             httpsWebsiteMirror => "https://tor.li/",
Andrew Lewman add tor.li mirror.

Andrew Lewman authored 11 years ago

943)             rsyncWebsiteMirror => "",
944)             ftpWebsiteMirror => "",
Andrew Lewman update the tor.li mirror

Andrew Lewman authored 11 years ago

945)             httpDistMirror => "http://tor.li/dist/",
946)             httpsDistMirror => "https://tor.li/dist/",
Andrew Lewman add tor.li mirror.

Andrew Lewman authored 11 years ago

947)             rsyncDistMirror => "",
Andrew Lewman add nametoday.me mirror.

Andrew Lewman authored 11 years ago

948)             hiddenServiceMirror => "",
949)     },
950)         mirror082 => {
951)             adminContact => "",
952)             orgName => "",
953)             isoCC => "US",
954)             subRegion => "",
955)             region => "US",
956)             ipv4 => "True",
957)             ipv6 => "True",
958)             loadBalanced => "No",
959)             httpWebsiteMirror => "http://mirror.nametoday.me/tor/",
960)             httpsWebsiteMirror => "",
961)             rsyncWebsiteMirror => "",
962)             ftpWebsiteMirror => "",
963)             httpDistMirror => "http://mirror.nametoday.me/tor/dist/",
964)             httpsDistMirror => "",
965)             rsyncDistMirror => "",
Andrew Lewman add vieth-server mirror.

Andrew Lewman authored 11 years ago

966)             hiddenServiceMirror => "",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

967)     },
968)         mirror085 => {
969)             adminContact => "",
Andrew Lewman update mirror table, fix cr...

Andrew Lewman authored 11 years ago

970)             orgName => "Soviet Anonymous",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

971)             isoCC => "RU",
972)             subRegion => "",
973)             region => "RU",
974)             ipv4 => "True",
975)             ipv6 => "False",
976)             loadBalanced => "No",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

977)             httpWebsiteMirror => "http://creep.im/tor",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

978)             httpsWebsiteMirror => "https://creep.im/tor",
Andrew Lewman update creep.im and mirror...

Andrew Lewman authored 10 years ago

979)             rsyncWebsiteMirror => "rsync://creep.im/tor",
980)             ftpWebsiteMirror => "ftp://creep.im/mirrors/tor",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

981)             httpDistMirror => "http://creep.im/tor/dist/",
Andrew Lewman update mirror table, fix cr...

Andrew Lewman authored 11 years ago

982)             httpsDistMirror => "https://creep.im/tor/dist/",
Andrew Lewman update creep.im and mirror...

Andrew Lewman authored 10 years ago

983)             rsyncDistMirror => "rsync://creep.im/tor-dist",
Andrew Lewman add an ipv4 mirror.

Andrew Lewman authored 11 years ago

984)             hiddenServiceMirror => "",
985)     },
986)         mirror086 => {
987)             adminContact => "",
988)             orgName => "",
989)             isoCC => "US",
990)             subRegion => "",
991)             region => "US",
992)             ipv4 => "True",
993)             ipv6 => "False",
994)             loadBalanced => "No",
995)             httpWebsiteMirror => "http://199.175.55.215/",
996)             httpsWebsiteMirror => "",
997)             rsyncWebsiteMirror => "",
998)             ftpWebsiteMirror => "",
999)             httpDistMirror => "http://199.175.55.215/dist/",
1000)             httpsDistMirror => "",
1001)             rsyncDistMirror => "",
Andrew Lewman add new mirror in germany,...

Andrew Lewman authored 11 years ago

1002)             hiddenServiceMirror => "",
1003)     },
1004)         mirror087 => {
1005)             adminContact => "",
1006)             orgName => "",
1007)             isoCC => "DE",
1008)             subRegion => "",
1009)             region => "DE",
1010)             ipv4 => "True",
1011)             ipv6 => "False",
1012)             loadBalanced => "No",
1013)             httpWebsiteMirror => "http://tor.linuxlounge.net/",
1014)             httpsWebsiteMirror => "https://tor.linuxlounge.net/",
1015)             rsyncWebsiteMirror => "",
1016)             ftpWebsiteMirror => "",
1017)             httpDistMirror => "http://tor.linuxlounge.net/dist/",
1018)             httpsDistMirror => "https://tor.linuxlounge.net/dist/",
1019)             rsyncDistMirror => "",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

1020)             hiddenServiceMirror => "",
Andrew Lewman update mirror status, add a...

Andrew Lewman authored 11 years ago

1021)     },
1022)         mirror088 => {
1023)             adminContact => "",
1024)             orgName => "",
1025)             isoCC => "US",
1026)             subRegion => "",
1027)             region => "US",
1028)             ipv4 => "True",
1029)             ipv6 => "False",
1030)             loadBalanced => "No",
1031)             httpWebsiteMirror => "",
1032)             httpsWebsiteMirror => "",
1033)             rsyncWebsiteMirror => "",
Andrew Lewman update go-part to the plural.

Andrew Lewman authored 10 years ago

1034)             ftpWebsiteMirror => "ftp://mirrors.go-parts.com/tor/",
1035)             httpDistMirror => "http://mirrors.go-parts.com/tor/dist/",
Andrew Lewman update mirror status, add a...

Andrew Lewman authored 11 years ago

1036)             httpsDistMirror => "",
Andrew Lewman update go-part to the plural.

Andrew Lewman authored 10 years ago

1037)             rsyncDistMirror => "rsync://mirrors.go-parts.com/mirrors/tor/",
Andrew Lewman update mirror status, add a...

Andrew Lewman authored 11 years ago

1038)             hiddenServiceMirror => "",
Andrew Lewman update mirrors table with n...

Andrew Lewman authored 11 years ago

1039)     },
1040)         mirror089 => {
1041)             adminContact => "",
1042)             orgName => "",
1043)             isoCC => "US",
1044)             subRegion => "",
1045)             region => "US",
1046)             ipv4 => "True",
1047)             ipv6 => "False",
1048)             loadBalanced => "No",
1049)             httpWebsiteMirror => "",
1050)             httpsWebsiteMirror => "",
1051)             rsyncWebsiteMirror => "",
1052)             ftpWebsiteMirror => "",
1053)             httpDistMirror => "http://www.netgull.com/torproject/",
1054)             httpsDistMirror => "",
1055)             rsyncDistMirror => "",
Andrew Lewman add new mirror, update mirr...

Andrew Lewman authored 10 years ago

1056)             hiddenServiceMirror => "",
1057)     },
1058)         mirror090 => {
1059)             adminContact => "",
1060)             orgName => "",
1061)             isoCC => "US",
1062)             subRegion => "",
1063)             region => "US",
1064)             ipv4 => "True",
1065)             ipv6 => "False",
1066)             loadBalanced => "No",
1067)             httpWebsiteMirror => "http://torproject.guilhem.org/",
1068)             httpsWebsiteMirror => "https://torproject.guilhem.org/",
1069)             rsyncWebsiteMirror => "",
1070)             ftpWebsiteMirror => "",
1071)             httpDistMirror => "http://torproject.guilhem.org/dist/",
1072)             httpsDistMirror => "https://torproject.guilhem.org/dist/",
1073)             rsyncDistMirror => "",
Andrew Lewman add new mirror in mexico.

Andrew Lewman authored 10 years ago

1074)             hiddenServiceMirror => "",
1075)     },
1076)         mirror091 => {
1077)             adminContact => "",
1078)             orgName => "",
1079)             isoCC => "MX",
1080)             subRegion => "",
1081)             region => "MX",
1082)             ipv4 => "True",
1083)             ipv6 => "False",
1084)             loadBalanced => "No",
1085)             httpWebsiteMirror => "http://fbnaia.homelinux.net/torproject/",
1086)             httpsWebsiteMirror => "https://fbnaia.homelinux.net/torproject/",
1087)             rsyncWebsiteMirror => "",
1088)             ftpWebsiteMirror => "",
1089)             httpDistMirror => "http://fbnaia.homelinux.net/torproject/dist/",
1090)             httpsDistMirror => "https://fbnaia.homelinux.net/torproject//dist/",
1091)             rsyncDistMirror => "",
Andrew Lewman update mirrors table with n...

Andrew Lewman authored 11 years ago

1092)             hiddenServiceMirror => "",
Andrew Lewman add https dist mirror and u...

Andrew Lewman authored 10 years ago

1093)     },
1094) 	mirror092 => {
1095) 	    adminContact => "hackthissite.org",
1096) 	    orgName => "HackThisSite.org",
1097) 	    isoCC => "US",
1098) 	    subRegion => "",
1099) 	    region => "US",
1100) 	    ipv4 => "True",
1101) 	    ipv6 => "True",
1102) 	    loadBalanced => "No",
1103) 	    httpWebsiteMirror => "http://tor.hackthissite.org/",
1104) 	    httpsWebsiteMirror => "https://tor.hackthissite.org/",
1105) 	    rsyncWebsiteMirror => "",
1106) 	    ftpWebsiteMirror => "",
1107) 	    httpDistMirror => "http://mirror.hackthissite.org/tor",
1108) 	    httpsDistMirror => "https://mirror.hackthissite.org/tor",
1109) 	    rsyncDistMirror => "",
1110) 	    hiddenServiceMirror => ""
1111)     },
1112) 	mirror093 => {
Andrew Lewman add norwegian mirror.

Andrew Lewman authored 10 years ago

1113) 	  adminContact => "http://sebastian.pfeifer.or.at/",
1114) 	  orgName => "TechAsk.IT",
1115) 	  isoCC => "AT",
1116) 	  subRegion => "Favoriten",
1117) 	  region => "Wien",
1118) 	  ipv4 => "True",
1119) 	  ipv6 => "True",
1120) 	  loadBalanced => "No",
1121) 	  httpWebsiteMirror => "http://www.unicorncloud.org/public/torproject.org/",
1122) 	  httpsWebsiteMirror => "https://www.unicorncloud.org/public/torproject.org/",
1123) 	  rsyncWebsiteMirror => "",
1124) 	  ftpWebsiteMirror => "",
1125) 	  httpDistMirror => "http://www.unicorncloud.org/public/torproject.org/dist",
1126) 	  httpsDistMirror => "https://www.unicorncloud.org/public/torproject.org/dist",
1127) 	  rsyncDistMirror => "",
1128) 	  hiddenServiceMirror => ""
1129)     },
1130)       mirror094 => {
1131) 	adminContact =>"http://www.multinet.no",
1132) 	orgName => "MultiNet AS",
1133) 	isoCC => "NO",
1134) 	subRegion => "Trondheim",
1135) 	region => "Trondheim",
Andrew Lewman add https dist mirror and u...

Andrew Lewman authored 10 years ago

1136) 	ipv4 => "True",
1137) 	ipv6 => "True",
1138) 	loadBalanced => "No",
Andrew Lewman add norwegian mirror.

Andrew Lewman authored 10 years ago

1139) 	httpWebsiteMirror =>"http://tor.multinet.no/",
1140) 	httpsWebsiteMirror => "",
Andrew Lewman add https dist mirror and u...

Andrew Lewman authored 10 years ago

1141) 	rsyncWebsiteMirror => "",
1142) 	ftpWebsiteMirror => "",
Andrew Lewman add norwegian mirror.

Andrew Lewman authored 10 years ago

1143) 	httpDistMirror =>"http://tor.multinet.no/dist/",
1144) 	httpsDistMirror => "",
Andrew Lewman add https dist mirror and u...

Andrew Lewman authored 10 years ago

1145) 	rsyncDistMirror => "",
1146) 	hiddenServiceMirror => ""
Andrew Lewman add mirror 095 in France.

Andrew Lewman authored 10 years ago

1147)     },
1148)       mirror095 => {
Andrew Lewman update mirrors table, and f...

Andrew Lewman authored 10 years ago

1149) 	adminContact => "mirror-admin\@linsrv.net",
Andrew Lewman add mirror 095 in France.

Andrew Lewman authored 10 years ago

1150) 	orgName => "linsrv",
1151) 	isoCC => "FR",
1152) 	subRegion => "France",
1153) 	region => "Europe",
1154) 	ipv4 => "True",
1155) 	ipv6 => "False",
1156) 	loadBalanced => "No",
1157) 	httpWebsiteMirror => "http://mirrors.linsrv.net/torproject/",
1158) 	httpsWebsiteMirror => "",
1159) 	rsyncWebsiteMirror => "mirrors.linsrv.net::pub/torproject",
1160) 	ftpWebsiteMirror => "ftp://ftp.linsrv.net/pub/torproject/",
1161) 	httpDistMirror => "http://mirrors.linsrv.net/torproject/dist/",
1162) 	httpsDistMirror => "",
1163) 	rsyncDistMirror => "mirrors.linsrv.net::pub/torproject/dist",
1164) 	hiddenServiceMirror => ""
Andrew Lewman add a new mirror

Andrew Lewman authored 10 years ago

1165)     },
1166)       mirror097 => {
1167) 	adminContact => "marz.michael at gmail.com",
1168) 	orgName => "",
1169) 	isoCC => "DE",
1170) 	subRegion => "",
1171) 	region => "",
1172) 	ipv4 => "True",
1173) 	ipv6 => "False",
1174) 	loadBalanced => "No",
1175) 	httpWebsiteMirror => "http://tor.taskserver.de/",
1176) 	httpsWebsiteMirror => "",
1177) 	rsyncWebsiteMirror => "",
1178) 	ftpWebsiteMirror => "",
Andrew Lewman remove torproject.us update...

Andrew Lewman authored 10 years ago

1179) 	httpDistMirror => "http://tor.taskserver.de/dist/",
Andrew Lewman add a new mirror

Andrew Lewman authored 10 years ago

1180) 	httpsDistMirror => "",
1181) 	rsyncDistMirror => "",
Andrew Lewman add another mirror in France.

Andrew Lewman authored 10 years ago

1182) 	hiddenServiceMirror => ""
1183)     },
1184)       mirror098 => {
1185) 	adminContact => "",
1186) 	orgName => "",
1187) 	isoCC => "FR",
1188) 	subRegion => "",
1189) 	region => "",
1190) 	ipv4 => "True",
1191) 	ipv6 => "False",
1192) 	loadBalanced => "No",
1193) 	httpWebsiteMirror => "http://37.187.0.127/tormirror/",
1194) 	httpsWebsiteMirror => "",
1195) 	rsyncWebsiteMirror => "",
1196) 	ftpWebsiteMirror => "",
1197) 	httpDistMirror => "http://37.187.0.127/tormirror/dist/",
1198) 	httpsDistMirror => "",
1199) 	rsyncDistMirror => "",
Andrew Lewman add mirror096 and update th...

Andrew Lewman authored 10 years ago

1200) 	hiddenServiceMirror => ""
Andrew Lewman add new mirror in APNIC ter...

Andrew Lewman authored 10 years ago

1201)     },
1202)       mirror099 => {
1203) 	adminContact => "paul at coffswifi.net",
1204) 	orgName => "CoffsWiFi",
1205) 	isoCC => "AU",
1206) 	subRegion => "Australia and New Zealand",
1207) 	region => "APNIC",
1208) 	ipv4 => "True",
1209) 	ipv6 => "False",
1210) 	loadBalanced => "No",
1211) 	httpWebsiteMirror => "http://torproject.coffswifi.net",
1212) 	httpsWebsiteMirror => "",
1213) 	rsyncWebsiteMirror => "",
1214) 	ftpWebsiteMirror => "",
1215) 	httpDistMirror => "http://torproject.coffswifi.net/dist",
1216) 	httpsDistMirror => "",
1217) 	rsyncDistMirror => "",
1218) 	hiddenServiceMirror => ""
Andrew Lewman add new mirror in germany.

Andrew Lewman authored 10 years ago

1219)     },
1220)       mirror100 => {
Andrew Lewman update mirror and the table.

Andrew Lewman authored 10 years ago

1221) 	adminContact => "nsane2307 eml cc",
1222) 	orgName => "tor-mirror.de",
1223) 	isoCC => "DE",
1224) 	subRegion => "Germany",
1225) 	region => "Europe",
1226) 	ipv4 => "True",
1227) 	ipv6 => "False",
1228) 	loadBalanced => "No",
1229) 	httpWebsiteMirror => "http://tor-mirror.de/",
Andrew Lewman add https to nsane's mirror...

Andrew Lewman authored 10 years ago

1230) 	httpsWebsiteMirror => "https://tor-mirror.de/",
Andrew Lewman update mirror and the table.

Andrew Lewman authored 10 years ago

1231) 	rsyncWebsiteMirror => "",
1232) 	ftpWebsiteMirror => "",
1233) 	httpDistMirror => "http://tor-mirror.de/dist/",
Andrew Lewman add https to nsane's mirror...

Andrew Lewman authored 10 years ago

1234) 	httpsDistMirror => "https://tor-mirror.de/dist/",
Andrew Lewman update mirror and the table.

Andrew Lewman authored 10 years ago

1235) 	rsyncDistMirror => "",
1236) 	hiddenServiceMirror => ""
Andrew Lewman add torproject.lu.

Andrew Lewman authored 10 years ago

1237)     },
1238)     mirror101 => {
1239)       adminContact => "info /AT\ enn /DOT\ lu",
1240)       orgName => "Frenn vun der Enn A.S.B.L.",
1241)       isoCC => "IS",
1242)       subRegion => "Iceland",
1243)       region => "Europe",
1244)       ipv4 => "True",
1245)       ipv6 => "False",
1246)       loadBalanced => "No",
1247)       httpWebsiteMirror => "http://torproject.lu/",
1248)       httpsWebsiteMirror => "",
1249)       rsyncWebsiteMirror => "",
1250)       ftpWebsiteMirror => "",
1251)       httpDistMirror => "http://torproject.lu/dist/",
1252)       httpsDistMirror => "",
1253)       rsyncDistMirror => "",
1254)       hiddenServiceMirror => "http://btn6gqzqevlhoryd.onion"
Andrew Lewman add a new mirror.

Andrew Lewman authored 10 years ago

1255)     },
1256)     mirror102 => {
1257)       adminContact => "neutrino8 AT gmail DOT com",
1258)       orgName => "teambelgium",
1259)       isoCC => "BE",
1260)       subRegion => "Belgium",
1261)       region => "Europe",
1262)       ipv4 => "True",
Andrew Lewman update mirrors table, add m...

Andrew Lewman authored 10 years ago

1263)       ipv6 => "False",
Andrew Lewman add a new mirror.

Andrew Lewman authored 10 years ago

1264)       loadBalanced => "No",
1265)       httpWebsiteMirror => "http://tor.teambelgium.net:8082/",
1266)       httpsWebsiteMirror => "",
1267)       rsyncWebsiteMirror => "",
1268)       ftpWebsiteMirror => "ftp://tor.teambelgium.net:2121/torproject/",
1269)       httpDistMirror => "http://tor.teambelgium.net:8082/dist/",
1270)       httpsDistMirror => "",
1271)       rsyncDistMirror => "",
Andrew Lewman add a new mirror, update an...

Andrew Lewman authored 10 years ago

1272)       hiddenServiceMirror => ""
1273)     },
Andrew Lewman add two new mirrors, update...

Andrew Lewman authored 10 years ago

1274)     mirror103 => {
Andrew Lewman add a new mirror, update an...

Andrew Lewman authored 10 years ago

1275)       adminContact => "mirror ntzk de",
1276)       orgName => "Netzkonstrukt Berlin",
1277)       isoCC => "DE",
1278)       subRegion => "Germany",
1279)       region => "Europe",
1280)       ipv4 => "True",
1281)       ipv6 => "False",
1282)       loadBalanced => "No",
1283)       httpWebsiteMirror => "http://mirror.ntzk.de/torproject.org/",
1284)       httpsWebsiteMirror => "",
1285)       rsyncWebsiteMirror => "",
1286)       ftpWebsiteMirror => "",
1287)       httpDistMirror => "http://mirror.ntzk.de/torproject.org/dist/",
1288)       httpsDistMirror => "",
1289)       rsyncDistMirror => "",
1290)       hiddenServiceMirror => ""
1291)     },
Andrew Lewman add two new mirrors, update...

Andrew Lewman authored 10 years ago

1292)     mirror104 => {
Andrew Lewman add a new mirror, update an...

Andrew Lewman authored 10 years ago

1293)       adminContact => "webmaster AT bbln DOT nl",
1294)       orgName => "BBLN",
1295)       isoCC => "NL",
1296)       subRegion => "The Netherlands",
1297)       region => "Europe",
1298)       ipv4 => "True",
1299)       ipv6 => "True",
1300)       loadBalanced => "No",
1301)       httpWebsiteMirror => "http://t02.nl/mirror/",
1302)       httpsWebsiteMirror => "",
1303)       rsyncWebsiteMirror => "",
1304)       ftpWebsiteMirror => "",
1305)       httpDistMirror => "http://t02.nl/mirror/dist/",
1306)       httpsDistMirror => "",
1307)       rsyncDistMirror => "",
Andrew Lewman add a new mirror.

Andrew Lewman authored 10 years ago

1308)       hiddenServiceMirror => ""
Andrew Lewman add two new mirrors, update...

Andrew Lewman authored 10 years ago

1309)     },
1310)     mirror105 => {
1311)       adminContact => "wollomatic at posteo.eu",
1312)       orgName => "",
1313)       isoCC => "DE",
1314)       subRegion => "Germany",
1315)       region => "Europe",
1316)       ipv4 => "True",
1317)       ipv6 => "True",
1318)       loadBalanced => "No",
1319)       httpWebsiteMirror => "http://tormirror.almnet.de/",
1320)       httpsWebsiteMirror => "https://tormirror.almnet.de/",
1321)       rsyncWebsiteMirror => "",
1322)       ftpWebsiteMirror => "",
1323)       httpDistMirror => "http://tormirror.almnet.de/dist/",
1324)       httpsDistMirror => "https://tormirror.almnet.de/dist/",
1325)       rsyncDistMirror => "",
1326)       hiddenServiceMirror => ""
1327)     },
1328)     mirror106 => { 
1329)       adminContact => "haskell at gmx.es", 
1330)       orgName => "", 
1331)       isoCC => "ES",
1332)       subRegion => "Spain",
1333)       region => "Europe",
1334)       ipv4 => "True",
1335)       ipv6 => "False",
1336)       loadBalanced => "No",
1337)       httpWebsiteMirror => "http://tor.zilog.es/",
1338)       httpsWebsiteMirror => "",
1339)       rsyncWebsiteMirror => "",
1340)       ftpWebsiteMirror => "",
1341)       httpDistMirror => "http://tor.zilog.es/dist/",
1342)       httpsDistMirror => "",
1343)       rsyncDistMirror => "",
1344)       hiddenServiceMirror => ""
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

1345)     }
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

1346) );
1347) 
1348) my $count = values %m;
1349) print "We have a total of $count mirrors\n";
1350) print "Fetching the last updated date for each mirror.\n";
1351) 
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

1352) my $tortime;
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

1353) $tortime = FetchDate("https://www.torproject.org/");
Andrew Lewman update mirrors.

Andrew Lewman authored 11 years ago

1354) # Adjust offical Tor time by out-of-date offset: number of days * seconds per day
1355) $tortime -= 1 * 172800;
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

1356) print "The official time for Tor is $tortime. \n";
1357) 
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

1358) foreach my $server ( keys %m ) {
1359) 
1360)     print "Attempting to fetch from $m{$server}{'orgName'}\n";
1361) 
1362)     if ($m{$server}{'httpWebsiteMirror'}) {
1363)         print "Attempt to fetch via HTTP.\n";
1364)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpWebsiteMirror'}");
1365)     } elsif ($m{$server}{'httpsWebsiteMirror'}) {
1366)         print "Attempt to fetch via HTTPS.\n";
1367)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpsWebsiteMirror'}");
1368)     } elsif ($m{$server}{'ftpWebsiteMirror'}) {
1369)         print "Attempt to fetch via FTP.\n";
1370)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'ftpWebsiteMirror'}");
1371)     } else {
1372)         print "We were unable to fetch or store anything. We still have the following: $m{$server}{'updateDate'}\n";
1373)     }
1374) 
1375)     print "We fetched and stored the following: $m{$server}{'updateDate'}\n";
1376) 
1377)  }
1378) 
1379) 
1380) print "We sorted the following mirrors by their date of last update: \n";
1381) foreach my $server ( sort { $m{$b}{'updateDate'} <=> $m{$a}{'updateDate'}} keys %m ) {
1382) 
1383)      print "\n";
1384)      print "Mirror $m{$server}{'orgName'}: \n";
1385) 
1386)      foreach my $attrib ( sort keys %{$m{$server}} ) {
1387)         print "$attrib = $m{$server}{$attrib}";
1388)         print "\n";
1389)      };
1390) }
1391) 
1392) my $outFile = "include/mirrors-table.wmi";
1393) my $html;
1394) open(OUT, "> $outFile") or die "Can't open $outFile: $!";
1395) 
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

1396) # Here's where we open a file and print some wml include goodness
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

1397) # This is storted from last known recent update to unknown update times
1398) foreach my $server ( sort { $m{$b}{'updateDate'} <=> $m{$a}{'updateDate'}} keys %m ) {
1399) 
Jacob Appelbaum ensure the date is either p...

Jacob Appelbaum authored 15 years ago

1400)      my $time;
Andrew Lewman timeout should be 15, fix s...

Andrew Lewman authored 15 years ago

1401)      if ( "$m{$server}{'updateDate'}" ne "Unknown") {
Jon@svn.torproject.org Some code donations. Thank...

Jon@svn.torproject.org authored 14 years ago

1402) 	  if ( $m{$server}{'updateDate'} > $tortime ) {
Andrew Lewman fix code spacing to avoid t...

Andrew Lewman authored 15 years ago

1403) 	    $time = "Up to date";
Andrew Lewman unicorns found by creep.im...

Andrew Lewman authored 10 years ago

1404) 	  } else { $time = "DO NOT USE. Out of date."; }
Andrew Lewman revert the last change to u...

Andrew Lewman authored 15 years ago

1405)      } else { $time = "Unknown"; }
Jacob Appelbaum Removed dupe mirror entry,...

Jacob Appelbaum authored 15 years ago

1406) print OUT <<"END";
1407)      \n<tr>\n
1408)          <td>$m{$server}{'isoCC'}</td>\n
1409)          <td>$m{$server}{'orgName'}</td>\n
1410)          <td>$time</td>\n
1411) END
1412) 
1413)      my %prettyNames = (
1414)                         httpWebsiteMirror => "http",
1415)                         httpsWebsiteMirror => "https",
1416)                         ftpWebsiteMirror => "ftp",
1417)                         rsyncWebsiteMirror => "rsync",
1418)                         httpDistMirror => "http",
1419)                         httpsDistMirror => "https",
Andrew Lewman unicorns found by creep.im...

Andrew Lewman authored 10 years ago

1420)                         rsyncDistMirror => "rsync", );
Jacob Appelbaum Removed dupe mirror entry,...

Jacob Appelbaum authored 15 years ago

1421) 
1422)      foreach my $precious ( sort keys %prettyNames )
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

1423)      {
1424)         if ($m{$server}{"$precious"}) {
1425)             print OUT "    <td><a href=\"" . $m{$server}{$precious} . "\">" .
Jacob Appelbaum Removed dupe mirror entry,...

Jacob Appelbaum authored 15 years ago

1426)                       "$prettyNames{$precious}</a></td>\n";