acba623fcc8767927a526da87b9e69f42742dc7d
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
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

44)     $url = "$url$trace";
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 add CoralCDN into the mix.

Andrew Lewman authored 13 years ago

85)         
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 => "",
102)             hiddenServiceMirror => "",
103)             updateDate => "Unknown",
104)         },
105) 
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

121)             rsyncDistMirror => "",
122)             hiddenServiceMirror => "",
123)             updateDate => "Unknown",
124)         },
125) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

137)             ftpWebsiteMirror => "",
138)             rsyncWebsiteMirror => "",
Andrew Lewman update bbs mirror

Andrew Lewman authored 13 years ago

139)             httpDistMirror => "http://tor.blingblingsquad.net/dist",
Andrew Lewman add in the self-signed ssl...

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

141)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

142)             updateDate => "Unknown",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

143)         },
144) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

145) 	    mirror006 => {
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

146)             adminContact => "BarkerJr AT barkerjr DOT net",
147)             orgName => "BarkerJr",
148)             isoCC => "US",
149)             subRegion => "",
150)             region => "US",
151)             ipv4 => "True",
152)             ipv6 => "False",
153)             loadBalanced => "No",
Andrew Lewman update mirrors.

Andrew Lewman authored 14 years ago

154)             httpWebsiteMirror => "http://www.torproject.us/",
155)             httpsWebsiteMirror => "https://www.torproject.us/",
Andrew Lewman add barkerjr's rsync mirrors.

Andrew Lewman authored 13 years ago

156)             rsyncWebsiteMirror => "rsync://rsync.torproject.us/tor",
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

157)             ftpWebsiteMirror => "",
Andrew Lewman update mirrors.

Andrew Lewman authored 14 years ago

158)             httpDistMirror => "http://www.torproject.us/dist/",
159)             httpsDistMirror => "https://www.torproject.us/dist/",
Andrew Lewman add barkerjr's rsync mirrors.

Andrew Lewman authored 13 years ago

160)             rsyncDistMirror => "rsync://rsync.torproject.us/tor/dist",
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

161)             hiddenServiceMirror => "",
162)             updateDate => "Unknown",
163)         },
164) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

168)             isoCC => "DK",
169)             subRegion => "",
170)             region => "Europe",
171)             ipv4 => "True",
172)             ipv6 => "False",
173)             loadBalanced => "Unknown",
Andrew Lewman update one mirror per request

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

178)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

179)             updateDate => "Unknown",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

180)         },
181) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

185)             isoCC => "NL",
186)             subRegion => "",
187)             region => "Europe",
188)             ipv4 => "True",
189)             ipv6 => "False",
190)             loadBalanced => "Unknown",
191)             httpWebsiteMirror => "http://tor.amorphis.eu/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

193)             ftpWebsiteMirror => "",
194)             httpDistMirror => "http://tor.amorphis.eu/dist/",
195)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

196)             updateDate => "Unknown",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

197)         },
198) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

199)        mirror009 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

200)             adminContact => "mirror AT bit DOT nl",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

201)             orgName => "BIT BV",
202)             isoCC => "NL",
203)             subRegion => "",
204)             region => "Europe",
205)             ipv4 => "True",
206)             ipv6 => "False",
207)             loadBalanced => "Unknown",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

208)             httpWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

210)             ftpWebsiteMirror => "ftp://ftp.bit.nl/mirror/tor/",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

211)             httpDistMirror => "http://ftp.bit.nl/mirror/tor/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

212)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

213)             updateDate => "Unknown",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

214)         },
215) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

218)             orgName => "CCC",
219)             isoCC => "NL",
220)             subRegion => "",
221)             region => "Europe",
222)             ipv4 => "True",
223)             ipv6 => "False",
224)             loadBalanced => "Unknown",
225)             httpWebsiteMirror => "http://tor.ccc.de/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

227)             ftpWebsiteMirror => "",
228)             httpDistMirror => "http://tor.ccc.de/dist/",
229)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

230)             updateDate => "Unknown",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

231)         },
232) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Andrew Lewman authored 12 years ago

