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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 12 years ago

43)     my $trace = "project/trace/www-master.torproject.org"; # this file should always exist
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

52) 
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

83) my %m = (
84) 
Andrew Lewman update mirrors.

Andrew Lewman authored 11 years ago

85) 
Andrew Lewman add CoralCDN into the mix.

Andrew Lewman authored 13 years ago

86)         mirror000 => {
87)             adminContact => "coralcdn.org",
88)             orgName => "CoralCDN",
89)             isoCC => "INT",
90)             subRegion => "",
91)             region => "INT",
92)             ipv4 => "True",
93)             ipv6 => "False",
94)             loadBalanced => "Yes",
95)             httpWebsiteMirror => "http://www.torproject.org.nyud.net/",
96)             httpsWebsiteMirror => "",
97)             rsyncWebsiteMirror => "",
98)             ftpWebsiteMirror => "",
99)             httpDistMirror => "http://www.torproject.org.nyud.net/dist/",
100)             httpsDistMirror => "",
101)             rsyncDistMirror => "",
102)             hiddenServiceMirror => "",
103)             updateDate => "Unknown",
104)         },
105) 
Jon@svn.torproject.org Reorder mirrors.

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jacob Appelbaum authored 15 years ago

137)             ftpWebsiteMirror => "",
138)             rsyncWebsiteMirror => "",
Andrew Lewman update mirrors.

Andrew Lewman authored 11 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Jacob Appelbaum authored 15 years ago

200)             orgName => "CCC",
201)             isoCC => "NL",
202)             subRegion => "",
203)             region => "Europe",
204)             ipv4 => "True",
205)             ipv6 => "False",
206)             loadBalanced => "Unknown",
207)             httpWebsiteMirror => "http://tor.ccc.de/",
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

209)             ftpWebsiteMirror => "",
210)             httpDistMirror => "http://tor.ccc.de/dist/",
211)             rsyncDistMirror => "",
Jacob Appelbaum Fix a date bug.

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Mfr authored 15 years ago

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

Andrew Lewman authored 13 years ago

218)             isoCC => "IS",
219)             subRegion => "",
220)             region => "Iceland",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

221)             ipv4 => "True",
222)             ipv6 => "False",
223)             loadBalanced => "Unknown",
Andrew Lewman add xpdm back to the list,...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

227)             ftpWebsiteMirror => "",
Andrew Lewman add xpdm back to the list,...

Andrew Lewman authored 12 years ago

228)             httpDistMirror => "http://theonionrouter.com/dist/",
229)             httpsDistMirror => "",
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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)         },
Andrew Lewman add xpdm back to the list,...

Andrew Lewman authored 12 years ago

233)     mirror014 => {
234)         adminContact => "tormaster AT xpdm DOT us",
235)         orgName => "Xpdm",
236)         isoCC => "US",
237)         subRegion => "",
238)         region => "North America",
239)         ipv4 => "True",
240)         ipv6 => "False",
241)         loadBalanced => "Unknown",
242)         httpWebsiteMirror => "http://torproj.xpdm.us/",
243)         httpsWebsiteMirror => "https://torproj.xpdm.us/",
244)         rsyncWebsiteMirror => "",
245)         ftpWebsiteMirror => "",
246)         httpDistMirror => "http://torproj.xpdm.us/dist/",
247)         httpsDistMirror => "https://torproj.xpdm.us/dist/",
248)         rsyncDistMirror => "",
249)         hiddenServiceMirror => "http://h3prhz46uktgm4tt.onion/",
250)         updateDate => "Unknown",
251)         },
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 15 years ago

273)             adminContact => "",
274)             orgName => "chaos darmstadt",
275)             isoCC => "DE",
276)             subRegion => "Germany",
277)             region => "Europe",
278)             ipv4 => "True",
279)             ipv6 => "False",
280)             loadBalanced => "No",
281)             httpWebsiteMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/",
282)             httpsWebsiteMirror => "",
283)             rsyncWebsiteMirror => "",
284)             ftpWebsiteMirror => "",
285)             httpDistMirror => "http://mirrors.chaos-darmstadt.de/tor-mirror/dist/",
286)             httpsDistMirror => "",
287)             rsyncDistMirror => "",
288)             hiddenServiceMirror => "",
289)             updateDate => "Unknown",
Andrew Lewman add the newest two mirrors

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

295)             isoCC => "US",
296)             subRegion => "California",
297)             region => "US",
298)             ipv4 => "True",
299)             ipv6 => "False",
300)             loadBalanced => "No",
301)             httpWebsiteMirror => "http://tor.askapache.com/",
302)             httpsWebsiteMirror => "",
303)             rsyncWebsiteMirror => "",
304)             ftpWebsiteMirror => "",
Jon@svn.torproject.org Update AskApache - http://a...

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

306)             httpsDistMirror => "",
307)             rsyncDistMirror => "",
308)             hiddenServiceMirror => "",
309)             updateDate => "Unknown",
Andrew Lewman add commas in the right places

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

318)             ipv4 => "True",
319)             ipv6 => "False",
320)             loadBalanced => "No",
Jon@svn.torproject.org Delist "digitip" DNS deconf...

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

335)             isoCC => "IN",
336)             subRegion => "",
337)             region => "IN",
338)             ipv4 => "True",
339)             ipv6 => "False",
340)             loadBalanced => "No",
Jon@svn.torproject.org resolving inconsistancy

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 14 years ago

342)             httpsWebsiteMirror => "",
343)             rsyncWebsiteMirror => "",
344)             ftpWebsiteMirror => "",
345)             httpDistMirror => "http://www.torproject.org.in/dist/",
346)             httpsDistMirror => "",
347)             rsyncDistMirror => "",
348)             hiddenServiceMirror => "",
349)             updateDate => "Unknown",
350)         },
351) 
Andrew Lewman purge all of the consistent...

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 14 years ago

358)             ipv4 => "True",
359)             ipv6 => "False",
360)             loadBalanced => "No",
361)             httpWebsiteMirror => "http://tor.homosu.net/",
362)             httpsWebsiteMirror => "",
363)             rsyncWebsiteMirror => "",
364)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

