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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

52) 
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

83) my %m = (
84) 
Andrew Lewman add CoralCDN into the mix.

Andrew Lewman authored 13 years ago

85)         
86)         mirror000 => {
87)             adminContact => "coralcdn.org",
88)             orgName => "CoralCDN",
89)             isoCC => "INT",
90)             subRegion => "",
91)             region => "INT",
92)             ipv4 => "True",
93)             ipv6 => "False",
94)             loadBalanced => "Yes",
95)             httpWebsiteMirror => "http://www.torproject.org.nyud.net/",
96)             httpsWebsiteMirror => "",
97)             rsyncWebsiteMirror => "",
98)             ftpWebsiteMirror => "",
99)             httpDistMirror => "http://www.torproject.org.nyud.net/dist/",
100)             httpsDistMirror => "",
101)             rsyncDistMirror => "",
102)             hiddenServiceMirror => "",
103)             updateDate => "Unknown",
104) 
105)         },
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/",
Andrew Lewman per BarkerJr, update https:...

Andrew Lewman authored 13 years ago

117)             httpsWebsiteMirror => "https://www.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/",
Andrew Lewman per BarkerJr, update https:...

Andrew Lewman authored 13 years ago

121)             httpsDistMirror => "https://www.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) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

228)             ftpWebsiteMirror => "",
229)             httpDistMirror => "http://tor.ccc.de/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 purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

240)             ipv4 => "True",
241)             ipv6 => "False",
242)             loadBalanced => "Unknown",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

245)             ftpWebsiteMirror => "",
Andrew Lewman update a mirror

Andrew Lewman authored 13 years ago

246)             httpDistMirror => "http://theonionrouter.com/dist/",
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)         },
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

262)             ftpWebsiteMirror => "",
Andrew Lewman purge the dead mirrors that...

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Roger Dingledine authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

395)             ipv4 => "True",
396)             ipv6 => "False",
397)             loadBalanced => "No",
398)             httpWebsiteMirror => "http://tor.homosu.net/",
399)             httpsWebsiteMirror => "",
400)             rsyncWebsiteMirror => "",
401)             ftpWebsiteMirror => "",
402)             httpDistMirror => "http://tor.homosu.net/dist",
403)             httpsDistMirror => "",
404)             rsyncDistMirror => "",
Andrew Lewman Add 1.5 of the estonian mir...

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

426) 
Andrew Lewman add a new mirror

Andrew Lewman authored 13 years ago

427)         mirror028 => {
Andrew Lewman add new mirror

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

430)             isoCC => "US",
431)             subRegion => "WA",
432)             region => "US",
433)             ipv4 => "True",
434)             ipv6 => "False",
435)             loadBalanced => "No",
436)             httpWebsiteMirror => "http://torproject.nwlinux.us",
437)             httpsWebsiteMirror => "",
Andrew Lewman add updated nwlinux mirrors.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

439)             ftpWebsiteMirror => "",
440)             httpDistMirror => "http://torproject.nwlinux.us/dist",
441)             httpsDistMirror => "",
Andrew Lewman add updated nwlinux mirrors.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

446)             adminContact => "",
447)             orgName => "LazyTiger",
448)             isoCC => "FR",
449)             subRegion => "",
450)             region => "FR",
451)             ipv4 => "True",
452)             ipv6 => "False",
453)             loadBalanced => "No",
454)             httpWebsiteMirror => "http://tor.taiga-san.net/",
455)             httpsWebsiteMirror => "",
456)             rsyncWebsiteMirror => "",
457)             ftpWebsiteMirror => "",
458)             httpDistMirror => "http://tor.taiga-san.net/dist",
459)             httpsDistMirror => "",
460)             rsyncDistMirror => "",
Andrew Lewman Add the searchprivate mirror.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

464)             adminContact => "",
465)             orgName => "searchprivate",
466)             isoCC => "US",
467)             subRegion => "TX",
468)             region => "US",
469)             ipv4 => "True",
470)             ipv6 => "False",
471)             loadBalanced => "No",
472)             httpWebsiteMirror => "http://tor.searchprivate.com",
473)             httpsWebsiteMirror => "",
474)             rsyncWebsiteMirror => "",
475)             ftpWebsiteMirror => "",
476)             httpDistMirror => "http://tor.searchprivate.com/dist",
477)             httpsDistMirror => "",
478)             rsyncDistMirror => "",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