236)             isoCC => "IS",
237)             subRegion => "",
238)             region => "Iceland",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

239)             ipv4 => "True",
240)             ipv6 => "False",
241)             loadBalanced => "Unknown",
Andrew Lewman update mirror status.

Andrew Lewman authored 12 years ago

242)             httpWebsiteMirror => "http://www.theonionrouter.com/",
243)             httpsWebsiteMirror => "https://www.theonionrouter.com/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

245)             ftpWebsiteMirror => "",
Andrew Lewman update mirror status.

Andrew Lewman authored 12 years ago

246)             httpDistMirror => "http://www.theonionrouter.com/dist/",
247)             httpsDistMirror => "https://www.theonionrouter.com/dist/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

248)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

249)             updateDate => "Unknown",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

253)             orgName => "Unknown",
254)             isoCC => "HU",
255)             subRegion => "Hungary",
256)             region => "Europe",
257)             ipv4 => "True",
258)             ipv6 => "False",
259)             loadBalanced => "No",
Andrew Lewman purge the dead mirrors that...

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 15 years ago

265)             httpsDistMirror => "",
266)             rsyncDistMirror => "",
267)             hiddenServiceMirror => "",
268)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

271)         mirror017 => {
Andrew Lewman Added mirror in the Ukraine.

Andrew Lewman authored 15 years ago

272)             adminContact => "",
Andrew Lewman Add the organization sponso...

Andrew Lewman authored 15 years ago

273)             orgName => "Technica-03",
Roger Dingledine fix a syntax error in our perl

Roger Dingledine authored 15 years ago

274)             isoCC => "UA",
Andrew Lewman Added mirror in the Ukraine.

Andrew Lewman authored 15 years ago

275)             subRegion => "Ukraine",
276)             region => "Eastern Europe",
277)             ipv4 => "True",
278)             ipv6 => "False",
279)             loadBalanced => "No",
280)             httpWebsiteMirror => "http://torua.reactor-xg.kiev.ua/",
281)             httpsWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

282)             rsyncWebsiteMirror => "",
Andrew Lewman Added mirror in the Ukraine.

Andrew Lewman authored 15 years ago

283)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Fix the breakages I created...

Jon@svn.torproject.org authored 14 years ago

284)             httpDistMirror => "http://tordistua.reactor-xg.kiev.ua/",
Andrew Lewman Added mirror in the Ukraine.

Andrew Lewman authored 15 years ago

285)             httpsDistMirror => "",
286)             rsyncDistMirror => "",
287)             hiddenServiceMirror => "",
288)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 15 years ago

292)             adminContact => "",
293)             orgName => "chaos darmstadt",
294)             isoCC => "DE",
295)             subRegion => "Germany",
296)             region => "Europe",
297)             ipv4 => "True",
298)             ipv6 => "False",
299)             loadBalanced => "No",
300)             httpWebsiteMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/",
301)             httpsWebsiteMirror => "",
302)             rsyncWebsiteMirror => "",
303)             ftpWebsiteMirror => "",
304)             httpDistMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/dist/",
305)             httpsDistMirror => "",
306)             rsyncDistMirror => "",
307)             hiddenServiceMirror => "",
308)             updateDate => "Unknown",
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

314)             isoCC => "US",
315)             subRegion => "California",
316)             region => "US",
317)             ipv4 => "True",
318)             ipv6 => "False",
319)             loadBalanced => "No",
320)             httpWebsiteMirror => "http://tor.askapache.com/",
321)             httpsWebsiteMirror => "",
322)             rsyncWebsiteMirror => "",
323)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Update AskApache - http://a...

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

325)             httpsDistMirror => "",
326)             rsyncDistMirror => "",
327)             hiddenServiceMirror => "",
328)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

337)             ipv4 => "True",
338)             ipv6 => "False",
339)             loadBalanced => "No",
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

347)             hiddenServiceMirror => "",
348)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

354)             isoCC => "IN",
355)             subRegion => "",
356)             region => "IN",
357)             ipv4 => "True",
358)             ipv6 => "False",
359)             loadBalanced => "No",
Jon@svn.torproject.org resolving inconsistancy

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

