3cd926b3ff60358ad057929161d38bb2e1ee5882
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 askapache update

Jon@svn.torproject.org authored 14 years ago

16) # http://tor.askapache.com/ HTTP 403 Contacted 20091027
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 alter timout values (15 -> 30)

Jon@svn.torproject.org authored 14 years ago

21) #20091028 Code changes to increase timout to 30 seconds (attempting to resolve "unknown" status'
Jon@svn.torproject.org update internal changelog

Jon@svn.torproject.org authored 14 years ago

22) #20091028 Code changes to change user agent of script
Jacob Appelbaum Add credit and some idea of...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Sebastian Hahn authored 14 years ago

45)     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

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

54) 
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

85) my %m = (
86) 
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

87)         mirror001 => {
88)             adminContact => "BarkerJr AT barkerjr DOT net",
89)             orgName => "BarkerJr",
90)             isoCC => "FR",
91)             subRegion => "",
92)             region => "FR",
93)             ipv4 => "True",
94)             ipv6 => "False",
95)             loadBalanced => "No",
Jon@svn.torproject.org Fix the breakages I created...

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

102)             rsyncDistMirror => "",
103)             hiddenServiceMirror => "",
104)             updateDate => "Unknown",
105)         },
106) 
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

110)             isoCC => "CA",
111)             subRegion => "QC",
112)             region => "North America",
113)             ipv4 => "True",
114)             ipv6 => "False",
115)             loadBalanced => "Unknown",
116)             httpWebsiteMirror => "http://tor.hermetix.org/",
117)             rsyncWebsiteMirror => "",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

121)         },
122) 
123)        mirror003 => {
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

126)             isoCC => "CH",
127)             subRegion => "",
128)             region => "Europe",
129)             ipv4 => "True",
130)             ipv6 => "False",
131)             loadBalanced => "Unknown",
132)             httpWebsiteMirror => "http://tor.boinc.ch/",
133)             ftpWebsiteMirror => "",
134)             rsyncWebsiteMirror => "",
135)             httpDistMirror => "http://tor.boinc.ch/dist/",
136)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

138)         },
139) 
Jon@svn.torproject.org reorder list

Jon@svn.torproject.org authored 14 years ago

140) 	mirror004 => {
141)             adminContact => "",
142)             orgName => "anothr",
143)             isoCC => "CN",
144)             subRegion => "",
145)             region => "CN",
146)             ipv4 => "True",
147)             ipv6 => "False",
148)             loadBalanced => "No",
149)             httpWebsiteMirror => "http://tor.anothr.com/",
150)             httpsWebsiteMirror => "",
151)             rsyncWebsiteMirror => "",
152)             ftpWebsiteMirror => "",
153)             httpDistMirror => "http://tor.anothr.com/dist/",
154)             httpsDistMirror => "",
155)             rsyncDistMirror => "",
156)             hiddenServiceMirror => "",
157)             updateDate => "Unknown",
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 14 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 14 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 14 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",
Andrew Lewman update mirrors.

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

242)             rsyncWebsiteMirror => "",
243)             ftpWebsiteMirror => "",
Andrew Lewman update mirrors.

Andrew Lewman authored 14 years ago

244)             httpDistMirror => "http://www.torproject.us/dist/",
245)             httpsDistMirror => "https://www.torproject.us/dist/",
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

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 update one mirror per request

Andrew Lewman authored 14 years ago

280)             httpWebsiteMirror => "http://tor.idnr.ws/",
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 => "",
Andrew Lewman update one mirror per request

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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)        mirror018 => {
Jon@svn.torproject.org Apply new naming conventions.

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

376)             isoCC => "NO",
377)             subRegion => "",
378)             region => "Europe",
379)             ipv4 => "True",
380)             ipv6 => "False",
381)             loadBalanced => "Unknown",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

385)             httpDistMirror => "http://tor.meulie.net/",
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) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

405)         },
406) 
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

407) 	mirror020 => {
408)             adminContact => "",
409)             orgName => "ax",
Andrew Lewman remove goodeid mirror, relo...

Andrew Lewman authored 14 years ago

410)             isoCC => "HU",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

411)             subRegion => "",
Andrew Lewman remove goodeid mirror, relo...