375)             subRegion => "",
376)             region => "EE",
377)             ipv4 => "True",
378)             ipv6 => "False",
379)             loadBalanced => "No",
380)             httpWebsiteMirror => "http://cyberside.planet.ee/tor/",
381)             httpsWebsiteMirror => "",
382)             rsyncWebsiteMirror => "",
383)             ftpWebsiteMirror => "",
Andrew Lewman update the cyberside mirror

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 14 years ago

389) 
Andrew Lewman add a new mirror

Andrew Lewman authored 13 years ago

390)         mirror028 => {
Andrew Lewman add new mirror

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

393)             isoCC => "US",
394)             subRegion => "WA",
395)             region => "US",
396)             ipv4 => "True",
397)             ipv6 => "False",
398)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

406)             hiddenServiceMirror => "",
407)         },
Andrew Lewman 5coluna is down.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

409)             adminContact => "",
410)             orgName => "LazyTiger",
411)             isoCC => "FR",
412)             subRegion => "",
413)             region => "FR",
414)             ipv4 => "True",
415)             ipv6 => "False",
416)             loadBalanced => "No",
417)             httpWebsiteMirror => "http://tor.taiga-san.net/",
418)             httpsWebsiteMirror => "",
419)             rsyncWebsiteMirror => "",
420)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

422)             httpsDistMirror => "",
423)             rsyncDistMirror => "",
Andrew Lewman Add the searchprivate mirror.

Andrew Lewman authored 13 years ago

424)             hiddenServiceMirror => "",
425)         },
Andrew Lewman 5coluna is down.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

427)             adminContact => "",
428)             orgName => "searchprivate",
429)             isoCC => "US",
430)             subRegion => "TX",
431)             region => "US",
432)             ipv4 => "True",
433)             ipv6 => "False",
434)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

436)             httpsWebsiteMirror => "",
437)             rsyncWebsiteMirror => "",
438)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

440)             httpsDistMirror => "",
441)             rsyncDistMirror => "",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

445)             adminContact => "",
446)             orgName => "cyberarmy",
447)             isoCC => "AT",
448)             subRegion => "",
449)             region => "AT",
450)             ipv4 => "True",
451)             ipv6 => "False",
452)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

453)             httpWebsiteMirror => "http://tor.cyberarmy.at/",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

454)             httpsWebsiteMirror => "",
455)             rsyncWebsiteMirror => "",
456)             ftpWebsiteMirror => "",
Andrew Lewman clean up some obvious dead...

Andrew Lewman authored 12 years ago

457)             httpDistMirror => "",
Andrew Lewman add cyberarmy and iceland m...

Andrew Lewman authored 13 years ago

458)             httpsDistMirror => "",
459)             rsyncDistMirror => "",
460)             hiddenServiceMirror => "",
461)         },
462)         mirror032 => {
463)             adminContact => "",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

465)             isoCC => "IS",
466)             subRegion => "",
467)             region => "IS",
468)             ipv4 => "True",
469)             ipv6 => "False",
470)             loadBalanced => "No",
Andrew Lewman dump the dead mirrors, fix...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

476)             httpsDistMirror => "",
477)             rsyncDistMirror => "",
Andrew Lewman add the tomyn mirror.

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

479)         },
480)         mirror033 => {
481)             adminContact => "",
482)             orgName => "torservers",
483)             isoCC => "DE",
484)             subRegion => "",
485)             region => "DE",
486)             ipv4 => "True",
487)             ipv6 => "False",
488)             loadBalanced => "No",
489)             httpWebsiteMirror => "http://www.torservers.net/mirrors/torproject.org/",
490)             httpsWebsiteMirror => "https://www.torservers.net/mirrors/torproject.org/",
491)             rsyncWebsiteMirror => "",
492)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 13 years ago

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

Andrew Lewman authored 12 years ago

498)         mirror036 => {
499)             adminContact => "",
500)             orgName => "",
501)             isoCC => "NL",
502)             subRegion => "",
503)             region => "NL",
504)             ipv4 => "True",
505)             ipv6 => "False",
506)             loadBalanced => "No",
507)             httpWebsiteMirror => "",
508)             httpsWebsiteMirror => "",
509)             rsyncWebsiteMirror => "",
510)             ftpWebsiteMirror => "",
511)             httpDistMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

513)             rsyncDistMirror => "",
514)             hiddenServiceMirror => "",
Andrew Lewman update mirrors list and mir...

Andrew Lewman authored 12 years ago

515)       },
516)         mirror038 => {
517)             adminContact => "",
518)             orgName => "",
519)             isoCC => "LT",
520)             subRegion => "",
521)             region => "LT",
522)             ipv4 => "True",
523)             ipv6 => "False",
524)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

526)             httpsWebsiteMirror => "",
527)             rsyncWebsiteMirror => "",
528)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

533)       },
534)         mirror040 => {
535)             adminContact => "",
536)             orgName => "",
537)             isoCC => "DE",
538)             subRegion => "",
539)             region => "DE",
540)             ipv4 => "True",
541)             ipv6 => "False",
542)             loadBalanced => "No",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

544)             httpsWebsiteMirror => "",
545)             rsyncWebsiteMirror => "",
546)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

550)             hiddenServiceMirror => "",
551)       },
552)         mirror041 => {
553)             adminContact => "",
Andrew Lewman add the org for Host4site

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

555)             isoCC => "IL",
556)             subRegion => "",
557)             region => "IL",
558)             ipv4 => "True",
559)             ipv6 => "False",
560)             loadBalanced => "No",
561)             httpWebsiteMirror => "http://mirror.host4site.co.il/torproject.org/",
562)             httpsWebsiteMirror => "",
563)             rsyncWebsiteMirror => "",
564)             ftpWebsiteMirror => "",
Andrew Lewman update the list of mirrors...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

566)             httpsDistMirror => "",
567)             rsyncDistMirror => "",
Andrew Lewman add fodt.it mirror.

Andrew Lewman authored 12 years ago

568)             hiddenServiceMirror => "",
Andrew Lewman add Tunisian mirror, remove...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

