e2cf783f7d15b90bf92d6312a53d291c92c38c11
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) #
Jon@svn.torproject.org Note which mirror operators...

Jon@svn.torproject.org authored 14 years ago

15) #Contacted
Jon@svn.torproject.org Mirror status (remarks)

Jon@svn.torproject.org authored 14 years ago

16) #Kamagurka TIMOUTS (Should be up in about a week)
Jon@svn.torproject.org Note which mirror operators...

Jon@svn.torproject.org authored 14 years ago

17) #
Jon@svn.torproject.org changelog

Jon@svn.torproject.org authored 14 years ago

18) #CHANGELOG
19) #20091003 Code changes to elimiate the need for a trailing slash in addresses for script runtime
Jon@svn.torproject.org update internal changelog

Jon@svn.torproject.org authored 14 years ago

20) #20091004 Code changes to increase out of date tolerance to 48 hours
Jon@svn.torproject.org changelog

Jon@svn.torproject.org authored 14 years ago

21) #
Jacob Appelbaum Add credit and some idea of...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

23) print "Creating LWP agent ($LWP::VERSION)...\n";
24) my $lua = LWP::UserAgent->new(
25)     keep_alive => 1,
Andrew Lewman timeout should be 15, fix s...

Andrew Lewman authored 15 years ago

26)     timeout => 15,
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

27)     agent => "Tor MirrorCheck Agent"
28) );
29) 
30) sub sanitize {
31)     my $taintedData = shift;
32)     my $cleanedData;
33)     my $whitelist = '-a-zA-Z0-9: +';
34) 
35)     # clean the data, return cleaned data
36)     $taintedData =~ s/[^$whitelist]//go;
37)     $cleanedData = $taintedData;
38) 
39)     return $cleanedData;
40) }
41) 
42) sub FetchDate {
43)     my $url = shift; # Base url for mirror
Sebastian Hahn Add a hack so the mirror sc...

Sebastian Hahn authored 14 years ago

44)     my $trace = "/project/trace/www.torproject.org"; # Location of recent update info
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

53) 
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

84) my %m = (
85)         mirror000 => {
86)             adminContact => "tor AT goodeid DOT com",
Jon@svn.torproject.org Change Org on "Goodeid" per...

Jon@svn.torproject.org authored 14 years ago

87)             orgName => "Goodeid",
Jon@svn.torproject.org Correct error.

Jon@svn.torproject.org authored 14 years ago

88)             isoCC => "CA",
Jon@svn.torproject.org Reorder mirrors, cypher's r...

Jon@svn.torproject.org authored 14 years ago

89)             subRegion => "",
Jon@svn.torproject.org Fix region.

Jon@svn.torproject.org authored 14 years ago

90)             region => "North America",
Jon@svn.torproject.org Reorder mirrors, cypher's r...

Jon@svn.torproject.org authored 14 years ago

91)             ipv4 => "True",
92)             ipv6 => "False",
93)             loadBalanced => "No",
Jon@svn.torproject.org Alter port assignments on G...

Jon@svn.torproject.org authored 14 years ago

94)             httpWebsiteMirror => "http://tor-node.goodeid.com:8081/",
95)             httpsWebsiteMirror => "https://tor-node.goodeid.com:8444/",
Jon@svn.torproject.org Reorder mirrors, cypher's r...

Jon@svn.torproject.org authored 14 years ago

96)             rsyncWebsiteMirror => "",
97)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Alter port assignments on G...

Jon@svn.torproject.org authored 14 years ago

98)             httpDistMirror => "http://tor-node.goodeid.com:8081/dist/",
99)             httpsDistMirror => "https://tor-node.goodeid.com:8444/dist/
100) 
101) ",
Jon@svn.torproject.org Reorder mirrors, cypher's r...

Jon@svn.torproject.org authored 14 years ago

102)             rsyncDistMirror => "",
103)             hiddenServiceMirror => "",
104)             updateDate => "Unknown",
105)         },
106) 
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

120)             httpDistMirror => "http://www.oignon.net/dist/",
Jon@svn.torproject.org Accidentally hit <TAB>. Fi...

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

122)             rsyncDistMirror => "",
123)             hiddenServiceMirror => "",
124)             updateDate => "Unknown",
125)         },
126) 
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

127)        mirror002 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