361)             httpsWebsiteMirror => "",
362)             rsyncWebsiteMirror => "",
363)             ftpWebsiteMirror => "",
364)             httpDistMirror => "http://www.torproject.org.in/dist/",
365)             httpsDistMirror => "",
366)             rsyncDistMirror => "",
367)             hiddenServiceMirror => "",
368)             updateDate => "Unknown",
369)         },
370) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

371)         mirror023 => {
Andrew Lewman and fix the rest of the org...

Andrew Lewman authored 13 years ago

372)             adminContact => "SiNA",
Andrew Lewman fix one org name.

Andrew Lewman authored 13 years ago

373)             orgName => "Ninjas",
Andrew Lewman add a mirror, update the ta...

Andrew Lewman authored 14 years ago

374)             isoCC => "IR",
375)             subRegion => "",
376)             region => "IR",
377)             ipv4 => "True",
378)             ipv6 => "False",
379)             loadBalanced => "Yes",
Andrew Lewman update the mirror list.

Andrew Lewman authored 12 years ago

380)             httpWebsiteMirror => "http://onion.anonymo.us.org/",
Andrew Lewman add a mirror, update the ta...

Andrew Lewman authored 14 years ago

381)             httpsWebsiteMirror => "",
382)             rsyncWebsiteMirror => "",
383)             ftpWebsiteMirror => "",
Andrew Lewman update the mirror list.

Andrew Lewman authored 12 years ago

384)             httpDistMirror => "http://onion.anonymo.us.org/dist/",
Andrew Lewman add a mirror, update the ta...

Andrew Lewman authored 14 years ago

385)             httpsDistMirror => "",
386)             rsyncDistMirror => "",
Andrew Lewman Add the latest mirror in ru...

Andrew Lewman authored 14 years ago

387)             hiddenServiceMirror => "",
388)         },
389) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

396)             ipv4 => "True",
397)             ipv6 => "False",
398)             loadBalanced => "No",
399)             httpWebsiteMirror => "http://tor.homosu.net/",
400)             httpsWebsiteMirror => "",
401)             rsyncWebsiteMirror => "",
402)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 14 years ago

404)             httpsDistMirror => "",
405)             rsyncDistMirror => "",
Andrew Lewman Add 1.5 of the estonian mir...

Andrew Lewman authored 13 years ago

406)             hiddenServiceMirror => "",
Andrew Lewman fix the stanza.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

413)             subRegion => "",
414)             region => "EE",
415)             ipv4 => "True",
416)             ipv6 => "False",
417)             loadBalanced => "No",
418)             httpWebsiteMirror => "http://cyberside.planet.ee/tor/",
419)             httpsWebsiteMirror => "",
420)             rsyncWebsiteMirror => "",
421)             ftpWebsiteMirror => "",
Andrew Lewman update the cyberside mirror

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

423)             httpsDistMirror => "",
424)             rsyncDistMirror => "",
Andrew Lewman add a mirror, update the ta...

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

427) 
Andrew Lewman add a new mirror

Andrew Lewman authored 13 years ago

428)         mirror028 => {
Andrew Lewman add new mirror

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

431)             isoCC => "US",
432)             subRegion => "WA",
433)             region => "US",
434)             ipv4 => "True",
435)             ipv6 => "False",
436)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

444)             hiddenServiceMirror => "",
445)         },
Andrew Lewman 5coluna is down.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

447)             adminContact => "",
448)             orgName => "LazyTiger",
449)             isoCC => "FR",
450)             subRegion => "",
451)             region => "FR",
452)             ipv4 => "True",
453)             ipv6 => "False",
454)             loadBalanced => "No",
455)             httpWebsiteMirror => "http://tor.taiga-san.net/",
456)             httpsWebsiteMirror => "",
457)             rsyncWebsiteMirror => "",
458)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

460)             httpsDistMirror => "",
461)             rsyncDistMirror => "",
Andrew Lewman Add the searchprivate mirror.

Andrew Lewman authored 13 years ago

462)             hiddenServiceMirror => "",
463)         },
Andrew Lewman 5coluna is down.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