589)             adminContact => "",
590)             orgName => "",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

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

Andrew Lewman authored 12 years ago

594)             ipv4 => "True",
595)             ipv6 => "False",
596)             loadBalanced => "No",
Andrew Lewman add a new mirror, update tw...

Andrew Lewman authored 12 years ago

597)             httpWebsiteMirror => "http://torproject.antagonism.org/",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

598)             httpsWebsiteMirror => "https://torproject.antagonism.org/",
599)             rsyncWebsiteMirror => "",
600)             ftpWebsiteMirror => "",
Andrew Lewman remove antagonism/dist from...

Andrew Lewman authored 11 years ago

601)             httpDistMirror => "",
602)             httpsDistMirror => "",
Andrew Lewman remove a mirror, add a mirr...

Andrew Lewman authored 12 years ago

603)             rsyncDistMirror => "",
Andrew Lewman add new mirror, refresh mir...

Andrew Lewman authored 12 years ago

604)             hiddenServiceMirror => "",
Andrew Lewman add another mirror, refresh...

Andrew Lewman authored 12 years ago

605)       },
606)         mirror048 => {
607)             adminContact => "",
608)             orgName => "",
609)             isoCC => "AT",
610)             subRegion => "",
611)             region => "AT",
612)             ipv4 => "True",
613)             ipv6 => "True",
614)             loadBalanced => "No",
615)             httpWebsiteMirror => "http://tor.dont-know-me.at/",
616)             httpsWebsiteMirror => "",
617)             rsyncWebsiteMirror => "",
618)             ftpWebsiteMirror => "",
619)             httpDistMirror => "http://tor.dont-know-me.at/dist/",
620)             httpsDistMirror => "",
621)             rsyncDistMirror => "",
Andrew Lewman add a new mirror in iceland...

Andrew Lewman authored 12 years ago

622)             hiddenServiceMirror => "",
623)         },
624)         mirror049 => {
625)             adminContact => "IceBear",
Andrew Lewman update mirrors again.

Andrew Lewman authored 12 years ago

626)             orgName => "myRL.net",
Andrew Lewman add a new mirror in iceland...

Andrew Lewman authored 12 years ago

627)             isoCC => "IS",
628)             subRegion => "",
629)             region => "IS",
630)             ipv4 => "True",
631)             ipv6 => "False",
632)             loadBalanced => "No",
633)             httpWebsiteMirror => "http://tor.myrl.net/",
634)             httpsWebsiteMirror => "https://tor.myrl.net/",
635)             rsyncWebsiteMirror => "",
636)             ftpWebsiteMirror => "",
637)             httpDistMirror => "http://tor.myrl.net/dist/",
638)             httpsDistMirror => "https://tor.myrl.net/dist/",
639)             rsyncDistMirror => "",
Andrew Lewman add a new mirror, refresh t...

Andrew Lewman authored 12 years ago

640)             hiddenServiceMirror => "",
641)         },
642)         mirror050 => {
643)             adminContact => "",
Andrew Lewman fix org name and update mir...

Andrew Lewman authored 12 years ago

644)             orgName => "borgmann.tv",
Andrew Lewman add a new mirror, refresh t...

Andrew Lewman authored 12 years ago

645)             isoCC => "DE",
646)             subRegion => "",
647)             region => "DE",
648)             ipv4 => "True",
649)             ipv6 => "False",
650)             loadBalanced => "No",
651)             httpWebsiteMirror => "http://tor.borgmann.tv/",
652)             httpsWebsiteMirror => "",
653)             rsyncWebsiteMirror => "",
654)             ftpWebsiteMirror => "",
655)             httpDistMirror => "http://tor.borgmann.tv/dist/",
656)             httpsDistMirror => "",
657)             rsyncDistMirror => "",
Andrew Lewman add a new mirror, update th...

Andrew Lewman authored 12 years ago

658)             hiddenServiceMirror => "",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

659)         },
660)         mirror051 => {
661)             adminContact => "",
662)             orgName => "torland",
Andrew Lewman update the mirrors table.

Andrew Lewman authored 12 years ago

663)             isoCC => "GB",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

664)             subRegion => "",
Andrew Lewman update the mirrors table.

Andrew Lewman authored 12 years ago

665)             region => "GB",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

666)             ipv4 => "True",
667)             ipv6 => "False",
668)             loadBalanced => "No",
Andrew Lewman fix torland mirror path, up...

Andrew Lewman authored 12 years ago

669)             httpWebsiteMirror => "http://mirror.torland.me/torproject.org/",
670)             httpsWebsiteMirror => "https://mirror.torland.me/torproject.org/",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

671)             rsyncWebsiteMirror => "",
672)             ftpWebsiteMirror => "",
Andrew Lewman fix torland mirror path, up...

Andrew Lewman authored 12 years ago

673)             httpDistMirror => "http://mirror.torland.me/torproject.org/dist/",
674)             httpsDistMirror => "https://mirror.torland.me/torproject.org/dist/",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

675)             rsyncDistMirror => "",
676)             hiddenServiceMirror => "",
677)         },
678)         mirror052 => {
679)             adminContact => "",
680)             orgName => "spline",
681)             isoCC => "DE",
682)             subRegion => "",
683)             region => "DE",
684)             ipv4 => "True",
685)             ipv6 => "False",
686)             loadBalanced => "No",
687)             httpWebsiteMirror => "http://tor.spline.de/",
Andrew Lewman add https spline mirror, up...

Andrew Lewman authored 12 years ago

688)             httpsWebsiteMirror => "https://tor.spline.inf.fu-berlin.de/",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

689)             rsyncWebsiteMirror => "rsync://ftp.spline.de/tor",
690)             ftpWebsiteMirror => "ftp://ftp.spline.de/pub/tor",
691)             httpDistMirror => "http://tor.spline.de/dist/",
Andrew Lewman add https spline mirror, up...

Andrew Lewman authored 12 years ago

692)             httpsDistMirror => "https://tor.spline.inf.fu-berlin.de/dist/",
Andrew Lewman update the mirrors with two...

Andrew Lewman authored 12 years ago