128)             adminContact => "operator AT hermetix DOT org",
Mfr add contact address on mirr...

Mfr authored 15 years ago

129)             orgName => "Hermetix",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

130)             isoCC => "CA",
131)             subRegion => "QC",
132)             region => "North America",
133)             ipv4 => "True",
134)             ipv6 => "False",
135)             loadBalanced => "Unknown",
136)             httpWebsiteMirror => "http://tor.hermetix.org/",
137)             rsyncWebsiteMirror => "",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

138)             httpDistMirror => "",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

141)         },
142) 
143)        mirror003 => {
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

144)             adminContact => "",
Mfr add contact address on mirr...

Mfr authored 15 years ago

145)             orgName => "Boinc",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

146)             isoCC => "CH",
147)             subRegion => "",
148)             region => "Europe",
149)             ipv4 => "True",
150)             ipv6 => "False",
151)             loadBalanced => "Unknown",
152)             httpWebsiteMirror => "http://tor.boinc.ch/",
153)             ftpWebsiteMirror => "",
154)             rsyncWebsiteMirror => "",
155)             httpDistMirror => "http://tor.boinc.ch/dist/",
156)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

158)         },
159) 
Jacob Appelbaum Fix numbering of mirror, up...

Jacob Appelbaum authored 15 years ago

160)        mirror005 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

161)             adminContact => "citizen428 AT gmail DOT com",
Mfr add contact address on mirr...

Mfr authored 15 years ago

162)             orgName => "Bbs",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

163)             isoCC => "DE",
164)             subRegion => "",
165)             region => "Europe",
166)             ipv4 => "True",
167)             ipv6 => "False",
168)             loadBalanced => "Unknown",
169)             httpWebsiteMirror => "http://tor.blingblingsquad.net/",
170)             ftpWebsiteMirror => "",
171)             rsyncWebsiteMirror => "",
Andrew Lewman Removed the DE bbs /dist mi...

Andrew Lewman authored 15 years ago

172)             httpDistMirror => "",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

175)         },
176) 
Andrew Lewman Add mirror 41, remove plent...

Andrew Lewman authored 15 years ago

177)        mirror006 => {
Jon@svn.torproject.org Delist berapla.de, site dec...

Jon@svn.torproject.org authored 14 years ago

178)             adminContact => "doc DOT kuehn AT nexgo DOT de",
179)             orgName => " spacecowboy ",
180)             isoCC => " ",
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

181)             subRegion => "",
Jon@svn.torproject.org Delist berapla.de, site dec...

Jon@svn.torproject.org authored 14 years ago

182)             region => "DE",
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

183)             ipv4 => "True",
184)             ipv6 => "False",
Jon@svn.torproject.org Delist berapla.de, site dec...

Jon@svn.torproject.org authored 14 years ago

185)             loadBalanced => "No",
186)             httpWebsiteMirror => "http://tor-proxy.de/tor-mirror/",
187)             httpsWebsiteMirror => "https://tor-proxy.de/tor-mirror/",
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

188)             rsyncWebsiteMirror => "",
Jon@svn.torproject.org Delist berapla.de, site dec...

Jon@svn.torproject.org authored 14 years ago

189)             ftpWebsiteMirror => "",
190)             httpDistMirror => "http://tor-proxy.de/tor-mirror/dist/",
191)             httpsDistMirror => "https://tor-proxy.de/tor-mirror/dist/",
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

192)             rsyncDistMirror => "",
Jon@svn.torproject.org Delist berapla.de, site dec...

Jon@svn.torproject.org authored 14 years ago

193)             hiddenServiceMirror => "",
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

196) 
Andrew Lewman Add mirror 41, remove plent...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

198)             adminContact => "cm AT cybermirror DOT org",
Mfr add contact address on mirr...

Mfr authored 15 years ago

199)             orgName => "Cybermirror",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

200)             isoCC => "DE",
201)             subRegion => "",
202)             region => "Europe",
203)             ipv4 => "True",
204)             ipv6 => "False",
205)             loadBalanced => "Unknown",
206)             httpWebsiteMirror => "http://tor.cybermirror.org/",
207)             ftpWebsiteMirror => "",
208)             rsyncWebsiteMirror => "",
209)             httpDistMirror => "http://tor.cybermirror.org/dist/",
210)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

212)         },
213) 
Andrew Lewman Add mirror 41, remove plent...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

