b93aaa321966cde13ffc65fc5ea9667b7bd8edfa
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) 
Jon@svn.torproject.org reorder list

Jon@svn.torproject.org authored 14 years ago

160) 	mirror004 => {
161)             adminContact => "",
162)             orgName => "anothr",
163)             isoCC => "CN",
164)             subRegion => "",
165)             region => "CN",
166)             ipv4 => "True",
167)             ipv6 => "False",
168)             loadBalanced => "No",
169)             httpWebsiteMirror => "http://tor.anothr.com/",
170)             httpsWebsiteMirror => "",
171)             rsyncWebsiteMirror => "",
172)             ftpWebsiteMirror => "",
173)             httpDistMirror => "http://tor.anothr.com/dist/",
174)             httpsDistMirror => "",
175)             rsyncDistMirror => "",
176)             hiddenServiceMirror => "",
177)             updateDate => "Unknown",
178)         },
179) 
Jacob Appelbaum Fix numbering of mirror, up...

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

183)             isoCC => "DE",
184)             subRegion => "",
185)             region => "Europe",
186)             ipv4 => "True",
187)             ipv6 => "False",
188)             loadBalanced => "Unknown",
189)             httpWebsiteMirror => "http://tor.blingblingsquad.net/",
190)             ftpWebsiteMirror => "",
191)             rsyncWebsiteMirror => "",
Andrew Lewman Removed the DE bbs /dist mi...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

220)             isoCC => "DE",
221)             subRegion => "",
222)             region => "Europe",
223)             ipv4 => "True",
224)             ipv6 => "False",
225)             loadBalanced => "Unknown",
226)             httpWebsiteMirror => "http://tor.cybermirror.org/",
227)             ftpWebsiteMirror => "",
228)             rsyncWebsiteMirror => "",
229)             httpDistMirror => "http://tor.cybermirror.org/dist/",
230)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

232)         },
233) 
Andrew Lewman Add mirror 41, remove plent...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

236)             orgName => "Spline",
237)             isoCC => "DE",
238)             subRegion => "FU",
239)             region => "Europe",
240)             ipv4 => "True",
241)             ipv6 => "False",
242)             loadBalanced => "Unknown",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

249)         },
250) 
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

251) 	mirror009 => {
252)             adminContact => "BarkerJr AT barkerjr DOT net",
253)             orgName => "BarkerJr",
254)             isoCC => "US",
255)             subRegion => "",
256)             region => "US",
257)             ipv4 => "True",
258)             ipv6 => "False",
259)             loadBalanced => "No",
Jon@svn.torproject.org Fix the breakages I created...

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

262)             rsyncWebsiteMirror => "",
263)             ftpWebsiteMirror => "",
264)             httpDistMirror => "http://www.cebolla.us/dist/",
265)             httpsDistMirror => "https://www.cebolla.us/dist/",
266)             rsyncDistMirror => "",
267)             hiddenServiceMirror => "",
268)             updateDate => "Unknown",
269)         },
270) 
271) 	mirror010 => {
272)             adminContact => "",
273)             orgName => "zuola",
274)             isoCC => "CN",
275)             subRegion => "",
276)             region => "CN",
277)             ipv4 => "True",
278)             ipv6 => "False",
279)             loadBalanced => "No",
280)             httpWebsiteMirror => "http://tor.zuo.la/",
281)             httpsWebsiteMirror => "",
282)             rsyncWebsiteMirror => "",
283)             ftpWebsiteMirror => "",
284)             httpDistMirror => "http://tor.zuo.la/dist/",
285)             httpsDistMirror => "",
286)             rsyncDistMirror => "",
287)             hiddenServiceMirror => "",
288)             updateDate => "Unknown",
289)         },
290) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

294)             isoCC => "DK",
295)             subRegion => "",
296)             region => "Europe",
297)             ipv4 => "True",
298)             ipv6 => "False",
299)             loadBalanced => "Unknown",
Andrew Lewman update one mirror per request

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

306)         },
307) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

313)             region => "Europe",
314)             ipv4 => "True",
315)             ipv6 => "False",
316)             loadBalanced => "Unknown",
Jacob Appelbaum Update of mirrors from M Fr.

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