693)             rsyncDistMirror => "rsync://ftp.spline.de/tor/dist",
694)             hiddenServiceMirror => "",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 12 years ago

695)         },
696)         mirror053 => {
697)             adminContact => "",
698)             orgName => "",
699)             isoCC => "AT",
700)             subRegion => "",
701)             region => "AT",
702)             ipv4 => "True",
703)             ipv6 => "False",
704)             loadBalanced => "No",
705)             httpWebsiteMirror => "http://torproject.ph3x.at/",
706)             httpsWebsiteMirror => "",
707)             rsyncWebsiteMirror => "",
708)             ftpWebsiteMirror => "",
709)             httpDistMirror => "http://torproject.ph3x.at/dist/",
710)             httpsDistMirror => "",
711)             rsyncDistMirror => "",
Andrew Lewman add a new mirror and refres...

Andrew Lewman authored 12 years ago

712)             hiddenServiceMirror => "",
713)         },
714)         mirror054 => {
715)             adminContact => "",
Andrew Lewman fix hessmo details and dist...

Andrew Lewman authored 12 years ago

716)             orgName => "hessmo",
Andrew Lewman add a new mirror and refres...

Andrew Lewman authored 12 years ago

717)             isoCC => "US",
718)             subRegion => "",
719)             region => "US",
720)             ipv4 => "True",
721)             ipv6 => "False",
722)             loadBalanced => "No",
723)             httpWebsiteMirror => "http://mirror.hessmo.com/tor/",
724)             httpsWebsiteMirror => "",
725)             rsyncWebsiteMirror => "",
726)             ftpWebsiteMirror => "",
Andrew Lewman fix hessmo details and dist...

Andrew Lewman authored 12 years ago

727)             httpDistMirror => "http://mirror.hessmo.com/tor/dist/",
Andrew Lewman add a new mirror and refres...

Andrew Lewman authored 12 years ago

728)             httpsDistMirror => "",
729)             rsyncDistMirror => "",
Andrew Lewman add a new mirror, update th...

Andrew Lewman authored 12 years ago

730)             hiddenServiceMirror => "",
731)         },
Andrew Lewman add a new mirror, update st...

Andrew Lewman authored 12 years ago

732)         mirror056 => {
733)             adminContact => "",
734)             orgName => "",
Andrew Lewman make the italian mirror, it...

Andrew Lewman authored 12 years ago

735)             isoCC => "IT",
Andrew Lewman add a new mirror, update st...

Andrew Lewman authored 12 years ago

736)             subRegion => "",
Andrew Lewman make the italian mirror, it...

Andrew Lewman authored 12 years ago

737)             region => "IT",
Andrew Lewman add a new mirror, update st...

Andrew Lewman authored 12 years ago

738)             ipv4 => "True",
739)             ipv6 => "True",
740)             loadBalanced => "No",
741)             httpWebsiteMirror => "http://torproject.jcsh.it/",
742)             httpsWebsiteMirror => "",
743)             rsyncWebsiteMirror => "",
744)             ftpWebsiteMirror => "",
745)             httpDistMirror => "http://torproject.jcsh.it/dist/",
746)             httpsDistMirror => "",
747)             rsyncDistMirror => "",
Andrew Lewman add a new dist mirror, upda...

Andrew Lewman authored 12 years ago

748)             hiddenServiceMirror => "",
749)         },
750)         mirror057 => {
751)             adminContact => "",
Andrew Lewman update mirror lists.

Andrew Lewman authored 11 years ago

752)             orgName => "5ª Coluna",
Andrew Lewman add a new dist mirror, upda...

Andrew Lewman authored 12 years ago

753)             isoCC => "PT",
754)             subRegion => "",
755)             region => "PT",
756)             ipv4 => "True",
757)             ipv6 => "True",
758)             loadBalanced => "No",
Andrew Lewman update mirrors table, fix c...

Andrew Lewman authored 11 years ago

759)             httpWebsiteMirror => "http://torproject.pt/",
Andrew Lewman add a new dist mirror, upda...

Andrew Lewman authored 12 years ago

760)             httpsWebsiteMirror => "",
761)             rsyncWebsiteMirror => "",
762)             ftpWebsiteMirror => "",
Andrew Lewman update mirrors table, fix c...

Andrew Lewman authored 11 years ago

763)             httpDistMirror => "http://torproject.pt/dist/",
764)             httpsDistMirror => "",
Andrew Lewman add a new dist mirror, upda...

Andrew Lewman authored 12 years ago

765)             rsyncDistMirror => "",
Andrew Lewman add 2 new mirrors, re-run t...

Andrew Lewman authored 12 years ago

766)             hiddenServiceMirror => "",
767)         },
768)         mirror058 => {
769)             adminContact => "",
770)             orgName => "",
771)             isoCC => "US",
772)             subRegion => "",
773)             region => "US",
774)             ipv4 => "True",
775)             ipv6 => "True",
776)             loadBalanced => "No",
777)             httpWebsiteMirror => "http://tor.loritsu.com/",
778)             httpsWebsiteMirror => "",
779)             rsyncWebsiteMirror => "",
780)             ftpWebsiteMirror => "",
781)             httpDistMirror => "http://tor.loritsu.com/dist/",
782)             httpsDistMirror => "",
783)             rsyncDistMirror => "",
784)             hiddenServiceMirror => "",
785)         },
786)         mirror059 => {
787)             adminContact => "",
788)             orgName => "",
789)             isoCC => "US",
790)             subRegion => "",
791)             region => "US",
792)             ipv4 => "True",
793)             ipv6 => "True",
794)             loadBalanced => "No",
795)             httpWebsiteMirror => "http://tor.onthegetgo.com/",
796)             httpsWebsiteMirror => "",
797)             rsyncWebsiteMirror => "",
798)             ftpWebsiteMirror => "",
799)             httpDistMirror => "http://tor.onthegetgo.com/dist/",
800)             httpsDistMirror => "",
801)             rsyncDistMirror => "",
Andrew Lewman update mirrors table, add a...

Andrew Lewman authored 11 years ago