215)             adminContact => "contact AT algorithmus DOT com",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

216)             orgName => "Spline",
217)             isoCC => "DE",
218)             subRegion => "FU",
219)             region => "Europe",
220)             ipv4 => "True",
221)             ipv6 => "False",
222)             loadBalanced => "Unknown",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

223)             httpWebsiteMirror => "",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

224)             ftpWebsiteMirror => "",
225)             rsyncWebsiteMirror => "",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

226)             httpDistMirror => "http://rem.spline.de/tor/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

229)         },
230) 
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

231) 	mirror009 => {
232)             adminContact => "BarkerJr AT barkerjr DOT net",
233)             orgName => "BarkerJr",
234)             isoCC => "US",
235)             subRegion => "",
236)             region => "US",
237)             ipv4 => "True",
238)             ipv6 => "False",
239)             loadBalanced => "No",
Jon@svn.torproject.org Fix the breakages I created...

Jon@svn.torproject.org authored 14 years ago

240)             httpWebsiteMirror => "http://www.cebolla.us/",
241)             httpsWebsiteMirror => "https://www.cebolla.us/",
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

242)             rsyncWebsiteMirror => "",
243)             ftpWebsiteMirror => "",
244)             httpDistMirror => "http://www.cebolla.us/dist/",
245)             httpsDistMirror => "https://www.cebolla.us/dist/",
246)             rsyncDistMirror => "",
247)             hiddenServiceMirror => "",
248)             updateDate => "Unknown",
249)         },
250) 
251) 	mirror010 => {
252)             adminContact => "",
253)             orgName => "zuola",
254)             isoCC => "CN",
255)             subRegion => "",
256)             region => "CN",
257)             ipv4 => "True",
258)             ipv6 => "False",
259)             loadBalanced => "No",
260)             httpWebsiteMirror => "http://tor.zuo.la/",
261)             httpsWebsiteMirror => "",
262)             rsyncWebsiteMirror => "",
263)             ftpWebsiteMirror => "",
264)             httpDistMirror => "http://tor.zuo.la/dist/",
265)             httpsDistMirror => "",
266)             rsyncDistMirror => "",
267)             hiddenServiceMirror => "",
268)             updateDate => "Unknown",
269)         },
270) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

271)        mirror011 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

274)             isoCC => "DK",
275)             subRegion => "",
276)             region => "Europe",
277)             ipv4 => "True",
278)             ipv6 => "False",
279)             loadBalanced => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

280)             httpWebsiteMirror => "http://tor.zdg-gmbh.eu/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

283)             httpDistMirror => "http://tor.zdg-gmbh.eu/dist/",
284)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

286)         },
287) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

288)        mirror012 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

289)             adminContact => "kurt AT miroir-francais DOT fr",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

290)             orgName => "CRAN",
291)             isoCC => "FR",
Mfr add contact address on mirr...

Mfr authored 15 years ago

292)             subRegion => "Ile de France",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

293)             region => "Europe",
294)             ipv4 => "True",
295)             ipv6 => "False",
296)             loadBalanced => "Unknown",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

298)             rsyncWebsiteMirror => "rsync://miroir-francais.fr::tor",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

299)             ftpWebsiteMirror => "ftp://miroir-francais.fr/pub/tor/",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

300)             httpDistMirror => "http://tor.miroir-francais.fr/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

303)         },
304) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

308)             isoCC => "NL",
309)             subRegion => "",
310)             region => "Europe",
311)             ipv4 => "True",
312)             ipv6 => "False",
313)             loadBalanced => "Unknown",
314)             httpWebsiteMirror => "http://tor.amorphis.eu/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

316)             ftpWebsiteMirror => "",
317)             httpDistMirror => "http://tor.amorphis.eu/dist/",
318)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

320)         },
321) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

322)        mirror014 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

324)             orgName => "BIT BV",
325)             isoCC => "NL",
326)             subRegion => "",
327)             region => "Europe",
328)             ipv4 => "True",
329)             ipv6 => "False",
330)             loadBalanced => "Unknown",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

337)         },
338) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

339)        mirror015 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

341)             orgName => "CCC",
342)             isoCC => "NL",
343)             subRegion => "",
344)             region => "Europe",
345)             ipv4 => "True",
346)             ipv6 => "False",
347)             loadBalanced => "Unknown",
348)             httpWebsiteMirror => "http://tor.ccc.de/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