Andrew Lewman authored 14 years ago

412)             region => "HU",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

413)             ipv4 => "True",
414)             ipv6 => "False",
415)             loadBalanced => "No",
416)             httpWebsiteMirror => "",
417)             httpsWebsiteMirror => "",
418)             rsyncWebsiteMirror => "",
419)             ftpWebsiteMirror => "",
420)             httpDistMirror => "http://tor.initrd.net/dist/",
421)             httpsDistMirror => "",
422)             rsyncDistMirror => "",
423)             hiddenServiceMirror => "",
424)             updateDate => "Unknown",
425)         },
426) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

432)             region => "North America",
433)             ipv4 => "True",
434)             ipv6 => "False",
435)             loadBalanced => "Unknown",
436)             httpWebsiteMirror => "http://www.theonionrouter.com/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

438)             ftpWebsiteMirror => "",
439)             httpDistMirror => "http://www.theonionrouter.com/dist/",
440)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

442)         },
443) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

447)             isoCC => "CH",
448)             subRegion => "",
449)             region => "Europe",
450)             ipv4 => "True",
451)             ipv6 => "True",
452)             loadBalanced => "Unknown",
453)             httpWebsiteMirror => "http://tor.unfix.org/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

477) 
Jon@svn.torproject.org remove http://tor.izaobao....

Jon@svn.torproject.org authored 14 years ago

478)        mirror024 => {
Jon@svn.torproject.org http://archives.seul.org/to...

Jon@svn.torproject.org authored 14 years ago

479)             adminContact => "",
Jon@svn.torproject.org remove http://tor.izaobao....

Jon@svn.torproject.org authored 14 years ago

480)             orgName => "StrangeCharm",
481)             isoCC => "",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

482)             subRegion => "",
Jon@svn.torproject.org remove http://tor.izaobao....

Jon@svn.torproject.org authored 14 years ago

483)             region => "FR",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

484)             ipv4 => "True",
485)             ipv6 => "False",
486)             loadBalanced => "No",
Jon@svn.torproject.org remove http://tor.izaobao....

Jon@svn.torproject.org authored 14 years ago

487)             httpWebsiteMirror => "http://torproject.the-onion-router.net/",
Jon@svn.torproject.org http://archives.seul.org/to...

Jon@svn.torproject.org authored 14 years ago

488)             httpsWebsiteMirror => "",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

489)             rsyncWebsiteMirror => "",
490)             ftpWebsiteMirror => "",
Jon@svn.torproject.org resolving inconsistancy

Jon@svn.torproject.org authored 14 years ago

491)             httpDistMirror => "http://torproject.the-onion-router.net/dist/",
Jon@svn.torproject.org http://archives.seul.org/to...

Jon@svn.torproject.org authored 14 years ago

492)             httpsDistMirror => "",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

493)             rsyncDistMirror => "",
494)             hiddenServiceMirror => "",
495)         },
496) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

499)             orgName => "Wiretapped",
500)             isoCC => "AU",
501)             subRegion => "Sydney",
502)             region => "Oceania",
503)             ipv4 => "True",
504)             ipv6 => "False",
505)             loadBalanced => "Unknown",
506)             httpWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

508)             ftpWebsiteMirror => "ftp://ftp.mirrors.wiretapped.net/pub/security/cryptography/network/tor/",
509)             httpDistMirror => "http://www.mirrors.wiretapped.net/security/cryptography/network/tor/",
510)             rsyncDistMirror => "",
511)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

517)             isoCC => "US",
518)             subRegion => "",
519)             region => "North America",
520)             ipv4 => "True",
521)             ipv6 => "False",
522)             loadBalanced => "Unknown",
523)             httpWebsiteMirror => "http://torproj.xpdm.us/",
Jacob Appelbaum Update table to include htt...

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

529)             rsyncDistMirror => "",
530)             hiddenServiceMirror => "http://h3prhz46uktgm4tt.onion/",
531)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

535)             adminContact => "",
536)             orgName => " cybervalley ",
537)             isoCC => " ",
538)             subRegion => "",
539)             region => " ",
Jacob Appelbaum Updated to add new mirror.

Jacob Appelbaum authored 15 years ago