802)             hiddenServiceMirror => "",
803)         },
804)         mirror060 => {
805)             adminContact => "",
806)             orgName => "",
807)             isoCC => "DE",
808)             subRegion => "",
809)             region => "DE",
810)             ipv4 => "True",
811)             ipv6 => "False",
812)             loadBalanced => "No",
813)             httpWebsiteMirror => "http://torproject.cryptowars.info/",
814)             httpsWebsiteMirror => "https://torproject.cryptowars.info/",
815)             rsyncWebsiteMirror => "rsync://torproject.cryptowars.info/",
816)             ftpWebsiteMirror => "",
817)             httpDistMirror => "http://torproject.cryptowars.info/dist/",
818)             httpsDistMirror => "https://torproject.cryptowars.info/dist/",
819)             rsyncDistMirror => "",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 12 years ago

820)             hiddenServiceMirror => "",
Andrew Lewman add a new mirror, update mi...

Andrew Lewman authored 11 years ago

821)         },
Andrew Lewman add the new mirrors, remove...

Andrew Lewman authored 11 years ago

822)         mirror062 => {
823)             adminContact => "",
824)             orgName => "",
825)             isoCC => "DE",
826)             subRegion => "",
827)             region => "DE",
828)             ipv4 => "True",
829)             ipv6 => "False",
830)             loadBalanced => "No",
831)             httpWebsiteMirror => "http://tor.dev-random.de/",
832)             httpsWebsiteMirror => "https://tor.dev-random.de/",
833)             rsyncWebsiteMirror => "",
834)             ftpWebsiteMirror => "",
835)             httpDistMirror => "http://tor.dev-random.de/dist/",
836)             httpsDistMirror => "https://tor.dev-random.de/dist/",
837)             rsyncDistMirror => "",
838)             hiddenServiceMirror => "",
839)     },
840)         mirror063 => {
841)             adminContact => "",
Andrew Lewman fix the crazyhaze.de mirror...

Andrew Lewman authored 11 years ago

842)             orgName => "crazyhaze.de",
Andrew Lewman add the new mirrors, remove...

Andrew Lewman authored 11 years ago

843)             isoCC => "DE",
844)             subRegion => "",
845)             region => "DE",
846)             ipv4 => "True",
847)             ipv6 => "False",
848)             loadBalanced => "No",
849)             httpWebsiteMirror => "http://tor.crazyhaze.de/",
850)             httpsWebsiteMirror => "https://tor.crazyhaze.de/",
851)             rsyncWebsiteMirror => "",
852)             ftpWebsiteMirror => "",
Andrew Lewman fix the crazyhaze.de mirror...

Andrew Lewman authored 11 years ago

853)             httpDistMirror => "http://tor.crazyhaze.de/dist/",
854)             httpsDistMirror => "https://tor.crazyhaze.de/dist/",
Andrew Lewman add the new mirrors, remove...

Andrew Lewman authored 11 years ago

855)             rsyncDistMirror => "",
856)             hiddenServiceMirror => "",
Andrew Lewman add new mirror.

Andrew Lewman authored 11 years ago

857)     },
858)         mirror066 => {
859)             adminContact => "",
Andrew Lewman update lightning-bolt mirro...

Andrew Lewman authored 11 years ago

860)             orgName => "Lightning-bolt.net",
861)             isoCC => "CZ",
Andrew Lewman add new mirror.

Andrew Lewman authored 11 years ago

862)             subRegion => "",
Andrew Lewman update lightning-bolt mirro...

Andrew Lewman authored 11 years ago

863)             region => "CZ",
Andrew Lewman add new mirror.

Andrew Lewman authored 11 years ago

864)             ipv4 => "True",
865)             ipv6 => "False",
866)             loadBalanced => "No",
867)             httpWebsiteMirror => "http://torproject.lightning-bolt.net/",
868)             httpsWebsiteMirror => "",
869)             rsyncWebsiteMirror => "",
870)             ftpWebsiteMirror => "",
871)             httpDistMirror => "http://torproject.lightning-bolt.net/dist/",
872)             httpsDistMirror => "",
873)             rsyncDistMirror => "",
Andrew Lewman add a new mirror, update mi...

Andrew Lewman authored 11 years ago

874)             hiddenServiceMirror => "",
Andrew Lewman add the new samwhited mirro...

Andrew Lewman authored 11 years ago

875)     },
876)         mirror067 => {
877)             adminContact => "",
878)             orgName => "",
879)             isoCC => "US",
880)             subRegion => "",
881)             region => "US",
882)             ipv4 => "True",
883)             ipv6 => "False",
884)             loadBalanced => "No",
Andrew Lewman update samwhited mirror.

Andrew Lewman authored 11 years ago

885)             httpWebsiteMirror => "http://tor.mirrors.whitedholdings.org/",
886)             httpsWebsiteMirror => "https://tor.mirrors.whitedholdings.org/",
887)             rsyncWebsiteMirror => "rsync://mirrors.whitedholdings.org/tor",
Andrew Lewman add the new samwhited mirro...

Andrew Lewman authored 11 years ago

888)             ftpWebsiteMirror => "",
Andrew Lewman update samwhited mirror.

Andrew Lewman authored 11 years ago

889)             httpDistMirror => "http://tor.mirrors.whitedholdings.org/dist/",
890)             httpsDistMirror => "https://tor.mirrors.whitedholdings.org/dist/",
891)             rsyncDistMirror => "rsync://tor.mirrors.whitedholdings.org/tor-dist",
Andrew Lewman add the new samwhited mirro...

Andrew Lewman authored 11 years ago

892)             hiddenServiceMirror => "",
Andrew Lewman add a mirror in France, upd...

Andrew Lewman authored 11 years ago

893)      },
894)         mirror069 => {
895)             adminContact => "",
896)             orgName => "",
897)             isoCC => "FR",
898)             subRegion => "",
899)             region => "FR",
900)             ipv4 => "True",
901)             ipv6 => "False",
902)             loadBalanced => "No",
903)             httpWebsiteMirror => "http://tor.mirror.chekanov.net/",
904)             httpsWebsiteMirror => "",
905)             rsyncWebsiteMirror => "",
906)             ftpWebsiteMirror => "",
907)             httpDistMirror => "http://tor.mirror.chekanov.net/dist/",
908)             httpsDistMirror => "",
909)             rsyncDistMirror => "",
Andrew Lewman add mirror number 50, updat...