350)             ftpWebsiteMirror => "",
351)             httpDistMirror => "http://tor.ccc.de/dist/",
352)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

354)         },
355) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

357)             adminContact => "root AT kamagurka DOT org",
Mfr add contact address on mirr...

Mfr authored 15 years ago

358)             orgName => "Kamagurka",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

359)             isoCC => "NL",
360)             subRegion => "Haarlem",
361)             region => "Europe",
362)             ipv4 => "True",
363)             ipv6 => "False",
364)             loadBalanced => "Unknown",
365)             httpWebsiteMirror => "http://tor.kamagurka.org/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

367)             ftpWebsiteMirror => "",
368)             httpDistMirror => "http://tor.kamagurka.org/dist/",
369)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

371)         },
372) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

373)        mirror017 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

374)             adminContact => "mirrorsosmirror.nl",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

375)             orgName => "OS Mirror",
376)             isoCC => "NL",
377)             subRegion => "",
378)             region => "Europe",
379)             ipv4 => "True",
380)             ipv6 => "False",
381)             loadBalanced => "Unknown",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

383)             rsyncWebsiteMirror => "rsync://rsync.osmirror.nl::tor/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

384)             ftpWebsiteMirror => "ftp://ftp.osmirror.nl/pub/tor/",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

385)             httpDistMirror => "http://tor.osmirror.nl/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

388)         },
389) 
390) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

391)        mirror018 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

392)             adminContact => "evert AT meulie DOT net",
Mfr add contact address on mirr...

Mfr authored 15 years ago

393)             orgName => "Meulie",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

394)             isoCC => "NO",
395)             subRegion => "",
396)             region => "Europe",
397)             ipv4 => "True",
398)             ipv6 => "False",
399)             loadBalanced => "Unknown",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

402)             ftpWebsiteMirror => "",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

403)             httpDistMirror => "http://tor.meulie.net/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

406)         },
407) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

408)        mirror019 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

409)             adminContact => "ghirai AT ghirai DOT com",
Mfr add contact address on mirr...

Mfr authored 15 years ago

410)             orgName => "Ghirai",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

411)             isoCC => "UK",
412)             subRegion => "London",
413)             region => "Europe",
414)             ipv4 => "True",
415)             ipv6 => "False",
416)             loadBalanced => "Unknown",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

419)             ftpWebsiteMirror => "",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

420)             httpDistMirror => "http://www.ghirai.com/tor/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

423)         },
424) 
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

425) 	mirror020 => {
426)             adminContact => "",
427)             orgName => "ax",
428)             isoCC => "DE",
429)             subRegion => "",
430)             region => "DE",
431)             ipv4 => "True",
432)             ipv6 => "False",
433)             loadBalanced => "No",
434)             httpWebsiteMirror => "",
435)             httpsWebsiteMirror => "",
436)             rsyncWebsiteMirror => "",
437)             ftpWebsiteMirror => "",
438)             httpDistMirror => "http://tor.initrd.net/dist/",
439)             httpsDistMirror => "",
440)             rsyncDistMirror => "",
441)             hiddenServiceMirror => "",
442)             updateDate => "Unknown",
443)         },
444) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

445)        mirror021 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

447)             orgName => "TheOnionRouter",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

448)             isoCC => "US",
Andrew Lewman Added mirror in the Ukraine.

Andrew Lewman authored 15 years ago

449)             subRegion => "New Jersey",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

450)             region => "North America",
451)             ipv4 => "True",
452)             ipv6 => "False",
453)             loadBalanced => "Unknown",
454)             httpWebsiteMirror => "http://www.theonionrouter.com/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

456)             ftpWebsiteMirror => "",
457)             httpDistMirror => "http://www.theonionrouter.com/dist/",
458)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

460)         },
461) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

462)        mirror022 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

463)             adminContact => "jeroen AT unfix DOT org",
Mfr fix more typos

Mfr authored 15 years ago

464)             orgName => "Unfix",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

465)             isoCC => "CH",
466)             subRegion => "",
467)             region => "Europe",
468)             ipv4 => "True",
469)             ipv6 => "True",
470)             loadBalanced => "Unknown",
471)             httpWebsiteMirror => "http://tor.unfix.org/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