323)         },
324) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

328)             isoCC => "NL",
329)             subRegion => "",
330)             region => "Europe",
331)             ipv4 => "True",
332)             ipv6 => "False",
333)             loadBalanced => "Unknown",
334)             httpWebsiteMirror => "http://tor.amorphis.eu/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

336)             ftpWebsiteMirror => "",
337)             httpDistMirror => "http://tor.amorphis.eu/dist/",
338)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

340)         },
341) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

344)             orgName => "BIT BV",
345)             isoCC => "NL",
346)             subRegion => "",
347)             region => "Europe",
348)             ipv4 => "True",
349)             ipv6 => "False",
350)             loadBalanced => "Unknown",
Jacob Appelbaum Updated the mirrors-table t...

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

357)         },
358) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

361)             orgName => "CCC",
362)             isoCC => "NL",
363)             subRegion => "",
364)             region => "Europe",
365)             ipv4 => "True",
366)             ipv6 => "False",
367)             loadBalanced => "Unknown",
368)             httpWebsiteMirror => "http://tor.ccc.de/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

370)             ftpWebsiteMirror => "",
371)             httpDistMirror => "http://tor.ccc.de/dist/",
372)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

374)         },
375) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

379)             isoCC => "NL",
380)             subRegion => "Haarlem",
381)             region => "Europe",
382)             ipv4 => "True",
383)             ipv6 => "False",
384)             loadBalanced => "Unknown",
385)             httpWebsiteMirror => "http://tor.kamagurka.org/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

387)             ftpWebsiteMirror => "",
388)             httpDistMirror => "http://tor.kamagurka.org/dist/",
389)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

391)         },
392) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

408)         },
409) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

425)         },
426) 
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

462)         },
463) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

479)         },
480) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

497) 
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

499)             adminContact => "",
500)             orgName => "izaobao",
501)             isoCC => "CN",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

502)             subRegion => "",
Jon@svn.torproject.org http://archives.seul.org/to...

Jon@svn.torproject.org authored 14 years ago

503)             region => "CN",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

504)             ipv4 => "True",
505)             ipv6 => "False",
506)             loadBalanced => "No",
Jon@svn.torproject.org http://archives.seul.org/to...

Jon@svn.torproject.org authored 14 years ago

507)             httpWebsiteMirror => "http://tor.izaobao.com/",
508)             httpsWebsiteMirror => "",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

509)             rsyncWebsiteMirror => "",
510)             ftpWebsiteMirror => "",
Jon@svn.torproject.org http://archives.seul.org/to...

Jon@svn.torproject.org authored 14 years ago

511)             httpDistMirror => "http://tor.izaobao.com/dist/",
512)             httpsDistMirror => "",
Jon@svn.torproject.org reorder mirrors

Jon@svn.torproject.org authored 14 years ago

513)             rsyncDistMirror => "",
514)             hiddenServiceMirror => "",
515)             updateDate => "Unknown",
516)         },
517) 
Andrew Lewman clean up the dead mirror li...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Roger Dingledine authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

634) 
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

654) 
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

674) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

694) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

714) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

734) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

754) 
Andrew Lewman add a slew of mirrors in china

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

773)         },
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

774) 
775)         mirror038 => {
776)             adminContact => "",
777)             orgName => "",
778)             isoCC => "IN",
779)             subRegion => "",
780)             region => "IN",
781)             ipv4 => "True",
782)             ipv6 => "False",
783)             loadBalanced => "No",
784)             httpWebsiteMirror => "http://www.torproject.org.in",
785)             httpsWebsiteMirror => "",
786)             rsyncWebsiteMirror => "",
787)             ftpWebsiteMirror => "",
788)             httpDistMirror => "http://www.torproject.org.in/dist/",
789)             httpsDistMirror => "",
790)             rsyncDistMirror => "",
791)             hiddenServiceMirror => "",
792)             updateDate => "Unknown",
793)         },
794) 
795)         mirror039 => {
796)             adminContact => "",
797)             orgName => "",
798)             isoCC => "LU",
799)             subRegion => "",
800)             region => "LU",
801)             ipv4 => "True",
802)             ipv6 => "False",
803)             loadBalanced => "No",
804)             httpWebsiteMirror => "http://tor.idnr.at",
805)             httpsWebsiteMirror => "",
806)             rsyncWebsiteMirror => "",
807)             ftpWebsiteMirror => "",
Andrew Lewman add the luxembourg dist mir...

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