Andrew Lewman authored 11 years ago

910)             hiddenServiceMirror => "",
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

911)      },
Andrew Lewman add new mirror, remove two...

Andrew Lewman authored 11 years ago

912)         mirror071 => {
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

913)             adminContact => "",
Andrew Lewman add quintex org, refresh th...

Andrew Lewman authored 11 years ago

914)             orgName => "Quintex",
Andrew Lewman add new mirror, remove two...

Andrew Lewman authored 11 years ago

915)             isoCC => "US",
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

916)             subRegion => "",
Andrew Lewman add new mirror, remove two...

Andrew Lewman authored 11 years ago

917)             region => "US",
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

918)             ipv4 => "True",
919)             ipv6 => "False",
920)             loadBalanced => "No",
Andrew Lewman add new mirror, remove two...

Andrew Lewman authored 11 years ago

921)             httpWebsiteMirror => "http://tormirror.quintex.com/",
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

922)             httpsWebsiteMirror => "",
923)             rsyncWebsiteMirror => "",
924)             ftpWebsiteMirror => "",
Andrew Lewman add new mirror, remove two...

Andrew Lewman authored 11 years ago

925)             httpDistMirror => "http://tormirror.quintex.com/dist/",
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

926)             httpsDistMirror => "",
927)             rsyncDistMirror => "",
Andrew Lewman add two new mirrors. refres...

Andrew Lewman authored 11 years ago

928)             hiddenServiceMirror => "",
929)     },
930)         mirror072 => {
931)             adminContact => "",
932)             orgName => "",
933)             isoCC => "US",
934)             subRegion => "",
935)             region => "US",
936)             ipv4 => "True",
937)             ipv6 => "False",
938)             loadBalanced => "No",
939)             httpWebsiteMirror => "http://tor.minibofh.org/",
940)             httpsWebsiteMirror => "",
941)             rsyncWebsiteMirror => "",
942)             ftpWebsiteMirror => "",
943)             httpDistMirror => "http://tor.minibofh.org/dist/",
944)             httpsDistMirror => "",
945)             rsyncDistMirror => "",
946)             hiddenServiceMirror => "",
947)     },
948)         mirror073 => {
949)             adminContact => "",
950)             orgName => "",
951)             isoCC => "UA",
952)             subRegion => "",
953)             region => "UA",
954)             ipv4 => "True",
955)             ipv6 => "False",
956)             loadBalanced => "No",
957)             httpWebsiteMirror => "http://torua.reactor-xg.kiev.ua/",
958)             httpsWebsiteMirror => "",
959)             rsyncWebsiteMirror => "",
960)             ftpWebsiteMirror => "",
961)             httpDistMirror => "http://torua.reactor-xg.kiev.ua/dist/",
962)             httpsDistMirror => "",
963)             rsyncDistMirror => "",
Andrew Lewman add FoDT mirror and update...

Andrew Lewman authored 11 years ago

964)             hiddenServiceMirror => "",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 11 years ago

965)     },
966)         mirror075 => {
967)             adminContact => "",
Andrew Lewman update me0w and overall mir...

Andrew Lewman authored 11 years ago

968)             orgName => "me0w.cc",
969)             isoCC => "RO",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 11 years ago

970)             subRegion => "",
Andrew Lewman update me0w and overall mir...

Andrew Lewman authored 11 years ago

971)             region => "RO",
Andrew Lewman add a new mirror and update...

Andrew Lewman authored 11 years ago

972)             ipv4 => "True",
973)             ipv6 => "False",
974)             loadBalanced => "No",
975)             httpWebsiteMirror => "http://tor.me0w.cc/",
976)             httpsWebsiteMirror => "",
977)             rsyncWebsiteMirror => "",
978)             ftpWebsiteMirror => "",
979)             httpDistMirror => "http://tor.me0w.cc/dist/",
980)             httpsDistMirror => "",
981)             rsyncDistMirror => "",
Andrew Lewman update mirror status.

Andrew Lewman authored 11 years ago

982)             hiddenServiceMirror => "",
983)     },
984)         mirror076 => {
985)             adminContact => "",
986)             orgName => "",
987)             isoCC => "US",
988)             subRegion => "",
989)             region => "US",
990)             ipv4 => "True",
991)             ipv6 => "False",
992)             loadBalanced => "No",
993)             httpWebsiteMirror => "http://mirror.nametoday.me/tor/",
994)             httpsWebsiteMirror => "",
995)             rsyncWebsiteMirror => "",
996)             ftpWebsiteMirror => "",
997)             httpDistMirror => "http://mirror.nametoday.me/tor/dist/",
998)             httpsDistMirror => "",
999)             rsyncDistMirror => "",
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

1000)             hiddenServiceMirror => "",
Andrew Lewman update mirrors.

Andrew Lewman authored 11 years ago

1001)         },
1002)         mirror077 => {
1003)             adminContact => "",
1004)             orgName => "",
1005)             isoCC => "UK",
1006)             subRegion => "",
1007)             region => "UK",
1008)             ipv4 => "True",
1009)             ipv6 => "False",
1010)             loadBalanced => "No",
1011)             httpWebsiteMirror => "http://tor.mage.me.uk/",
1012)             httpsWebsiteMirror => "",
1013)             rsyncWebsiteMirror => "",
1014)             ftpWebsiteMirror => "",
1015)             httpDistMirror => "http://tor.mage.me.uk/dist/",
1016)             httpsDistMirror => "",
1017)             rsyncDistMirror => "",
Andrew Lewman add a new mirror.

Andrew Lewman authored 11 years ago