465)             adminContact => "",
466)             orgName => "searchprivate",
467)             isoCC => "US",
468)             subRegion => "TX",
469)             region => "US",
470)             ipv4 => "True",
471)             ipv6 => "False",
472)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

474)             httpsWebsiteMirror => "",
475)             rsyncWebsiteMirror => "",
476)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

478)             httpsDistMirror => "",
479)             rsyncDistMirror => "",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

480)             hiddenServiceMirror => "",
481)         },
Andrew Lewman 5coluna is down.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

483)             adminContact => "",
484)             orgName => "cyberarmy",
485)             isoCC => "AT",
486)             subRegion => "",
487)             region => "AT",
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.cyberarmy.at/",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 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.cyberarmy.at/dist/",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

496)             httpsDistMirror => "",
497)             rsyncDistMirror => "",
498)             hiddenServiceMirror => "",
499)         },
500)         mirror032 => {
501)             adminContact => "",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

503)             isoCC => "IS",
504)             subRegion => "",
505)             region => "IS",
506)             ipv4 => "True",
507)             ipv6 => "False",
508)             loadBalanced => "No",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

510)             httpsWebsiteMirror => "",
511)             rsyncWebsiteMirror => "",
512)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

514)             httpsDistMirror => "",
515)             rsyncDistMirror => "",
Andrew Lewman add the tomyn mirror.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

517)         },
518)         mirror033 => {
519)             adminContact => "",
520)             orgName => "torservers",
521)             isoCC => "DE",
522)             subRegion => "",
523)             region => "DE",
524)             ipv4 => "True",
525)             ipv6 => "False",
526)             loadBalanced => "No",
527)             httpWebsiteMirror => "http://www.torservers.net/mirrors/torproject.org/",
528)             httpsWebsiteMirror => "https://www.torservers.net/mirrors/torproject.org/",
529)             rsyncWebsiteMirror => "",
530)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 12 years ago

536)         mirror036 => {
537)             adminContact => "",
538)             orgName => "",
539)             isoCC => "NL",
540)             subRegion => "",
541)             region => "NL",
542)             ipv4 => "True",
543)             ipv6 => "False",
544)             loadBalanced => "No",
545)             httpWebsiteMirror => "",
546)             httpsWebsiteMirror => "",
547)             rsyncWebsiteMirror => "",
548)             ftpWebsiteMirror => "",
549)             httpDistMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

551)             rsyncDistMirror => "",
552)             hiddenServiceMirror => "",
Andrew Lewman add commas in the right pla...

Andrew Lewman authored 12 years ago

553)       },
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

554)         mirror037 => {
555)             adminContact => "",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

556)             orgName => "crypto.is",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

557)             isoCC => "IS",
558)             subRegion => "",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

559)             region => "Iceland",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

560)             ipv4 => "True",
561)             ipv6 => "False",
562)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

563)             httpWebsiteMirror => "https://torproject.crypto.is/",
564)             httpsWebsiteMirror => "https://torproject.crypto.is/",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

565)             rsyncWebsiteMirror => "",
566)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

567)             httpDistMirror => "https://torproject.crypto.is/dist/",
568)             httpsDistMirror => "https://torproject.crypto.is/dist/",
Andrew Lewman update mirrors list and mir...

Andrew Lewman authored 12 years ago

569)             rsyncDistMirror => "",
570)             hiddenServiceMirror => "",
571)       },
572)         mirror038 => {
573)             adminContact => "",
574)             orgName => "",
575)             isoCC => "LT",
576)             subRegion => "",
577)             region => "LT",
578)             ipv4 => "True",
579)             ipv6 => "False",
580)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

582)             httpsWebsiteMirror => "",
583)             rsyncWebsiteMirror => "",
584)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

588)             hiddenServiceMirror => "",
589)       },
590)         mirror039 => {
591)             adminContact => "",
Andrew Lewman add an ftp mirror, update a...

Andrew Lewman authored 12 years ago

592)             orgName => "CCC-Hanau",
Andrew Lewman add tor-key-server mirror.

Andrew Lewman authored 12 years ago