473)             ftpWebsiteMirror => "",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

474)             httpDistMirror => "http://tor.unfix.org/dist/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

477)         },
478) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

479)        mirror023 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

480)             adminContact => "jeroen AT unfix DOT org",
Mfr fix more typos

Mfr authored 15 years ago

481)             orgName => "Sixx",
Jacob Appelbaum Removed dupe mirror entry,...

Jacob Appelbaum authored 15 years ago

482)             isoCC => "CH",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

483)             subRegion => "",
484)             region => "Europe",
485)             ipv4 => "True",
486)             ipv6 => "True",
487)             loadBalanced => "Unknown",
488)             httpWebsiteMirror => "http://tor.sixxs.net/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

490)             ftpWebsiteMirror => "",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

491)             httpDistMirror => "http://tor.sixxs.net/dist/",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

494)         },
Jacob Appelbaum Add a new mirror, change th...

Jacob Appelbaum authored 15 years ago

495) 
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

496) 	mirror024 => {
497)             adminContact => "scream AT nonvocalscream DOT com",
498)             orgName => "NVS",
499)             isoCC => "US",
500)             subRegion => "",
501)             region => "US",
502)             ipv4 => "True",
503)             ipv6 => "False",
504)             loadBalanced => "No",
505)             httpWebsiteMirror => "http://tor.nonvocalscream.com/",
506)             httpsWebsiteMirror => "https://tor.nonvocalscream.com/",
507)             rsyncWebsiteMirror => "",
508)             ftpWebsiteMirror => "",
509)             httpDistMirror => "http://tor.nonvocalscream.com/dist/",
510)             httpsDistMirror => "https://tor.nonvocalscream.com/dist/",
511)             rsyncDistMirror => "",
512)             hiddenServiceMirror => "",
513)             updateDate => "Unknown",
514)         },
515) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

516)        mirror025 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

517)             adminContact => "web2005a AT year2005a.wiretapped DOT net",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

518)             orgName => "Wiretapped",
519)             isoCC => "AU",
520)             subRegion => "Sydney",
521)             region => "Oceania",
522)             ipv4 => "True",
523)             ipv6 => "False",
524)             loadBalanced => "Unknown",
525)             httpWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

526)             rsyncWebsiteMirror => "",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

527)             ftpWebsiteMirror => "ftp://ftp.mirrors.wiretapped.net/pub/security/cryptography/network/tor/",
528)             httpDistMirror => "http://www.mirrors.wiretapped.net/security/cryptography/network/tor/",
529)             rsyncDistMirror => "",
530)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

531)         },
Jacob Appelbaum Add a new mirror, change th...

Jacob Appelbaum authored 15 years ago

532) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

533)         mirror026 => {
Jon@svn.torproject.org replace dots with AT and DOT

Jon@svn.torproject.org authored 14 years ago

534)             adminContact => "tormaster AT xpdm DOT us",
Mfr fix more typos

Mfr authored 15 years ago

535)             orgName => "Xpdm",
Jacob Appelbaum New mirror, update mirror t...

Jacob Appelbaum authored 15 years ago

536)             isoCC => "US",
537)             subRegion => "",
538)             region => "North America",
539)             ipv4 => "True",
540)             ipv6 => "False",
541)             loadBalanced => "Unknown",
542)             httpWebsiteMirror => "http://torproj.xpdm.us/",
Jacob Appelbaum Update table to include htt...

Jacob Appelbaum authored 15 years ago

543)             httpsWebsiteMirror => "https://torproj.xpdm.us/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

544)             rsyncWebsiteMirror => "",
Jacob Appelbaum New mirror, update mirror t...

Jacob Appelbaum authored 15 years ago

545)             ftpWebsiteMirror => "",
Jacob Appelbaum Update table to include htt...

Jacob Appelbaum authored 15 years ago

546)             httpDistMirror => "http://torproj.xpdm.us/dist/",
547)             httpsDistMirror => "https://torproj.xpdm.us/dist/",
Jacob Appelbaum New mirror, update mirror t...

Jacob Appelbaum authored 15 years ago

548)             rsyncDistMirror => "",
549)             hiddenServiceMirror => "http://h3prhz46uktgm4tt.onion/",
550)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

551)         },
Jacob Appelbaum New mirror, update mirror t...