1018)             hiddenServiceMirror => "",
1019)     },
1020)         mirror078 => {
1021)             adminContact => "",
1022)             orgName => "",
1023)             isoCC => "CH",
1024)             subRegion => "",
1025)             region => "CH",
1026)             ipv4 => "True",
1027)             ipv6 => "False",
1028)             loadBalanced => "No",
1029)             httpWebsiteMirror => "http://torproject.pillo-srv.ch/",
1030)             httpsWebsiteMirror => "https://torproject.pillo-srv.ch/",
1031)             rsyncWebsiteMirror => "",
1032)             ftpWebsiteMirror => "",
1033)             httpDistMirror => "http://torproject.pillo-srv.ch/dist/",
1034)             httpsDistMirror => "https://torproject.pillo-srv.ch/dist/",
1035)             rsyncDistMirror => "",
Andrew Lewman update the list of mirrors.

Andrew Lewman authored 11 years ago

1036)             hiddenServiceMirror => "",
1037)     },
1038)         mirror079 => {
1039)             adminContact => "",
1040)             orgName => "",
1041)             isoCC => "LU",
1042)             subRegion => "",
1043)             region => "LU",
1044)             ipv4 => "True",
1045)             ipv6 => "False",
1046)             loadBalanced => "No",
1047)             httpWebsiteMirror => "http://torproject.adamas.ai/",
1048)             httpsWebsiteMirror => "",
1049)             rsyncWebsiteMirror => "",
1050)             ftpWebsiteMirror => "",
1051)             httpDistMirror => "http://torproject.adamas.ai/dist/",
1052)             httpsDistMirror => "",
1053)             rsyncDistMirror => "",
1054)             hiddenServiceMirror => "",
1055)     },
1056)         mirror080 => {
1057)             adminContact => "",
1058)             orgName => "",
1059)             isoCC => "FR",
1060)             subRegion => "",
1061)             region => "FR",
1062)             ipv4 => "True",
1063)             ipv6 => "False",
1064)             loadBalanced => "No",
1065)             httpWebsiteMirror => "http://torproject.c3l.lu/",
1066)             httpsWebsiteMirror => "",
1067)             rsyncWebsiteMirror => "",
1068)             ftpWebsiteMirror => "",
1069)             httpDistMirror => "http://torproject.c3l.lu/dist/",
1070)             httpsDistMirror => "",
1071)             rsyncDistMirror => "",
Andrew Lewman add tor.li mirror.

Andrew Lewman authored 11 years ago

1072)             hiddenServiceMirror => "",
1073)     },
1074)         mirror081 => {
1075)             adminContact => "",
1076)             orgName => "",
1077)             isoCC => "EE",
1078)             subRegion => "",
1079)             region => "EE",
1080)             ipv4 => "True",
1081)             ipv6 => "False",
1082)             loadBalanced => "No",
1083)             httpWebsiteMirror => "http://tor.li/",
Andrew Lewman update the tor.li mirror

Andrew Lewman authored 11 years ago

1084)             httpsWebsiteMirror => "https://tor.li/",
Andrew Lewman add tor.li mirror.

Andrew Lewman authored 11 years ago

1085)             rsyncWebsiteMirror => "",
1086)             ftpWebsiteMirror => "",
Andrew Lewman update the tor.li mirror

Andrew Lewman authored 11 years ago

1087)             httpDistMirror => "http://tor.li/dist/",
1088)             httpsDistMirror => "https://tor.li/dist/",
Andrew Lewman add tor.li mirror.

Andrew Lewman authored 11 years ago

1089)             rsyncDistMirror => "",
Andrew Lewman add nametoday.me mirror.

Andrew Lewman authored 11 years ago

1090)             hiddenServiceMirror => "",
1091)     },
1092)         mirror082 => {
1093)             adminContact => "",
1094)             orgName => "",
1095)             isoCC => "US",
1096)             subRegion => "",
1097)             region => "US",
1098)             ipv4 => "True",
1099)             ipv6 => "True",
1100)             loadBalanced => "No",
1101)             httpWebsiteMirror => "http://mirror.nametoday.me/tor/",
1102)             httpsWebsiteMirror => "",
1103)             rsyncWebsiteMirror => "",
1104)             ftpWebsiteMirror => "",
1105)             httpDistMirror => "http://mirror.nametoday.me/tor/dist/",
1106)             httpsDistMirror => "",
1107)             rsyncDistMirror => "",
Andrew Lewman add vieth-server mirror.

Andrew Lewman authored 11 years ago

1108)             hiddenServiceMirror => "",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

1109)     },
1110)         mirror085 => {
1111)             adminContact => "",
Andrew Lewman update mirror table, fix cr...

Andrew Lewman authored 11 years ago

1112)             orgName => "Soviet Anonymous",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

1113)             isoCC => "RU",
1114)             subRegion => "",
1115)             region => "RU",
1116)             ipv4 => "True",
1117)             ipv6 => "False",
1118)             loadBalanced => "No",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

1119)             httpWebsiteMirror => "http://creep.im/tor",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

1120)             httpsWebsiteMirror => "https://creep.im/tor",
1121)             rsyncWebsiteMirror => "",
1122)             ftpWebsiteMirror => "",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

1123)             httpDistMirror => "http://creep.im/tor/dist/",
Andrew Lewman update mirror table, fix cr...

Andrew Lewman authored 11 years ago

1124)             httpsDistMirror => "https://creep.im/tor/dist/",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

1125)             rsyncDistMirror => "",
Andrew Lewman add an ipv4 mirror.

Andrew Lewman authored 11 years ago

1126)             hiddenServiceMirror => "",
1127)     },
1128)         mirror086 => {
1129)             adminContact => "",
1130)             orgName => "",
1131)             isoCC => "US",
1132)             subRegion => "",
1133)             region => "US",
1134)             ipv4 => "True",
1135)             ipv6 => "False",
1136)             loadBalanced => "No",
1137)             httpWebsiteMirror => "http://199.175.55.215/",
1138)             httpsWebsiteMirror => "",
1139)             rsyncWebsiteMirror => "",
1140)             ftpWebsiteMirror => "",
1141)             httpDistMirror => "http://199.175.55.215/dist/",
1142)             httpsDistMirror => "",
1143)             rsyncDistMirror => "",
Andrew Lewman add new mirror in germany,...

Andrew Lewman authored 11 years ago