482)             adminContact => "",
483)             orgName => "cyberarmy",
484)             isoCC => "AT",
485)             subRegion => "",
486)             region => "AT",
487)             ipv4 => "True",
488)             ipv6 => "False",
489)             loadBalanced => "No",
490)             httpWebsiteMirror => "http://tor.cyberarmy.at",
491)             httpsWebsiteMirror => "",
492)             rsyncWebsiteMirror => "",
493)             ftpWebsiteMirror => "",
494)             httpDistMirror => "http://tor.cyberarmy.at/dist",
495)             httpsDistMirror => "",
496)             rsyncDistMirror => "",
497)             hiddenServiceMirror => "",
498)         },
499)         mirror032 => {
500)             adminContact => "",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

509)             httpsWebsiteMirror => "",
510)             rsyncWebsiteMirror => "",
511)             ftpWebsiteMirror => "",
512)             httpDistMirror => "http://torproject.is/dist",
513)             httpsDistMirror => "",
514)             rsyncDistMirror => "",
Andrew Lewman add the tomyn mirror.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

516)         },
517)         mirror033 => {
518)             adminContact => "",
519)             orgName => "torservers",
520)             isoCC => "DE",
521)             subRegion => "",
522)             region => "DE",
523)             ipv4 => "True",
524)             ipv6 => "False",
525)             loadBalanced => "No",
526)             httpWebsiteMirror => "http://www.torservers.net/mirrors/torproject.org/",
527)             httpsWebsiteMirror => "https://www.torservers.net/mirrors/torproject.org/",
528)             rsyncWebsiteMirror => "",
529)             ftpWebsiteMirror => "",
530)             httpDistMirror => "http://www.torservers.net/mirrors/torproject.org/dist",
531)             httpsDistMirror => "https://www.torservers.net/mirrors/torproject.org/dist",
532)             rsyncDistMirror => "",
533)             hiddenServiceMirror => "http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/",
Andrew Lewman add http://tor.webersiedlun...

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 12 years ago

535)         mirror036 => {
536)             adminContact => "",
537)             orgName => "",
538)             isoCC => "NL",
539)             subRegion => "",
540)             region => "NL",
541)             ipv4 => "True",
542)             ipv6 => "False",
543)             loadBalanced => "No",
544)             httpWebsiteMirror => "",
545)             httpsWebsiteMirror => "",
546)             rsyncWebsiteMirror => "",
547)             ftpWebsiteMirror => "",
548)             httpDistMirror => "",
549)             httpsDistMirror => "https://www.coevoet.nl/tor/dist",
550)             rsyncDistMirror => "",
551)             hiddenServiceMirror => "",
Andrew Lewman add commas in the right pla...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

559)             ipv4 => "True",
560)             ipv6 => "False",
561)             loadBalanced => "No",
562)             httpWebsiteMirror => "https://torproject.crypto.is",
Andrew Lewman update mirrors list and mir...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

564)             rsyncWebsiteMirror => "",
565)             ftpWebsiteMirror => "",
566)             httpDistMirror => "https://torproject.crypto.is/dist",
Andrew Lewman update mirrors list and mir...

Andrew Lewman authored 12 years ago

567)             httpsDistMirror => "https://torproject.crypto.is/dist",
568)             rsyncDistMirror => "",
569)             hiddenServiceMirror => "",
570)       },
571)         mirror038 => {
572)             adminContact => "",
573)             orgName => "",
574)             isoCC => "LT",
575)             subRegion => "",
576)             region => "LT",
577)             ipv4 => "True",
578)             ipv6 => "False",
579)             loadBalanced => "No",
580)             httpWebsiteMirror => "http://tor.vesta.nu",
581)             httpsWebsiteMirror => "",
582)             rsyncWebsiteMirror => "",
583)             ftpWebsiteMirror => "",
584)             httpDistMirror => "http://tor.vesta.nu/dist",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

592)             isoCC => "DE",
593)             subRegion => "",
594)             region => "DE",
595)             ipv4 => "True",
596)             ipv6 => "False",
597)             loadBalanced => "No",
598)             httpWebsiteMirror => "http://tor.key-server.org",
599)             httpsWebsiteMirror => "https://tor.key-server.org",
600)             rsyncWebsiteMirror => "",
Andrew Lewman add an ftp mirror, update a...

Andrew Lewman authored 12 years ago

601)             ftpWebsiteMirror => "ftp://key-server.org/tor",
Andrew Lewman add tor-key-server mirror.

Andrew Lewman authored 12 years ago

602)             httpDistMirror => "http://tor.key-server.org/dist",
603)             httpsDistMirror => "https://tor.key-server.org/dist",
604)             rsyncDistMirror => "",
Andrew Lewman add http://tor.freie-re.de...

Andrew Lewman authored 12 years ago