593)             isoCC => "DE",
594)             subRegion => "",
595)             region => "DE",
596)             ipv4 => "True",
597)             ipv6 => "False",
598)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

599)             httpWebsiteMirror => "http://tor.key-server.org/",
600)             httpsWebsiteMirror => "https://tor.key-server.org/",
Andrew Lewman add tor-key-server mirror.

Andrew Lewman authored 12 years ago

601)             rsyncWebsiteMirror => "",
Andrew Lewman add an ftp mirror, update a...

Andrew Lewman authored 12 years ago

602)             ftpWebsiteMirror => "ftp://key-server.org/tor",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

603)             httpDistMirror => "http://tor.key-server.org/dist/",
604)             httpsDistMirror => "https://tor.key-server.org/dist/",
Andrew Lewman add tor-key-server mirror.

Andrew Lewman authored 12 years ago

605)             rsyncDistMirror => "",
Andrew Lewman add http://tor.freie-re.de...

Andrew Lewman authored 12 years ago

606)             hiddenServiceMirror => "",
607)       },
608)         mirror040 => {
609)             adminContact => "",
610)             orgName => "",
611)             isoCC => "DE",
612)             subRegion => "",
613)             region => "DE",
614)             ipv4 => "True",
615)             ipv6 => "False",
616)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

617)             httpWebsiteMirror => "http://tor.freie-re.de/",
Andrew Lewman add http://tor.freie-re.de...

Andrew Lewman authored 12 years ago

618)             httpsWebsiteMirror => "",
619)             rsyncWebsiteMirror => "",
620)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

621)             httpDistMirror => "http://tor.freie-re.de/dist/",
Andrew Lewman add http://tor.freie-re.de...

Andrew Lewman authored 12 years ago

622)             httpsDistMirror => "",
623)             rsyncDistMirror => "",
Andrew Lewman add http://mirror.host4site...

Andrew Lewman authored 12 years ago

624)             hiddenServiceMirror => "",
625)       },
626)         mirror041 => {
627)             adminContact => "",
Andrew Lewman add the org for Host4site

Andrew Lewman authored 12 years ago

628)             orgName => "Host4site",
Andrew Lewman add http://mirror.host4site...

Andrew Lewman authored 12 years ago

629)             isoCC => "IL",
630)             subRegion => "",
631)             region => "IL",
632)             ipv4 => "True",
633)             ipv6 => "False",
634)             loadBalanced => "No",
635)             httpWebsiteMirror => "http://mirror.host4site.co.il/torproject.org/",
636)             httpsWebsiteMirror => "",
637)             rsyncWebsiteMirror => "",
638)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

639)             httpDistMirror => "http://mirror.host4site.co.il/torproject.org/dist/",
Andrew Lewman add http://mirror.host4site...

Andrew Lewman authored 12 years ago

640)             httpsDistMirror => "",
641)             rsyncDistMirror => "",
Andrew Lewman add fodt.it mirror.

Andrew Lewman authored 12 years ago

642)             hiddenServiceMirror => "",
643)       },
644)         mirror042 => {
645)             adminContact => "",
Andrew Lewman add ftp mirror for fodt.it.

Andrew Lewman authored 12 years ago

646)             orgName => "FoDT.IT",
Andrew Lewman add fodt.it mirror.

Andrew Lewman authored 12 years ago

647)             isoCC => "AT",
648)             subRegion => "",
649)             region => "AT",
650)             ipv4 => "True",
651)             ipv6 => "False",
652)             loadBalanced => "No",
653)             httpWebsiteMirror => "http://tor.fodt.it/",
Andrew Lewman update the ssl version of f...

Andrew Lewman authored 12 years ago

654)             httpsWebsiteMirror => "https://tor.fodt.it/",
Andrew Lewman add fodt.it mirror.

Andrew Lewman authored 12 years ago

655)             rsyncWebsiteMirror => "",
Andrew Lewman add ftp mirror for fodt.it.

Andrew Lewman authored 12 years ago

656)             ftpWebsiteMirror => "ftp://ftp.fodt.it/pub/mirror/tor/",
Andrew Lewman add fodt.it mirror.

Andrew Lewman authored 12 years ago