1144)             hiddenServiceMirror => "",
1145)     },
1146)         mirror087 => {
1147)             adminContact => "",
1148)             orgName => "",
1149)             isoCC => "DE",
1150)             subRegion => "",
1151)             region => "DE",
1152)             ipv4 => "True",
1153)             ipv6 => "False",
1154)             loadBalanced => "No",
1155)             httpWebsiteMirror => "http://tor.linuxlounge.net/",
1156)             httpsWebsiteMirror => "https://tor.linuxlounge.net/",
1157)             rsyncWebsiteMirror => "",
1158)             ftpWebsiteMirror => "",
1159)             httpDistMirror => "http://tor.linuxlounge.net/dist/",
1160)             httpsDistMirror => "https://tor.linuxlounge.net/dist/",
1161)             rsyncDistMirror => "",
Andrew Lewman update mirrors table.

Andrew Lewman authored 11 years ago

1162)             hiddenServiceMirror => "",
Andrew Lewman update mirror status, add a...

Andrew Lewman authored 11 years ago

1163)     },
1164)         mirror088 => {
1165)             adminContact => "",
1166)             orgName => "",
1167)             isoCC => "US",
1168)             subRegion => "",
1169)             region => "US",
1170)             ipv4 => "True",
1171)             ipv6 => "False",
1172)             loadBalanced => "No",
1173)             httpWebsiteMirror => "",
1174)             httpsWebsiteMirror => "",
1175)             rsyncWebsiteMirror => "",
1176)             ftpWebsiteMirror => "ftp://mirrors.go-part.com/tor/dist/",
1177)             httpDistMirror => "http://mirrors.go-part.com/tor/dist/",
1178)             httpsDistMirror => "",
1179)             rsyncDistMirror => "rsync://mirrors.go-part.com/tor/dist/",
1180)             hiddenServiceMirror => "",
Andrew Lewman update mirrors table with n...

Andrew Lewman authored 11 years ago

1181)     },
1182)         mirror089 => {
1183)             adminContact => "",
1184)             orgName => "",
1185)             isoCC => "US",
1186)             subRegion => "",
1187)             region => "US",
1188)             ipv4 => "True",
1189)             ipv6 => "False",
1190)             loadBalanced => "No",
1191)             httpWebsiteMirror => "",
1192)             httpsWebsiteMirror => "",
1193)             rsyncWebsiteMirror => "",
1194)             ftpWebsiteMirror => "",
1195)             httpDistMirror => "http://www.netgull.com/torproject/",
1196)             httpsDistMirror => "",
1197)             rsyncDistMirror => "",
1198)             hiddenServiceMirror => "",
Andrew Lewman add the cloudflare mirror,...

Andrew Lewman authored 11 years ago

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

Jacob Appelbaum authored 15 years ago

1200) );
1201) 
1202) my $count = values %m;
1203) print "We have a total of $count mirrors\n";
1204) print "Fetching the last updated date for each mirror.\n";
1205) 
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 12 years ago

1207) $tortime = FetchDate("https://www.torproject.org/");
Andrew Lewman update mirrors.

Andrew Lewman authored 11 years ago

1208) # Adjust offical Tor time by out-of-date offset: number of days * seconds per day
1209) $tortime -= 1 * 172800;
Andrew Lewman Change mirror script to use...

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

1212) foreach my $server ( keys %m ) {
1213) 
1214)     print "Attempting to fetch from $m{$server}{'orgName'}\n";
1215) 
1216)     if ($m{$server}{'httpWebsiteMirror'}) {
1217)         print "Attempt to fetch via HTTP.\n";
1218)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpWebsiteMirror'}");
1219)     } elsif ($m{$server}{'httpsWebsiteMirror'}) {
1220)         print "Attempt to fetch via HTTPS.\n";
1221)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'httpsWebsiteMirror'}");
1222)     } elsif ($m{$server}{'ftpWebsiteMirror'}) {
1223)         print "Attempt to fetch via FTP.\n";
1224)         $m{$server}{"updateDate"} = FetchDate("$m{$server}{'ftpWebsiteMirror'}");
1225)     } else {
1226)         print "We were unable to fetch or store anything. We still have the following: $m{$server}{'updateDate'}\n";
1227)     }
1228) 
1229)     print "We fetched and stored the following: $m{$server}{'updateDate'}\n";
1230) 
1231)  }
1232) 
1233) 
1234) print "We sorted the following mirrors by their date of last update: \n";
1235) foreach my $server ( sort { $m{$b}{'updateDate'} <=> $m{$a}{'updateDate'}} keys %m ) {
1236) 
1237)      print "\n";
1238)      print "Mirror $m{$server}{'orgName'}: \n";
1239) 
1240)      foreach my $attrib ( sort keys %{$m{$server}} ) {
1241)         print "$attrib = $m{$server}{$attrib}";
1242)         print "\n";
1243)      };
1244) }
1245) 
1246) my $outFile = "include/mirrors-table.wmi";
1247) my $html;
1248) open(OUT, "> $outFile") or die "Can't open $outFile: $!";
1249) 
Andrew Lewman updated mirrors, added new...

Andrew Lewman authored 15 years ago

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

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

Jacob Appelbaum authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jon@svn.torproject.org authored 14 years ago

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

Andrew Lewman authored 15 years ago

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

Andrew Lewman authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

1260) print OUT <<"END";
1261)      \n<tr>\n
1262)          <td>$m{$server}{'isoCC'}</td>\n
1263)          <td>$m{$server}{'orgName'}</td>\n
1264)          <td>$time</td>\n
1265) END
1266) 
1267)      my %prettyNames = (
1268)                         httpWebsiteMirror => "http",
1269)                         httpsWebsiteMirror => "https",
1270)                         ftpWebsiteMirror => "ftp",
1271)                         rsyncWebsiteMirror => "rsync",
1272)                         httpDistMirror => "http",
1273)                         httpsDistMirror => "https",
1274)                         rsyncDistMirrors => "rsync", );
1275) 
1276)      foreach my $precious ( sort keys %prettyNames )
Jacob Appelbaum Add a perl script that auto...

Jacob Appelbaum authored 15 years ago

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

Jacob Appelbaum authored 15 years ago

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