540)             ipv4 => "True",
541)             ipv6 => "False",
542)             loadBalanced => "No",
Jon@svn.torproject.org Delist free.be.ijing2008.cn...

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

548)             httpsDistMirror => "",
549)             rsyncDistMirror => "",
550)             hiddenServiceMirror => "",
551)             updateDate => "Unknown",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

556)             orgName => "Unknown",
557)             isoCC => "HU",
558)             subRegion => "Hungary",
559)             region => "Europe",
560)             ipv4 => "True",
561)             ipv6 => "False",
562)             loadBalanced => "No",
Jon@svn.torproject.org Change tor.hu (adjustements...

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Roger Dingledine authored 15 years ago

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

Andrew Lewman authored 15 years ago

578)             subRegion => "Ukraine",
579)             region => "Eastern Europe",
580)             ipv4 => "True",
581)             ipv6 => "False",
582)             loadBalanced => "No",
583)             httpWebsiteMirror => "http://torua.reactor-xg.kiev.ua/",
584)             httpsWebsiteMirror => "",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

595)             adminContact => "",
596)             orgName => "chaos darmstadt",
597)             isoCC => "DE",
598)             subRegion => "Germany",
599)             region => "Europe",
600)             ipv4 => "True",
601)             ipv6 => "False",
602)             loadBalanced => "No",
603)             httpWebsiteMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/",
604)             httpsWebsiteMirror => "",
605)             rsyncWebsiteMirror => "",
606)             ftpWebsiteMirror => "",
607)             httpDistMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/dist/",
608)             httpsDistMirror => "",
609)             rsyncDistMirror => "",
610)             hiddenServiceMirror => "",
611)             updateDate => "Unknown",
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

613) 
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

617)             isoCC => "US",
618)             subRegion => "California",
619)             region => "US",
620)             ipv4 => "True",
621)             ipv6 => "False",
622)             loadBalanced => "No",
623)             httpWebsiteMirror => "http://tor.askapache.com/",
624)             httpsWebsiteMirror => "",
625)             rsyncWebsiteMirror => "",
626)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Update AskApache - http://a...

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

628)             httpsDistMirror => "",
629)             rsyncDistMirror => "",
630)             hiddenServiceMirror => "",
631)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

633) 
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 14 years ago

634) 	mirror032 => {
635)             adminContact => "",
636)             orgName => "I'm on the roof",
637)             isoCC => "US",
638)             subRegion => "",
639)             region => "US",
640)             ipv4 => "True",
641)             ipv6 => "False",
642)             loadBalanced => "No",
643)             httpWebsiteMirror => "http://mirror.imontheroof.com/tor-mirror/",
644)             httpsWebsiteMirror => "",
645)             rsyncWebsiteMirror => "",
646)             ftpWebsiteMirror => "",
647)             httpDistMirror => "http://mirror.imontheroof.com/tor-mirror/dist/",
648)             httpsDistMirror => "",
649)             rsyncDistMirror => "",
650)             hiddenServiceMirror => "",
651)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

653) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

657)             isoCC => "CN",
658)             subRegion => "",
659)             region => "CN",
660)             ipv4 => "True",
661)             ipv6 => "False",
662)             loadBalanced => "No",
663)             httpWebsiteMirror => "http://tor.bullog.org/",
664)             httpsWebsiteMirror => "",
665)             rsyncWebsiteMirror => "",
666)             ftpWebsiteMirror => "",
667)             httpDistMirror => "http://tor.bullog.org/dist/",
668)             httpsDistMirror => "",
669)             rsyncDistMirror => "",
670)             hiddenServiceMirror => "",
671)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

673) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

680)             ipv4 => "True",
681)             ipv6 => "False",
682)             loadBalanced => "No",
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

683)             httpWebsiteMirror => "http://tor.beme-it.de/",
Andrew Lewman remove ssl for tor.beme-it....

Andrew Lewman authored 14 years ago

684)             httpsWebsiteMirror => "",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

687)             httpDistMirror => "http://tor.beme-it.de/dist/",
Andrew Lewman remove ssl for tor.beme-it....

Andrew Lewman authored 14 years ago

688)             httpsDistMirror => "",
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

689)             rsyncDistMirror => "",
690)             hiddenServiceMirror => "",
691)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

693) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

697)             isoCC => "CN",
698)             subRegion => "",
699)             region => "CN",
700)             ipv4 => "True",
701)             ipv6 => "False",
702)             loadBalanced => "No",
703)             httpWebsiteMirror => "http://tor.shizhao.org/",
704)             httpsWebsiteMirror => "",
705)             rsyncWebsiteMirror => "",
706)             ftpWebsiteMirror => "",
707)             httpDistMirror => "http://tor.shizhao.org/dist/",
708)             httpsDistMirror => "",
709)             rsyncDistMirror => "",
710)             hiddenServiceMirror => "",
711)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

713) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

733) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

752)         },
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

753) 
754)         mirror038 => {
755)             adminContact => "",
756)             orgName => "",
757)             isoCC => "IN",
758)             subRegion => "",
759)             region => "IN",
760)             ipv4 => "True",
761)             ipv6 => "False",
762)             loadBalanced => "No",
Jon@svn.torproject.org resolving inconsistancy

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

764)             httpsWebsiteMirror => "",
765)             rsyncWebsiteMirror => "",
766)             ftpWebsiteMirror => "",
767)             httpDistMirror => "http://www.torproject.org.in/dist/",
768)             httpsDistMirror => "",
769)             rsyncDistMirror => "",
770)             hiddenServiceMirror => "",
771)             updateDate => "Unknown",
772)         },
773) 
774)         mirror039 => {
775)             adminContact => "",
776)             orgName => "",
Andrew Lewman add new mirror in ukraine,...

Andrew Lewman authored 14 years ago

777)             isoCC => "AT",
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

778)             subRegion => "",
779)             region => "LU",
780)             ipv4 => "True",
781)             ipv6 => "False",
782)             loadBalanced => "No",
Jon@svn.torproject.org resolving inconsistancy

Jon@svn.torproject.org authored 14 years ago

783)             httpWebsiteMirror => "http://tor.idnr.at/",
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

784)             httpsWebsiteMirror => "",
785)             rsyncWebsiteMirror => "",
786)             ftpWebsiteMirror => "",
Jon@svn.torproject.org resolving inconsistancy

Jon@svn.torproject.org authored 14 years ago

787)             httpDistMirror => "http://tor.idnr.at/dist/",
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

788)             httpsDistMirror => "",
789)             rsyncDistMirror => "",
Jon@svn.torproject.org add mirror - http://archive...

Jon@svn.torproject.org authored 14 years ago

790)             hiddenServiceMirror => "",
791)         },
792) 
Jon@svn.torproject.org new mirror http://archives....

Jon@svn.torproject.org authored 14 years ago

793)         mirror040 => {
794)             adminContact => "",
795)             orgName => "NIIF Institute",
796)             isoCC => "HU",
797)             subRegion => "",
798)             region => "HU",
799)             ipv4 => "True",
800)             ipv6 => "False",
801)             loadBalanced => "No",
802)             httpWebsiteMirror => "http://trak.tor.hu/",
803)             httpsWebsiteMirror => "",
804)             rsyncWebsiteMirror => "",
805)             ftpWebsiteMirror => "",
806)             httpDistMirror => "http://trak.tor.hu/dist/",
807)             httpsDistMirror => "",
808)             rsyncDistMirror => "",
809)             hiddenServiceMirror => "",
810)         },
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

811) 
Andrew Lewman add a mirror, update the ta...

Andrew Lewman authored 14 years ago

812)         mirror041 => {
813)             adminContact => "sina at accessnow.org",
814)             orgName => "Access",
815)             isoCC => "IR",
816)             subRegion => "",
817)             region => "IR",
818)             ipv4 => "True",
819)             ipv6 => "False",
820)             loadBalanced => "Yes",
821)             httpWebsiteMirror => "http://irani-tor.ath.cx/",
822)             httpsWebsiteMirror => "",
823)             rsyncWebsiteMirror => "",
824)             ftpWebsiteMirror => "",
825)             httpDistMirror => "http://irani-tor.ath.cx/dist/",
826)             httpsDistMirror => "",
827)             rsyncDistMirror => "",
Andrew Lewman Add the latest mirror in ru...