657)             httpDistMirror => "http://tor.fodt.it/dist/",
Andrew Lewman update the ssl version of f...

Andrew Lewman authored 12 years ago

658)             httpsDistMirror => "https://tor.fodt.it/dist/",
Andrew Lewman add fodt.it mirror.

Andrew Lewman authored 12 years ago

659)             rsyncDistMirror => "",
Andrew Lewman add factor.cc mirror and up...

Andrew Lewman authored 12 years ago

660)             hiddenServiceMirror => "",
661)       },
662)         mirror043 => {
663)             adminContact => "",
664)             orgName => "factor.cc",
Andrew Lewman update factor.cc https mirr...

Andrew Lewman authored 12 years ago

665)             isoCC => "DE",
Andrew Lewman add factor.cc mirror and up...

Andrew Lewman authored 12 years ago

666)             subRegion => "",
Andrew Lewman update factor.cc https mirr...

Andrew Lewman authored 12 years ago

667)             region => "DE",
Andrew Lewman add factor.cc mirror and up...

Andrew Lewman authored 12 years ago

668)             ipv4 => "True",
669)             ipv6 => "False",
670)             loadBalanced => "No",
671)             httpWebsiteMirror => "http://tor.factor.cc/",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

672)             httpsWebsiteMirror => "https://factor.cc/tor/",
Andrew Lewman add factor.cc mirror and up...

Andrew Lewman authored 12 years ago

673)             rsyncWebsiteMirror => "",
674)             ftpWebsiteMirror => "",
675)             httpDistMirror => "http://tor.factor.cc/dist/",
Andrew Lewman update factor.cc https mirr...

Andrew Lewman authored 12 years ago

676)             httpsDistMirror => "https://factor.cc/tor/dist/",
Andrew Lewman add factor.cc mirror and up...

Andrew Lewman authored 12 years ago

677)             rsyncDistMirror => "",
Andrew Lewman update the mirrors table, a...

Andrew Lewman authored 12 years ago

678)             hiddenServiceMirror => "",
679)       },
680)         mirror044 => {
681)             adminContact => "",
682)             orgName => "",
683)             isoCC => "NL",
684)             subRegion => "",
685)             region => "NL",
686)             ipv4 => "True",
687)             ipv6 => "False",
688)             loadBalanced => "No",
689)             httpWebsiteMirror => "http://www.torproject.nl/",
690)             httpsWebsiteMirror => "https://www.torproject.nl/",
691)             rsyncWebsiteMirror => "",
692)             ftpWebsiteMirror => "",
693)             httpDistMirror => "http://www.torproject.nl/dist/",
694)             httpsDistMirror => "https://www.torproject.nl/dist/",
695)             rsyncDistMirror => "",
Andrew Lewman add Tunisian mirror, remove...

Andrew Lewman authored 12 years ago

696)             hiddenServiceMirror => "",
697)       },
698)         mirror045 => {
699)             adminContact => "",
700)             orgName => "",
701)             isoCC => "TN",
702)             subRegion => "",
703)             region => "TN",
704)             ipv4 => "True",
705)             ipv6 => "False",
706)             loadBalanced => "No",
707)             httpWebsiteMirror => "http://tor.mirror.tn/",
708)             httpsWebsiteMirror => "",
709)             rsyncWebsiteMirror => "",
710)             ftpWebsiteMirror => "",
711)             httpDistMirror => "http://tor.mirror.tn/dist/",
712)             httpsDistMirror => "",
713)             rsyncDistMirror => "",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

717)             adminContact => "",
718)             orgName => "",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

722)             ipv4 => "True",
723)             ipv6 => "False",
724)             loadBalanced => "No",
725)             httpWebsiteMirror => "",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

726)             httpsWebsiteMirror => "https://torproject.antagonism.org/",
727)             rsyncWebsiteMirror => "",
728)             ftpWebsiteMirror => "",
729)             httpDistMirror => "https://torproject.antagonism.org/dist/",
730)             httpsDistMirror => "",
731)             rsyncDistMirror => "",
Andrew Lewman add new mirror, refresh mir...

Andrew Lewman authored 12 years ago