605)             hiddenServiceMirror => "",
606)       },
607)         mirror040 => {
608)             adminContact => "",
609)             orgName => "",
610)             isoCC => "DE",
611)             subRegion => "",
612)             region => "DE",
613)             ipv4 => "True",
614)             ipv6 => "False",
615)             loadBalanced => "No",
616)             httpWebsiteMirror => "http://tor.freie-re.de",
617)             httpsWebsiteMirror => "",
618)             rsyncWebsiteMirror => "",
619)             ftpWebsiteMirror => "",
620)             httpDistMirror => "http://tor.freie-re.de/dist",
621)             httpsDistMirror => "",
622)             rsyncDistMirror => "",
Andrew Lewman add http://mirror.host4site...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

628)             isoCC => "IL",
629)             subRegion => "",
630)             region => "IL",
631)             ipv4 => "True",
632)             ipv6 => "False",
633)             loadBalanced => "No",
634)             httpWebsiteMirror => "http://mirror.host4site.co.il/torproject.org/",
635)             httpsWebsiteMirror => "",
636)             rsyncWebsiteMirror => "",
637)             ftpWebsiteMirror => "",
638)             httpDistMirror => "http://mirror.host4site.co.il/torproject.org/dist",
639)             httpsDistMirror => "",
640)             rsyncDistMirror => "",
Andrew Lewman add fodt.it mirror.

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

667)             ipv4 => "True",
668)             ipv6 => "False",
669)             loadBalanced => "No",
670)             httpWebsiteMirror => "http://tor.factor.cc/",
Andrew Lewman update factor.cc https mirr...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

714)       },
715)         mirror046 => {
716)             adminContact => "",
717)             orgName => "",
718)             isoCC => "DE",
719)             subRegion => "",
720)             region => "DE",
721)             ipv4 => "True",
722)             ipv6 => "False",
723)             loadBalanced => "No",
724)             httpWebsiteMirror => "",
725)             httpsWebsiteMirror => "",
726)             rsyncWebsiteMirror => "rsync://cryptowars.info/tor",
727)             ftpWebsiteMirror => "ftp://cryptowars.info/tor/",
728)             httpDistMirror => "http://tor-dist.cryptowars.info/",
729)             httpsDistMirror => "https://tor-dist.cryptowars.info/",
730)             rsyncDistMirror => "rsync://cryptowars.info/tor-dist",
731)             hiddenServiceMirror => "",
Andrew Lewman add the crypto.is mirror.

Andrew Lewman authored 12 years ago

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

Jacob Appelbaum authored 15 years ago

733) );
734) 
735) my $count = values %m;
736) print "We have a total of $count mirrors\n";
737) print "Fetching the last updated date for each mirror.\n";
738) 
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

745) foreach my $server ( keys %m ) {
746) 
747)     print "Attempting to fetch from $m{$server}{'orgName'}\n";
748) 
749)     if ($m{$server}{'httpWebsiteMirror'}) {
750)         print "Attempt to fetch via HTTP.\n";
751)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpWebsiteMirror'}");
752)     } elsif ($m{$server}{'httpsWebsiteMirror'}) {
753)         print "Attempt to fetch via HTTPS.\n";
754)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpsWebsiteMirror'}");
755)     } elsif ($m{$server}{'ftpWebsiteMirror'}) {
756)         print "Attempt to fetch via FTP.\n";
757)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'ftpWebsiteMirror'}");
758)     } else {
759)         print "We were unable to fetch or store anything. We still have the following: $m{$server}{'updateDate'}\n";
760)     }
761) 
762)     print "We fetched and stored the following: $m{$server}{'updateDate'}\n";
763) 
764)  }
765) 
766) 
767) print "We sorted the following mirrors by their date of last update: \n";
768) foreach my $server ( sort { $m{$b}{'updateDate'} <=> $m{$a}{'updateDate'}} keys %m ) {
769) 
770)      print "\n";
771)      print "Mirror $m{$server}{'orgName'}: \n";
772) 
773)      foreach my $attrib ( sort keys %{$m{$server}} ) {
774)         print "$attrib = $m{$server}{$attrib}";
775)         print "\n";
776)      };
777) }
778) 
779) my $outFile = "include/mirrors-table.wmi";
780) my $html;
781) open(OUT, "> $outFile") or die "Can't open $outFile: $!";
782) 
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

793) print OUT <<"END";
794)      \n<tr>\n
795)          <td>$m{$server}{'isoCC'}</td>\n
796)          <td>$m{$server}{'orgName'}</td>\n
797)          <td>$time</td>\n
798) END
799) 
800)      my %prettyNames = (
801)                         httpWebsiteMirror => "http",
802)                         httpsWebsiteMirror => "https",
803)                         ftpWebsiteMirror => "ftp",
804)                         rsyncWebsiteMirror => "rsync",
805)                         httpDistMirror => "http",
806)                         httpsDistMirror => "https",
807)                         rsyncDistMirrors => "rsync", );
808) 
809)      foreach my $precious ( sort keys %prettyNames )
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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