Andrew Lewman authored 14 years ago

828)             hiddenServiceMirror => "",
829)         },
830) 
831)         mirror042 => {
832)             adminContact => "kovtalex at mail.ru",
833)             orgName => "",
834)             isoCC => "RU",
835)             subRegion => "",
836)             region => "RU",
837)             ipv4 => "True",
838)             ipv6 => "False",
839)             loadBalanced => "No",
840)             httpWebsiteMirror => "http://www.tor.myeveryday.ru/",
841)             httpsWebsiteMirror => "",
842)             rsyncWebsiteMirror => "",
843)             ftpWebsiteMirror => "",
844)             httpDistMirror => "http://www.tor.myeveryday.ru/dist/",
845)             httpsDistMirror => "",
846)             rsyncDistMirror => "",
Andrew Lewman add new mirror in ukraine,...

Andrew Lewman authored 14 years ago

847)             hiddenServiceMirror => "",
848)         },
849) 
850)         mirror043 => {
851)             adminContact => "",
852)             orgName => "",
853)             isoCC => "UA",
854)             subRegion => "",
855)             region => "UA",
856)             ipv4 => "True",
857)             ipv6 => "False",
858)             loadBalanced => "No",
859)             httpWebsiteMirror => "http://tor.homosu.net/",
860)             httpsWebsiteMirror => "",
861)             rsyncWebsiteMirror => "",
862)             ftpWebsiteMirror => "",
863)             httpDistMirror => "http://tor.homosu.net/dist",
864)             httpsDistMirror => "",
865)             rsyncDistMirror => "",
Andrew Lewman add a mirror, update the ta...

Andrew Lewman authored 14 years ago

866)             hiddenServiceMirror => "",
867)         }
868) 
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

869) );
870) 
871) my $count = values %m;
872) print "We have a total of $count mirrors\n";
873) print "Fetching the last updated date for each mirror.\n";
874) 
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

881) foreach my $server ( keys %m ) {
882) 
883)     print "Attempting to fetch from $m{$server}{'orgName'}\n";
884) 
885)     if ($m{$server}{'httpWebsiteMirror'}) {
886)         print "Attempt to fetch via HTTP.\n";
887)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpWebsiteMirror'}");
888)     } elsif ($m{$server}{'httpsWebsiteMirror'}) {
889)         print "Attempt to fetch via HTTPS.\n";
890)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpsWebsiteMirror'}");
891)     } elsif ($m{$server}{'ftpWebsiteMirror'}) {
892)         print "Attempt to fetch via FTP.\n";
893)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'ftpWebsiteMirror'}");
894)     } else {
895)         print "We were unable to fetch or store anything. We still have the following: $m{$server}{'updateDate'}\n";
896)     }
897) 
898)     print "We fetched and stored the following: $m{$server}{'updateDate'}\n";
899) 
900)  }
901) 
902) 
903) print "We sorted the following mirrors by their date of last update: \n";
904) foreach my $server ( sort { $m{$b}{'updateDate'} <=> $m{$a}{'updateDate'}} keys %m ) {
905) 
906)      print "\n";
907)      print "Mirror $m{$server}{'orgName'}: \n";
908) 
909)      foreach my $attrib ( sort keys %{$m{$server}} ) {
910)         print "$attrib = $m{$server}{$attrib}";
911)         print "\n";
912)      };
913) }
914) 
915) my $outFile = "include/mirrors-table.wmi";
916) my $html;
917) open(OUT, "> $outFile") or die "Can't open $outFile: $!";
918) 
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

929) print OUT <<"END";
930)      \n<tr>\n
931)          <td>$m{$server}{'isoCC'}</td>\n
932)          <td>$m{$server}{'orgName'}</td>\n
933)          <td>$time</td>\n
934) END
935) 
936)      my %prettyNames = (
937)                         httpWebsiteMirror => "http",
938)                         httpsWebsiteMirror => "https",
939)                         ftpWebsiteMirror => "ftp",
940)                         rsyncWebsiteMirror => "rsync",
941)                         httpDistMirror => "http",
942)                         httpsDistMirror => "https",
943)                         rsyncDistMirrors => "rsync", );
944) 
945)      foreach my $precious ( sort keys %prettyNames )
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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