Jacob Appelbaum authored 15 years ago

552) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

553)         mirror027 => {
Jon@svn.torproject.org Delist free.be.ijing2008.cn...

Jon@svn.torproject.org authored 14 years ago

554)             adminContact => "",
555)             orgName => " cybervalley ",
556)             isoCC => " ",
557)             subRegion => "",
558)             region => " ",
Jacob Appelbaum Updated to add new mirror.

Jacob Appelbaum authored 15 years ago

559)             ipv4 => "True",
560)             ipv6 => "False",
561)             loadBalanced => "No",
Jon@svn.torproject.org Delist free.be.ijing2008.cn...

Jon@svn.torproject.org authored 14 years ago

562)             httpWebsiteMirror => "http://torproject.cybervalley.org/",
Jacob Appelbaum Updated to add new mirror.

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

564)             rsyncWebsiteMirror => "",
Jacob Appelbaum Updated to add new mirror.

Jacob Appelbaum authored 15 years ago

565)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Delist free.be.ijing2008.cn...

Jon@svn.torproject.org authored 14 years ago

566)             httpDistMirror => "",
Jacob Appelbaum Updated to add new mirror.

Jacob Appelbaum authored 15 years ago

567)             httpsDistMirror => "",
568)             rsyncDistMirror => "",
569)             hiddenServiceMirror => "",
570)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

571)         },
Jacob Appelbaum Updated to add new mirror.

Jacob Appelbaum authored 15 years ago

572) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

573)         mirror028 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

575)             orgName => "Unknown",
576)             isoCC => "HU",
577)             subRegion => "Hungary",
578)             region => "Europe",
579)             ipv4 => "True",
580)             ipv6 => "False",
581)             loadBalanced => "No",
Jon@svn.torproject.org Change tor.hu (adjustements...

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

585)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Change tor.hu (adjustements...

Jon@svn.torproject.org authored 14 years ago

586)             httpDistMirror => "",
Andrew Lewman Added mirror.tor.hu back to...

Andrew Lewman authored 15 years ago

587)             httpsDistMirror => "",
588)             rsyncDistMirror => "",
589)             hiddenServiceMirror => "",
590)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

592) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

593)         mirror029 => {
Andrew Lewman Added mirror in the Ukraine.

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Roger Dingledine authored 15 years ago

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

Andrew Lewman authored 15 years ago

597)             subRegion => "Ukraine",
598)             region => "Eastern Europe",
599)             ipv4 => "True",
600)             ipv6 => "False",
601)             loadBalanced => "No",
602)             httpWebsiteMirror => "http://torua.reactor-xg.kiev.ua/",
603)             httpsWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

607)             httpsDistMirror => "",
608)             rsyncDistMirror => "",
609)             hiddenServiceMirror => "",
610)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

612) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

613) 	mirror030 => {
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

614)             adminContact => "",
615)             orgName => "chaos darmstadt",
616)             isoCC => "DE",
617)             subRegion => "Germany",
618)             region => "Europe",
619)             ipv4 => "True",
620)             ipv6 => "False",
621)             loadBalanced => "No",
622)             httpWebsiteMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/",
623)             httpsWebsiteMirror => "",
624)             rsyncWebsiteMirror => "",
625)             ftpWebsiteMirror => "",
626)             httpDistMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/dist/",
627)             httpsDistMirror => "",
628)             rsyncDistMirror => "",
629)             hiddenServiceMirror => "",
630)             updateDate => "Unknown",
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

632) 
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

636)             isoCC => "US",
637)             subRegion => "California",
638)             region => "US",
639)             ipv4 => "True",
640)             ipv6 => "False",
641)             loadBalanced => "No",
642)             httpWebsiteMirror => "http://tor.askapache.com/",
643)             httpsWebsiteMirror => "",
644)             rsyncWebsiteMirror => "",
645)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Update AskApache - http://a...

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

647)             httpsDistMirror => "",
648)             rsyncDistMirror => "",
649)             hiddenServiceMirror => "",
650)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

652) 
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 15 years ago