732)             hiddenServiceMirror => "",
733)       },
734)         mirror046 => {
735)             adminContact => "",
736)             orgName => "",
737)             isoCC => "DE",
738)             subRegion => "",
739)             region => "DE",
740)             ipv4 => "True",
741)             ipv6 => "False",
742)             loadBalanced => "No",
743)             httpWebsiteMirror => "http://mirror.open-networx.org/torproject.org/",
744)             httpsWebsiteMirror => "https://mirror.open-networx.org/torproject.org/",
745)             rsyncWebsiteMirror => "",
746)             ftpWebsiteMirror => "",
747)             httpDistMirror => "http://mirror.open-networx.org/torproject.org/dist/",
748)             httpsDistMirror => "https://mirror.open-networx.org/torproject.org/dist/",
749)             rsyncDistMirror => "",
Andrew Lewman add the new cryptowars.info...

Andrew Lewman authored 12 years ago

750)             hiddenServiceMirror => "",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

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

Jacob Appelbaum authored 15 years ago

752) );
753) 
754) my $count = values %m;
755) print "We have a total of $count mirrors\n";
756) print "Fetching the last updated date for each mirror.\n";
757) 
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 12 years ago

759) $tortime = FetchDate("https://www.torproject.org/");
Jon@svn.torproject.org Some code donations. Thank...

Jon@svn.torproject.org authored 14 years ago

760) # Adjust offical Tor time by out-of-date offset: number of days * seconds per day 
Jon@svn.torproject.org Alter code, permit 48 hours...

Jon@svn.torproject.org authored 14 years ago

761) $tortime -= 1 * 172800; 
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

764) foreach my $server ( keys %m ) {
765) 
766)     print "Attempting to fetch from $m{$server}{'orgName'}\n";
767) 
768)     if ($m{$server}{'httpWebsiteMirror'}) {
769)         print "Attempt to fetch via HTTP.\n";
770)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpWebsiteMirror'}");
771)     } elsif ($m{$server}{'httpsWebsiteMirror'}) {
772)         print "Attempt to fetch via HTTPS.\n";
773)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpsWebsiteMirror'}");
774)     } elsif ($m{$server}{'ftpWebsiteMirror'}) {
775)         print "Attempt to fetch via FTP.\n";
776)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'ftpWebsiteMirror'}");
777)     } else {
778)         print "We were unable to fetch or store anything. We still have the following: $m{$server}{'updateDate'}\n";
779)     }
780) 
781)     print "We fetched and stored the following: $m{$server}{'updateDate'}\n";
782) 
783)  }
784) 
785) 
786) print "We sorted the following mirrors by their date of last update: \n";
787) foreach my $server ( sort { $m{$b}{'updateDate'} <=> $m{$a}{'updateDate'}} keys %m ) {
788) 
789)      print "\n";
790)      print "Mirror $m{$server}{'orgName'}: \n";
791) 
792)      foreach my $attrib ( sort keys %{$m{$server}} ) {
793)         print "$attrib = $m{$server}{$attrib}";
794)         print "\n";
795)      };
796) }
797) 
798) my $outFile = "include/mirrors-table.wmi";
799) my $html;
800) open(OUT, "> $outFile") or die "Can't open $outFile: $!";
801) 
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

802) # 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

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

809) 	    $time = "Up to date";
810) 	  } else { $time = "Out of date"; }
Andrew Lewman revert the last change to u...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

812) print OUT <<"END";
813)      \n<tr>\n
814)          <td>$m{$server}{'isoCC'}</td>\n
815)          <td>$m{$server}{'orgName'}</td>\n
816)          <td>$time</td>\n
817) END
818) 
819)      my %prettyNames = (
820)                         httpWebsiteMirror => "http",
821)                         httpsWebsiteMirror => "https",
822)                         ftpWebsiteMirror => "ftp",
823)                         rsyncWebsiteMirror => "rsync",
824)                         httpDistMirror => "http",
825)                         httpsDistMirror => "https",
826)                         rsyncDistMirrors => "rsync", );
827) 
828)      foreach my $precious ( sort keys %prettyNames )
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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