811)             hiddenServiceMirror => "",
812)         },
813) 
814)         mirror040 => {
815)             adminContact => "",
Jon@svn.torproject.org oops

Jon@svn.torproject.org authored 14 years ago

816)             orgName => "StrangeCharm",
817)             isoCC => "",
Jon@svn.torproject.org add mirror - http://archive...

Jon@svn.torproject.org authored 14 years ago

818)             subRegion => "",
Jon@svn.torproject.org oops

Jon@svn.torproject.org authored 14 years ago

819)             region => "FR",
Jon@svn.torproject.org add mirror - http://archive...

Jon@svn.torproject.org authored 14 years ago

820)             ipv4 => "True",
821)             ipv6 => "False",
822)             loadBalanced => "No",
823)             httpWebsiteMirror => "http://torproject.the-onion-router.net/",
824)             httpsWebsiteMirror => "",
825)             rsyncWebsiteMirror => "",
826)             ftpWebsiteMirror => "",
827)             httpDistMirror => "http://torproject.the-onion-router.net/dist",
828)             httpsDistMirror => "",
829)             rsyncDistMirror => "",
Andrew Lewman add two new mirrors.

Andrew Lewman authored 14 years ago

830)             hiddenServiceMirror => "",
831)         },
832) 
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

833) );
834) 
835) my $count = values %m;
836) print "We have a total of $count mirrors\n";
837) print "Fetching the last updated date for each mirror.\n";
838) 
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

845) foreach my $server ( keys %m ) {
846) 
847)     print "Attempting to fetch from $m{$server}{'orgName'}\n";
848) 
849)     if ($m{$server}{'httpWebsiteMirror'}) {
850)         print "Attempt to fetch via HTTP.\n";
851)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpWebsiteMirror'}");
852)     } elsif ($m{$server}{'httpsWebsiteMirror'}) {
853)         print "Attempt to fetch via HTTPS.\n";
854)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpsWebsiteMirror'}");
855)     } elsif ($m{$server}{'ftpWebsiteMirror'}) {
856)         print "Attempt to fetch via FTP.\n";
857)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'ftpWebsiteMirror'}");
858)     } else {
859)         print "We were unable to fetch or store anything. We still have the following: $m{$server}{'updateDate'}\n";
860)     }
861) 
862)     print "We fetched and stored the following: $m{$server}{'updateDate'}\n";
863) 
864)  }
865) 
866) 
867) print "We sorted the following mirrors by their date of last update: \n";
868) foreach my $server ( sort { $m{$b}{'updateDate'} <=> $m{$a}{'updateDate'}} keys %m ) {
869) 
870)      print "\n";
871)      print "Mirror $m{$server}{'orgName'}: \n";
872) 
873)      foreach my $attrib ( sort keys %{$m{$server}} ) {
874)         print "$attrib = $m{$server}{$attrib}";
875)         print "\n";
876)      };
877) }
878) 
879) my $outFile = "include/mirrors-table.wmi";
880) my $html;
881) open(OUT, "> $outFile") or die "Can't open $outFile: $!";
882) 
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

893) print OUT <<"END";
894)      \n<tr>\n
895)          <td>$m{$server}{'isoCC'}</td>\n
896)          <td>$m{$server}{'orgName'}</td>\n
897)          <td>$time</td>\n
898) END
899) 
900)      my %prettyNames = (
901)                         httpWebsiteMirror => "http",
902)                         httpsWebsiteMirror => "https",
903)                         ftpWebsiteMirror => "ftp",
904)                         rsyncWebsiteMirror => "rsync",
905)                         httpDistMirror => "http",
906)                         httpsDistMirror => "https",
907)                         rsyncDistMirrors => "rsync", );
908) 
909)      foreach my $precious ( sort keys %prettyNames )
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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