653) 	mirror032 => {
654)             adminContact => "",
655)             orgName => "I'm on the roof",
656)             isoCC => "US",
657)             subRegion => "",
658)             region => "US",
659)             ipv4 => "True",
660)             ipv6 => "False",
661)             loadBalanced => "No",
662)             httpWebsiteMirror => "http://mirror.imontheroof.com/tor-mirror/",
663)             httpsWebsiteMirror => "",
664)             rsyncWebsiteMirror => "",
665)             ftpWebsiteMirror => "",
666)             httpDistMirror => "http://mirror.imontheroof.com/tor-mirror/dist/",
667)             httpsDistMirror => "",
668)             rsyncDistMirror => "",
669)             hiddenServiceMirror => "",
670)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

672) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

673) 	mirror033 => {
674)             adminContact => "",
Andrew Lewman add in org names for the .c...

Andrew Lewman authored 15 years ago

675)             orgName => "bullog",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

676)             isoCC => "CN",
677)             subRegion => "",
678)             region => "CN",
679)             ipv4 => "True",
680)             ipv6 => "False",
681)             loadBalanced => "No",
682)             httpWebsiteMirror => "http://tor.bullog.org/",
683)             httpsWebsiteMirror => "",
684)             rsyncWebsiteMirror => "",
685)             ftpWebsiteMirror => "",
686)             httpDistMirror => "http://tor.bullog.org/dist/",
687)             httpsDistMirror => "",
688)             rsyncDistMirror => "",
689)             hiddenServiceMirror => "",
690)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

692) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

693) 	mirror034 => {
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

694)             adminContact => " mail AT benjamin-meier DOT info ",
695)             orgName => "beme it",
696)             isoCC => " ",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

699)             ipv4 => "True",
700)             ipv6 => "False",
701)             loadBalanced => "No",
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

702)             httpWebsiteMirror => "http://tor.beme-it.de/",
703)             httpsWebsiteMirror => "https://tor.beme-it.de/",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

706)             httpDistMirror => "http://tor.beme-it.de/dist/",
707)             httpsDistMirror => "https://tor.beme-it.de/dist/",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

708)             rsyncDistMirror => "",
709)             hiddenServiceMirror => "",
710)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

712) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

713) 	mirror035 => {
714)             adminContact => "",
Andrew Lewman add in org names for the .c...

Andrew Lewman authored 15 years ago

715)             orgName => "shizhao",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

716)             isoCC => "CN",
717)             subRegion => "",
718)             region => "CN",
719)             ipv4 => "True",
720)             ipv6 => "False",
721)             loadBalanced => "No",
722)             httpWebsiteMirror => "http://tor.shizhao.org/",
723)             httpsWebsiteMirror => "",
724)             rsyncWebsiteMirror => "",
725)             ftpWebsiteMirror => "",
726)             httpDistMirror => "http://tor.shizhao.org/dist/",
727)             httpsDistMirror => "",
728)             rsyncDistMirror => "",
729)             hiddenServiceMirror => "",
730)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

732) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

733) 	mirror036 => {
734)             adminContact => "",
Andrew Lewman add in org names for the .c...

Andrew Lewman authored 15 years ago

735)             orgName => "ranyunfei",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

736)             isoCC => "CN",
737)             subRegion => "",
738)             region => "CN",
739)             ipv4 => "True",
740)             ipv6 => "False",
741)             loadBalanced => "No",
742)             httpWebsiteMirror => "http://tor.ranyunfei.com/",
743)             httpsWebsiteMirror => "",
744)             rsyncWebsiteMirror => "",
745)             ftpWebsiteMirror => "",
746)             httpDistMirror => "http://tor.ranyunfei.com/dist/",
747)             httpsDistMirror => "",
748)             rsyncDistMirror => "",
749)             hiddenServiceMirror => "",
750)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

752) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

753) 	mirror037 => {
754)             adminContact => "",
Andrew Lewman add in org names for the .c...

Andrew Lewman authored 15 years ago

755)             orgName => "wuerkaixi",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

756)             isoCC => "CN",
757)             subRegion => "",
758)             region => "CN",
759)             ipv4 => "True",
760)             ipv6 => "False",
761)             loadBalanced => "No",
762)             httpWebsiteMirror => "http://tor.wuerkaixi.com/",
763)             httpsWebsiteMirror => "",
764)             rsyncWebsiteMirror => "",
765)             ftpWebsiteMirror => "",
766)             httpDistMirror => "http://tor.wuerkaixi.com/dist/",
767)             httpsDistMirror => "",
768)             rsyncDistMirror => "",
769)             hiddenServiceMirror => "",
770)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

772) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

773) 	mirror038 => {
774)             adminContact => "",
Andrew Lewman add in org names for the .c...

Andrew Lewman authored 15 years ago

775)             orgName => "izaobao",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

776)             isoCC => "CN",
777)             subRegion => "",
778)             region => "CN",
779)             ipv4 => "True",
780)             ipv6 => "False",
781)             loadBalanced => "No",
782)             httpWebsiteMirror => "http://tor.izaobao.com/",
783)             httpsWebsiteMirror => "",
784)             rsyncWebsiteMirror => "",
785)             ftpWebsiteMirror => "",
786)             httpDistMirror => "http://tor.izaobao.com/dist/",
787)             httpsDistMirror => "",
788)             rsyncDistMirror => "",
789)             hiddenServiceMirror => "",
790)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

792) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

793) 	mirror039 => {
794)             adminContact => "",
Andrew Lewman add in org names for the .c...

Andrew Lewman authored 15 years ago

795)             orgName => "anothr",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

796)             isoCC => "CN",
797)             subRegion => "",
798)             region => "CN",
799)             ipv4 => "True",
800)             ipv6 => "False",
801)             loadBalanced => "No",
802)             httpWebsiteMirror => "http://tor.anothr.com/",
803)             httpsWebsiteMirror => "",
804)             rsyncWebsiteMirror => "",
805)             ftpWebsiteMirror => "",
806)             httpDistMirror => "http://tor.anothr.com/dist/",
807)             httpsDistMirror => "",
808)             rsyncDistMirror => "",
809)             hiddenServiceMirror => "",
810)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

813) );
814) 
815) my $count = values %m;
816) print "We have a total of $count mirrors\n";
817) print "Fetching the last updated date for each mirror.\n";
818) 
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

819) my $tortime;
820) $tortime = FetchDate("http://www.torproject.org/");
Jon@svn.torproject.org Some code donations. Thank...

Jon@svn.torproject.org authored 14 years ago

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

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

825) foreach my $server ( keys %m ) {
826) 
827)     print "Attempting to fetch from $m{$server}{'orgName'}\n";
828) 
829)     if ($m{$server}{'httpWebsiteMirror'}) {
830)         print "Attempt to fetch via HTTP.\n";
831)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpWebsiteMirror'}");
832)     } elsif ($m{$server}{'httpsWebsiteMirror'}) {
833)         print "Attempt to fetch via HTTPS.\n";
834)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpsWebsiteMirror'}");
835)     } elsif ($m{$server}{'ftpWebsiteMirror'}) {
836)         print "Attempt to fetch via FTP.\n";
837)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'ftpWebsiteMirror'}");
838)     } else {
839)         print "We were unable to fetch or store anything. We still have the following: $m{$server}{'updateDate'}\n";
840)     }
841) 
842)     print "We fetched and stored the following: $m{$server}{'updateDate'}\n";
843) 
844)  }
845) 
846) 
847) print "We sorted the following mirrors by their date of last update: \n";
848) foreach my $server ( sort { $m{$b}{'updateDate'} <=> $m{$a}{'updateDate'}} keys %m ) {
849) 
850)      print "\n";
851)      print "Mirror $m{$server}{'orgName'}: \n";
852) 
853)      foreach my $attrib ( sort keys %{$m{$server}} ) {
854)         print "$attrib = $m{$server}{$attrib}";
855)         print "\n";
856)      };
857) }
858) 
859) my $outFile = "include/mirrors-table.wmi";
860) my $html;
861) open(OUT, "> $outFile") or die "Can't open $outFile: $!";
862) 
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

873) print OUT <<"END";
874)      \n<tr>\n
875)          <td>$m{$server}{'isoCC'}</td>\n
876)          <td>$m{$server}{'orgName'}</td>\n
877)          <td>$time</td>\n
878) END
879) 
880)      my %prettyNames = (
881)                         httpWebsiteMirror => "http",
882)                         httpsWebsiteMirror => "https",
883)                         ftpWebsiteMirror => "ftp",
884)                         rsyncWebsiteMirror => "rsync",
885)                         httpDistMirror => "http",
886)                         httpsDistMirror => "https",
887)                         rsyncDistMirrors => "rsync", );
888) 
889)      foreach my $precious ( sort keys %prettyNames )
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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