tor-commits
Threads by month
- ----- 2025 -----
- June
- May
- April
- March
- February
- January
- ----- 2024 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2023 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2022 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2021 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2020 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2019 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2018 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2017 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2016 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2015 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2014 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2013 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2012 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
- January
- ----- 2011 -----
- December
- November
- October
- September
- August
- July
- June
- May
- April
- March
- February
January 2018
- 18 participants
- 1738 discussions

06 Jan '18
commit bc285fbb72209a5c2c6b36e081fbb369213202cf
Author: Tom Ritter <tom(a)ritter.vg>
Date: Fri Jan 5 23:37:39 2018 -0600
Add hsdir_spread_store to known_params
---
data/consensus.cfg | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/data/consensus.cfg b/data/consensus.cfg
index fd7a7bb..02f39b1 100644
--- a/data/consensus.cfg
+++ b/data/consensus.cfg
@@ -35,4 +35,4 @@ known_params usecreatefast
known_params NumDirectoryGuards
known_params NumEntryGuards
…
[View More]known_params Support022HiddenServices
-
+known_params hsdir_spread_store
[View Less]
1
0

[depictor/master] Tweak how Unmeasured is printed in the detail table
by tom@torproject.org 06 Jan '18
by tom@torproject.org 06 Jan '18
06 Jan '18
commit 9da878582bb5fa865ea8e77a5534d44eee1f7b5d
Author: Tom Ritter <tom(a)ritter.vg>
Date: Fri Jan 5 23:38:04 2018 -0600
Tweak how Unmeasured is printed in the detail table
---
website.py | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/website.py b/website.py
index ce2fe60..6a75dc2 100755
--- a/website.py
+++ b/website.py
@@ -1431,9 +1431,8 @@ class WebsiteWriter:
self.site.write("bw=" + str(self.consensus.routers[relay_fp].bandwidth))
flagsWritten +…
[View More]= 1
if self.consensus.routers[relay_fp].is_unmeasured:
- assigning_bwauths = self.__find_assigning_bwauth_for_bw_value(relay_fp)
self.site.write(" <br />" if flagsWritten > 0 else "")
- self.site.write("unmeasured=1")
+ self.site.write("Unmeasured")
flagsWritten += 1
else:
assigning_bwauths = self.__find_assigning_bwauth_for_bw_value(relay_fp)
[View Less]
1
0

[depictor/master] Actually, lets promote Unmeasured to a real pseudo-flag (part of #24691)
by tom@torproject.org 06 Jan '18
by tom@torproject.org 06 Jan '18
06 Jan '18
commit 851852f884f4637b0d59a6b37135bd2677689334
Author: Tom Ritter <tom(a)ritter.vg>
Date: Fri Jan 5 23:51:58 2018 -0600
Actually, lets promote Unmeasured to a real pseudo-flag (part of #24691)
---
website.py | 19 ++++++++++++++-----
1 file changed, 14 insertions(+), 5 deletions(-)
diff --git a/website.py b/website.py
index 6a75dc2..2e70fb4 100755
--- a/website.py
+++ b/website.py
@@ -121,6 +121,19 @@ class WebsiteWriter:
if r in self.fallback_dirs:
self.consensus.…
[View More]routers[r].flags.append('FallbackDir')
+ # Create an Unmeasured flag
+ self.consensus.known_flags.append('Unmeasured')
+ for dirauth_nickname in self.known_authorities:
+ if dirauth_nickname in self.votes:
+ vote = self.votes[dirauth_nickname]
+ vote.known_flags.append('Unmeasured')
+ for r in vote.routers:
+ if r in self.consensus.routers and self.consensus.routers[r].is_unmeasured and not vote.routers[r].measured:
+ vote.routers[r].flags.append('Unmeasured')
+ for r in self.consensus.routers:
+ if self.consensus.routers[r].is_unmeasured:
+ self.consensus.routers[r].flags.append('Unmeasured')
+
#-----------------------------------------------------------------------------------------
def _write_page_header(self, include_relay_info):
@@ -1430,11 +1443,7 @@ class WebsiteWriter:
self.site.write(" <br />" if flagsWritten > 0 else "")
self.site.write("bw=" + str(self.consensus.routers[relay_fp].bandwidth))
flagsWritten += 1
- if self.consensus.routers[relay_fp].is_unmeasured:
- self.site.write(" <br />" if flagsWritten > 0 else "")
- self.site.write("Unmeasured")
- flagsWritten += 1
- else:
+ if not self.consensus.routers[relay_fp].is_unmeasured:
assigning_bwauths = self.__find_assigning_bwauth_for_bw_value(relay_fp)
self.site.write(" <br />" if flagsWritten > 0 else "")
self.site.write("bwauth=" + ",".join(assigning_bwauths))
[View Less]
1
0

[depictor/master] Refactor the FallbackDir Pseudo-Flag (part of #24691)
by tom@torproject.org 06 Jan '18
by tom@torproject.org 06 Jan '18
06 Jan '18
commit d038a0d05f62d7f390818e97dbd9204e72f5fced
Author: Tom Ritter <tom(a)ritter.vg>
Date: Fri Jan 5 22:30:31 2018 -0600
Refactor the FallbackDir Pseudo-Flag (part of #24691)
---
data/consensus.cfg | 2 +-
website.py | 22 ++++++++++++++++------
2 files changed, 17 insertions(+), 7 deletions(-)
diff --git a/data/consensus.cfg b/data/consensus.cfg
index e05818f..fd7a7bb 100644
--- a/data/consensus.cfg
+++ b/data/consensus.cfg
@@ -1,7 +1,7 @@
# control consensus-health …
[View More]output
# do not show all fallback directory output
-ignore_fallback_authorities True
+ignore_fallback_authorities False
# do not show values less than this amount on the graph. For small testing networks set to 1
graph_logical_min 125
diff --git a/website.py b/website.py
index fc9cf91..ce2fe60 100755
--- a/website.py
+++ b/website.py
@@ -107,6 +107,21 @@ class WebsiteWriter:
self.consensus.known_flags.append('ReachableIPv6')
self.consensus.known_flags.append('NoIPv6Consensus')
+ # Add the FallbackDir flag
+ if not self.config['ignore_fallback_authorities']:
+ self.consensus.known_flags.append('FallbackDir')
+ for dirauth_nickname in self.known_authorities:
+ if dirauth_nickname in self.votes:
+ vote = self.votes[dirauth_nickname]
+ vote.known_flags.append('FallbackDir')
+ for r in vote.routers:
+ if r in self.fallback_dirs:
+ vote.routers[r].flags.append('FallbackDir')
+ for r in self.consensus.routers:
+ if r in self.fallback_dirs:
+ self.consensus.routers[r].flags.append('FallbackDir')
+
+
#-----------------------------------------------------------------------------------------
def _write_page_header(self, include_relay_info):
"""
@@ -962,7 +977,7 @@ class WebsiteWriter:
Write the status of the fallback directory mirrors
"""
if self.config['ignore_fallback_authorities']:
- return
+ return
self.site.write("<br>\n\n\n"
+ " <!-- ================================================================= -->"
@@ -1426,11 +1441,6 @@ class WebsiteWriter:
self.site.write("bwauth=" + ",".join(assigning_bwauths))
flagsWritten += 1
- if relay_fp in self.fallback_dirs:
- self.site.write(" <br />" if flagsWritten > 0 else "")
- self.site.write("FallbackDir")
- flagsWritten += 1
-
self.site.write("</td>\n")
else:
self.site.write(" <td></td>\n")
[View Less]
1
0

[translation/tor-browser-manual] Update translations for tor-browser-manual
by translation@torproject.org 06 Jan '18
by translation@torproject.org 06 Jan '18
06 Jan '18
commit 84db3f4a1714d14af693461d882ef72e27d65f98
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Jan 6 04:50:57 2018 +0000
Update translations for tor-browser-manual
---
ar/ar.po | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/ar/ar.po b/ar/ar.po
index 52d598ded..6889f65b9 100644
--- a/ar/ar.po
+++ b/ar/ar.po
@@ -7,6 +7,7 @@
# runasand <inactive+runasand(a)transifex.com>, 2016
# Leya Hanna <leyahanna(a)gmail.com>, 2016
…
[View More]# ASSYASS Mahmoud <mahmoud.assyass(a)edu.uiz.ac.ma>, 2017
+# blah bleh <wshalash(a)protonmail.ch>, 2017
# Jacob Leppek <leppekja(a)msu.edu>, 2017
# mohammad ali <ilir95palira(a)gmail.com>, 2017
msgid ""
@@ -438,8 +439,8 @@ msgid ""
"To get links for downloading Tor Browser in Chinese for Linux, send a "
"message to gettor(a)torproject.org with the words \"linux zh\" in it."
msgstr ""
-"للحصول على روابط تنزيل متصفّح Tor بالصينية لنظام Linux، إبعث برسالة مباشرة "
-"الى @get_tor تحتوي على كلمات linux zh."
+"للحصول على روابط تنزيل متصفّح Tor باللغة الصينية لنظام Linux، إبعث برسالة "
+"مباشرة الى gettor(a)torproject.org تحتوي على الكلمات \"linux zh\"."
#: downloading.page:84
msgid "Satori"
[View Less]
1
0

[translation/bridgedb_completed] Update translations for bridgedb_completed
by translation@torproject.org 06 Jan '18
by translation@torproject.org 06 Jan '18
06 Jan '18
commit 6364037387149f78ca5c8eed7d61b7d4181989cd
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Jan 6 04:45:15 2018 +0000
Update translations for bridgedb_completed
---
ar/LC_MESSAGES/bridgedb.po | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/ar/LC_MESSAGES/bridgedb.po b/ar/LC_MESSAGES/bridgedb.po
index da0f611bd..2e4861b97 100644
--- a/ar/LC_MESSAGES/bridgedb.po
+++ b/ar/LC_MESSAGES/bridgedb.po
@@ -8,6 +8,7 @@
# Ahmad Gharbeia …
[View More]<gharbeia(a)gmail.com>, 2014
# allamiro <allamiro(a)gmail.com>, 2011
# Ash <ali.shatrieh(a)gmail.com>, 2014
+# blah bleh <wshalash(a)protonmail.ch>, 2018
# debo debo <a.adeebo(a)yahoo.com>, 2015
# Mohamed El-Feky <elfeky.m(a)gmail.com>, 2014
# AnonymousLady <farah.jaza(a)hotmail.com>, 2014
@@ -27,8 +28,8 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
"POT-Creation-Date: 2015-07-25 03:40+0000\n"
-"PO-Revision-Date: 2017-10-27 04:27+0000\n"
-"Last-Translator: Abderrahman Ait Ali <abde.aitali(a)live.com>\n"
+"PO-Revision-Date: 2018-01-06 04:35+0000\n"
+"Last-Translator: blah bleh <wshalash(a)protonmail.ch>\n"
"Language-Team: Arabic (http://www.transifex.com/otf/torproject/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -78,7 +79,7 @@ msgstr "اظهار ال QR كود"
#: bridgedb/https/templates/bridges.html:52
msgid "QRCode for your bridge lines"
-msgstr "QRCode التابع لخطوط جسرك"
+msgstr "كود الQR التابع لخطوط جسرك"
#. TRANSLATORS: Please translate this into some silly way to say
#. "There was a problem!" in your language. For example,
[View Less]
1
0

06 Jan '18
commit 167dad780d8c8015ea75f60a579e54e444af611e
Author: Translation commit bot <translation(a)torproject.org>
Date: Sat Jan 6 04:45:07 2018 +0000
Update translations for bridgedb
---
ar/LC_MESSAGES/bridgedb.po | 7 ++++---
1 file changed, 4 insertions(+), 3 deletions(-)
diff --git a/ar/LC_MESSAGES/bridgedb.po b/ar/LC_MESSAGES/bridgedb.po
index da0f611bd..2e4861b97 100644
--- a/ar/LC_MESSAGES/bridgedb.po
+++ b/ar/LC_MESSAGES/bridgedb.po
@@ -8,6 +8,7 @@
# Ahmad Gharbeia <…
[View More]gharbeia(a)gmail.com>, 2014
# allamiro <allamiro(a)gmail.com>, 2011
# Ash <ali.shatrieh(a)gmail.com>, 2014
+# blah bleh <wshalash(a)protonmail.ch>, 2018
# debo debo <a.adeebo(a)yahoo.com>, 2015
# Mohamed El-Feky <elfeky.m(a)gmail.com>, 2014
# AnonymousLady <farah.jaza(a)hotmail.com>, 2014
@@ -27,8 +28,8 @@ msgstr ""
"Project-Id-Version: The Tor Project\n"
"Report-Msgid-Bugs-To: 'https://trac.torproject.org/projects/tor/newticket?component=BridgeDB&keywo…'\n"
"POT-Creation-Date: 2015-07-25 03:40+0000\n"
-"PO-Revision-Date: 2017-10-27 04:27+0000\n"
-"Last-Translator: Abderrahman Ait Ali <abde.aitali(a)live.com>\n"
+"PO-Revision-Date: 2018-01-06 04:35+0000\n"
+"Last-Translator: blah bleh <wshalash(a)protonmail.ch>\n"
"Language-Team: Arabic (http://www.transifex.com/otf/torproject/language/ar/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -78,7 +79,7 @@ msgstr "اظهار ال QR كود"
#: bridgedb/https/templates/bridges.html:52
msgid "QRCode for your bridge lines"
-msgstr "QRCode التابع لخطوط جسرك"
+msgstr "كود الQR التابع لخطوط جسرك"
#. TRANSLATORS: Please translate this into some silly way to say
#. "There was a problem!" in your language. For example,
[View Less]
1
0
commit f2c4be291db08f8786c656bd43e96b2282559e1a
Author: Roger Dingledine <arma(a)torproject.org>
Date: Fri Jan 5 20:43:11 2018 -0500
updated mirror run
---
include/mirrors-table.wmi | 620 ++++++++++++++++++++++------------------------
include/tor-mirrors.csv | 186 +++++++-------
2 files changed, 386 insertions(+), 420 deletions(-)
diff --git a/include/mirrors-table.wmi b/include/mirrors-table.wmi
index 2ec2b071..4b34a281 100644
--- a/include/mirrors-table.wmi
+++ b/include/…
[View More]mirrors-table.wmi
@@ -1,66 +1,66 @@
<tr>
- <td>UA</td>
+ <td>DE</td>
- <td>IP-Connect LLC</td>
+ <td>TB-ITF</td>
<td>Up to date</td>
- <td><a href="ftp://torproject.ip-connect.vn.ua/mirror/torproject/">ftp</a></td>
- <td><a href="http://torproject.ip-connect.vn.ua/dist">http</a></td>
- <td><a href="http://torproject.ip-connect.vn.ua">http</a></td>
+ <td><a href="ftp://tormirror.tb-itf-tor.de/">ftp</a></td>
+ <td><a href="http://tormirror.tb-itf-tor.de/dist/">http</a></td>
+ <td><a href="http://tormirror.tb-itf-tor.de">http</a></td>
+ <td><a href="https://tormirror.tb-itf-tor.de/dist/">https</a></td>
+ <td><a href="https://tormirror.tb-itf-tor.de">https</a></td>
<td> - </td>
<td> - </td>
- <td><a href="rsync://torproject.ip-connect.vn.ua/torproject/dist">rsync</a></td>
- <td><a href="rsync://torproject.ip-connect.vn.ua/torproject">rsync</a></td>
</tr>
<tr>
- <td>IS</td>
+ <td>CA</td>
- <td>torproject.is</td>
+ <td>secure.voyage</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://www.torproject.is/dist/">http</a></td>
- <td><a href="http://www.torproject.is/">http</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="http://tor.secure.voyage/dist">http</a></td>
+ <td><a href="http://tor.secure.voyage">http</a></td>
+ <td><a href="https://tor.secure.voyage/dist">https</a></td>
+ <td><a href="https://tor.secure.voyage">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>AT</td>
+ <td>UA</td>
- <td>ph3x</td>
+ <td>IP-Connect LLC</td>
<td>Up to date</td>
- <td> - </td>
- <td><a href="http://torproject.ph3x.at/dist/">http</a></td>
- <td><a href="http://torproject.ph3x.at">http</a></td>
- <td><a href="https://torproject.ph3x.at/dist/">https</a></td>
- <td><a href="https://torproject.ph3x.at">https</a></td>
+ <td><a href="ftp://torproject.ip-connect.vn.ua/mirror/torproject/">ftp</a></td>
+ <td><a href="http://torproject.ip-connect.vn.ua/dist">http</a></td>
+ <td><a href="http://torproject.ip-connect.vn.ua">http</a></td>
<td> - </td>
<td> - </td>
+ <td><a href="rsync://torproject.ip-connect.vn.ua/torproject/dist">rsync</a></td>
+ <td><a href="rsync://torproject.ip-connect.vn.ua/torproject">rsync</a></td>
</tr>
<tr>
- <td>US</td>
+ <td>IS</td>
- <td>Evil Routers</td>
+ <td>Frenn vun der Enn A.S.B.L.</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor1.evilrouters.net/dist/">http</a></td>
- <td><a href="http://tor1.evilrouters.net/">http</a></td>
+ <td><a href="http://torproject.lu/dist/">http</a></td>
+ <td><a href="http://torproject.lu/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -69,15 +69,15 @@
<tr>
- <td>XX</td>
+ <td>NO</td>
- <td>TvdW</td>
+ <td>MultiNet AS</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor-exit.network/dist">http</a></td>
- <td><a href="http://tor-exit.network">http</a></td>
+ <td><a href="http://tor.multinet.no/dist/">http</a></td>
+ <td><a href="http://tor.multinet.no/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -86,85 +86,51 @@
<tr>
- <td>US</td>
+ <td>IS</td>
- <td>The Calyx Institute</td>
+ <td>torproject.is</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.calyxinstitute.org/dist/">http</a></td>
- <td><a href="http://tor.calyxinstitute.org">http</a></td>
- <td><a href="https://tor.calyxinstitute.org/dist/">https</a></td>
- <td><a href="https://tor.calyxinstitute.org">https</a></td>
+ <td><a href="http://www.torproject.is/dist/">http</a></td>
+ <td><a href="http://www.torproject.is/">http</a></td>
+ <td> - </td>
+ <td> - </td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>DE</td>
+ <td>AT</td>
- <td>Tor Supporter</td>
+ <td>ph3x</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://torproject.mirror.metalgamer.eu/dist/">http</a></td>
- <td><a href="http://torproject.mirror.metalgamer.eu/">http</a></td>
- <td><a href="https://torproject.mirror.metalgamer.eu/dist/">https</a></td>
- <td><a href="https://torproject.mirror.metalgamer.eu/">https</a></td>
+ <td><a href="http://torproject.ph3x.at/dist/">http</a></td>
+ <td><a href="http://torproject.ph3x.at">http</a></td>
+ <td><a href="https://torproject.ph3x.at/dist/">https</a></td>
+ <td><a href="https://torproject.ph3x.at">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>NL</td>
-
- <td>Babylon Network</td>
-
- <td>Up to date</td>
-
- <td><a href="ftp://nl.mirror.babylon.network/torproject/">ftp</a></td>
- <td><a href="http://nl.mirror.babylon.network/torproject/dist/">http</a></td>
- <td><a href="http://nl.mirror.babylon.network/torproject/">http</a></td>
- <td><a href="https://nl.mirror.babylon.network/torproject/dist/">https</a></td>
- <td><a href="https://nl.mirror.babylon.network/torproject/">https</a></td>
- <td><a href="rsync://nl.mirror.babylon.network/torproject/dist/">rsync</a></td>
- <td><a href="rsync://nl.mirror.babylon.network/torproject/">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>FR</td>
-
- <td>Babylon Network</td>
-
- <td>Up to date</td>
-
- <td><a href="ftp://fr.mirror.babylon.network/torproject/">ftp</a></td>
- <td><a href="http://fr.mirror.babylon.network/torproject/dist/">http</a></td>
- <td><a href="http://fr.mirror.babylon.network/torproject/">http</a></td>
- <td><a href="https://fr.mirror.babylon.network/torproject/dist/">https</a></td>
- <td><a href="https://fr.mirror.babylon.network/torproject/">https</a></td>
- <td><a href="rsync://fr.mirror.babylon.network/torproject/dist/">rsync</a></td>
- <td><a href="rsync://fr.mirror.babylon.network/torproject/">rsync</a></td>
-</tr>
-
-<tr>
-
- <td>VN</td>
+ <td>IS</td>
- <td>Freedif</td>
+ <td>TheOnionRouter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://mirror.freedif.org/TorProject/dist">http</a></td>
- <td><a href="http://mirror.freedif.org/TorProject/">http</a></td>
- <td><a href="https://mirror.freedif.org/TorProject/dist">https</a></td>
- <td><a href="https://mirror.freedif.org/TorProject/">https</a></td>
+ <td><a href="http://www.theonionrouter.com/dist/">http</a></td>
+ <td><a href="http://www.theonionrouter.com/">http</a></td>
+ <td> - </td>
+ <td> - </td>
<td> - </td>
<td> - </td>
</tr>
@@ -173,49 +139,49 @@
<td>DE</td>
- <td>Tor Supporter</td>
+ <td>crazyhaze.de</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.heikorichter.name/dist">http</a></td>
- <td><a href="http://tor.heikorichter.name">http</a></td>
- <td><a href="https://tor.heikorichter.name/dist">https</a></td>
- <td><a href="https://tor.heikorichter.name">https</a></td>
- <td><a href="rsync://ftp.heikorichter.name/tor">rsync</a></td>
+ <td><a href="http://tor.crazyhaze.de/dist/">http</a></td>
+ <td><a href="http://tor.crazyhaze.de/">http</a></td>
+ <td><a href="https://tor.crazyhaze.de/dist/">https</a></td>
+ <td><a href="https://tor.crazyhaze.de/">https</a></td>
+ <td> - </td>
<td> - </td>
</tr>
<tr>
- <td>CA</td>
+ <td>DE</td>
- <td>secure.voyage</td>
+ <td>Tor Supporter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.secure.voyage/dist">http</a></td>
- <td><a href="http://tor.secure.voyage">http</a></td>
- <td><a href="https://tor.secure.voyage/dist">https</a></td>
- <td><a href="https://tor.secure.voyage">https</a></td>
+ <td><a href="http://mirror.velcommuta.de/tor/dist/">http</a></td>
+ <td><a href="http://mirror.velcommuta.de/tor/">http</a></td>
+ <td><a href="https://mirror.velcommuta.de/tor/dist/">https</a></td>
+ <td><a href="https://mirror.velcommuta.de/tor/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>CA</td>
+ <td>GR</td>
- <td>razx</td>
+ <td>Tor Supporter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tcejorprot.razx.cloud/dist/">http</a></td>
- <td><a href="http://tcejorprot.razx.cloud/">http</a></td>
- <td><a href="https://tcejorprot.razx.cloud/dist">https</a></td>
- <td><a href="https://tcejorprot.razx.cloud/">https</a></td>
+ <td><a href="http://tor.void.gr/dist/">http</a></td>
+ <td><a href="http://tor.void.gr">http</a></td>
+ <td><a href="https://tor.void.gr/dist/">https</a></td>
+ <td><a href="https://tor.void.gr">https</a></td>
<td> - </td>
<td> - </td>
</tr>
@@ -224,115 +190,115 @@
<td>DE</td>
- <td>TB-ITF</td>
+ <td>Tor Supporter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tormirror.tb-itf-tor.de/dist/">http</a></td>
- <td><a href="http://tormirror.tb-itf-tor.de">http</a></td>
- <td><a href="https://tormirror.tb-itf-tor.de/dist/">https</a></td>
- <td><a href="https://tormirror.tb-itf-tor.de">https</a></td>
+ <td><a href="http://reichster.de/mirrors/torproject.org/dist/">http</a></td>
+ <td><a href="http://reichster.de/mirrors/torproject.org/">http</a></td>
+ <td><a href="https://reichster.de/mirrors/torproject.org/dist/">https</a></td>
+ <td><a href="https://reichster.de/mirrors/torproject.org">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>IS</td>
+ <td>FR</td>
- <td>Frenn vun der Enn A.S.B.L.</td>
+ <td>Tor Supporter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://torproject.lu/dist/">http</a></td>
- <td><a href="http://torproject.lu/">http</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="http://tor.fr33tux.org/dist/">http</a></td>
+ <td><a href="http://tor.fr33tux.org">http</a></td>
+ <td><a href="https://tor.fr33tux.org/dist/">https</a></td>
+ <td><a href="https://tor.fr33tux.org">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>NO</td>
+ <td>DE</td>
- <td>MultiNet AS</td>
+ <td>moparisthebest.com</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.multinet.no/dist/">http</a></td>
- <td><a href="http://tor.multinet.no/">http</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="http://www.moparisthebest.com/tor/dist/">http</a></td>
+ <td><a href="http://www.moparisthebest.com/tor/">http</a></td>
+ <td><a href="https://www.moparisthebest.com/tor/dist/">https</a></td>
+ <td><a href="https://www.moparisthebest.com/tor/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>ES</td>
+ <td>DE</td>
<td>Tor Supporter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.zilog.es/dist/">http</a></td>
- <td><a href="http://tor.zilog.es/">http</a></td>
- <td><a href="https://tor.zilog.es/dist/">https</a></td>
- <td><a href="https://tor.zilog.es/">https</a></td>
+ <td><a href="http://tor.ybti.net/dist/">http</a></td>
+ <td><a href="http://tor.ybti.net/">http</a></td>
+ <td><a href="https://tor.ybti.net/dist/">https</a></td>
+ <td><a href="https://tor.ybti.net/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>US</td>
+ <td>DE</td>
- <td>AskApache</td>
+ <td>0x3d.lu</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.askapache.com/dist/">http</a></td>
- <td><a href="http://tor.askapache.com/">http</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="http://tor.0x3d.lu/dist/">http</a></td>
+ <td><a href="http://tor.0x3d.lu/">http</a></td>
+ <td><a href="https://tor.0x3d.lu/dist/">https</a></td>
+ <td><a href="https://tor.0x3d.lu/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>AU</td>
+ <td>DE</td>
- <td>CoffsWiFi</td>
+ <td>Netzkonstrukt Berlin</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://torproject.coffswifi.net/dist">http</a></td>
- <td><a href="http://torproject.coffswifi.net">http</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="http://mirror.ntzk.de/torproject.org/dist/">http</a></td>
+ <td><a href="http://mirror.ntzk.de/torproject.org/">http</a></td>
+ <td><a href="https://mirror.ntzk.de/torproject.org/dist/">https</a></td>
+ <td><a href="https://mirror.ntzk.de/torproject.org/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>IS</td>
+ <td>FR</td>
- <td>TheOnionRouter</td>
+ <td>wardsback.org</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://www.theonionrouter.com/dist/">http</a></td>
- <td><a href="http://www.theonionrouter.com/">http</a></td>
+ <td><a href="http://alliumcepa.wardsback.org/dist/">http</a></td>
+ <td><a href="http://alliumcepa.wardsback.org/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -341,17 +307,17 @@
<tr>
- <td>DE</td>
+ <td>XX</td>
- <td>crazyhaze.de</td>
+ <td>TvdW</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.crazyhaze.de/dist/">http</a></td>
- <td><a href="http://tor.crazyhaze.de/">http</a></td>
- <td><a href="https://tor.crazyhaze.de/dist/">https</a></td>
- <td><a href="https://tor.crazyhaze.de/">https</a></td>
+ <td><a href="http://tor-exit.network/dist">http</a></td>
+ <td><a href="http://tor-exit.network">http</a></td>
+ <td> - </td>
+ <td> - </td>
<td> - </td>
<td> - </td>
</tr>
@@ -360,32 +326,32 @@
<td>DE</td>
- <td>torservers</td>
+ <td>sela Internet</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://www.torservers.net/mirrors/torproject.org/dist/">http</a></td>
- <td><a href="http://www.torservers.net/mirrors/torproject.org/">http</a></td>
- <td><a href="https://www.torservers.net/mirrors/torproject.org/dist/">https</a></td>
- <td><a href="https://www.torservers.net/mirrors/torproject.org/">https</a></td>
+ <td><a href="http://sela.io/mirrors/torproject.org/dist/">http</a></td>
+ <td><a href="http://sela.io/mirrors/torproject.org/">http</a></td>
+ <td><a href="https://sela.io/mirrors/torproject.org/dist/">https</a></td>
+ <td><a href="https://sela.io/mirrors/torproject.org/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>IS</td>
+ <td>US</td>
- <td>myRL.net</td>
+ <td>The Calyx Institute</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.myrl.net/dist/">http</a></td>
- <td><a href="http://tor.myrl.net/">http</a></td>
- <td><a href="https://tor.myrl.net/dist/">https</a></td>
- <td><a href="https://tor.myrl.net/">https</a></td>
+ <td><a href="http://tor.calyxinstitute.org/dist/">http</a></td>
+ <td><a href="http://tor.calyxinstitute.org">http</a></td>
+ <td><a href="https://tor.calyxinstitute.org/dist/">https</a></td>
+ <td><a href="https://tor.calyxinstitute.org">https</a></td>
<td> - </td>
<td> - </td>
</tr>
@@ -394,17 +360,17 @@
<td>FR</td>
- <td>stalkr.net</td>
+ <td>Michael Armbruster</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.stalkr.net/dist/">http</a></td>
- <td><a href="http://tor.stalkr.net/">http</a></td>
- <td><a href="https://tor.stalkr.net/dist/">https</a></td>
- <td><a href="https://tor.stalkr.net/">https</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="http://tor.armbrust.me/dist/">http</a></td>
+ <td><a href="http://tor.armbrust.me/">http</a></td>
+ <td><a href="https://tor.armbrust.me/dist">https</a></td>
+ <td><a href="https://tor.armbrust.me/">https</a></td>
+ <td><a href="rsync://tor.armbrust.me/tor-dist">rsync</a></td>
+ <td><a href="rsync://tor.armbrust.me/tor">rsync</a></td>
</tr>
<tr>
@@ -416,97 +382,80 @@
<td>Up to date</td>
<td> - </td>
- <td><a href="http://mirror.velcommuta.de/tor/dist/">http</a></td>
- <td><a href="http://mirror.velcommuta.de/tor/">http</a></td>
- <td><a href="https://mirror.velcommuta.de/tor/dist/">https</a></td>
- <td><a href="https://mirror.velcommuta.de/tor/">https</a></td>
- <td> - </td>
- <td> - </td>
-</tr>
-
-<tr>
-
- <td>US</td>
-
- <td>EFF</td>
-
- <td>Up to date</td>
-
- <td> - </td>
- <td> - </td>
- <td> - </td>
- <td><a href="https://tor.eff.org/dist/">https</a></td>
- <td><a href="https://tor.eff.org">https</a></td>
+ <td><a href="http://torproject.mirror.metalgamer.eu/dist/">http</a></td>
+ <td><a href="http://torproject.mirror.metalgamer.eu/">http</a></td>
+ <td><a href="https://torproject.mirror.metalgamer.eu/dist/">https</a></td>
+ <td><a href="https://torproject.mirror.metalgamer.eu/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>DE</td>
+ <td>NL</td>
- <td>Tor Supporter</td>
+ <td>Babylon Network</td>
<td>Up to date</td>
- <td> - </td>
- <td><a href="http://reichster.de/mirrors/torproject.org/dist/">http</a></td>
- <td><a href="http://reichster.de/mirrors/torproject.org/">http</a></td>
- <td><a href="https://reichster.de/mirrors/torproject.org/dist/">https</a></td>
- <td><a href="https://reichster.de/mirrors/torproject.org">https</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="ftp://nl.mirror.babylon.network/torproject/">ftp</a></td>
+ <td><a href="http://nl.mirror.babylon.network/torproject/dist/">http</a></td>
+ <td><a href="http://nl.mirror.babylon.network/torproject/">http</a></td>
+ <td><a href="https://nl.mirror.babylon.network/torproject/dist/">https</a></td>
+ <td><a href="https://nl.mirror.babylon.network/torproject/">https</a></td>
+ <td><a href="rsync://nl.mirror.babylon.network/torproject/dist/">rsync</a></td>
+ <td><a href="rsync://nl.mirror.babylon.network/torproject/">rsync</a></td>
</tr>
<tr>
<td>FR</td>
- <td>Tor Supporter</td>
+ <td>Babylon Network</td>
<td>Up to date</td>
- <td> - </td>
- <td><a href="http://tor.fr33tux.org/dist/">http</a></td>
- <td><a href="http://tor.fr33tux.org">http</a></td>
- <td><a href="https://tor.fr33tux.org/dist/">https</a></td>
- <td><a href="https://tor.fr33tux.org">https</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="ftp://fr.mirror.babylon.network/torproject/">ftp</a></td>
+ <td><a href="http://fr.mirror.babylon.network/torproject/dist/">http</a></td>
+ <td><a href="http://fr.mirror.babylon.network/torproject/">http</a></td>
+ <td><a href="https://fr.mirror.babylon.network/torproject/dist/">https</a></td>
+ <td><a href="https://fr.mirror.babylon.network/torproject/">https</a></td>
+ <td><a href="rsync://fr.mirror.babylon.network/torproject/dist/">rsync</a></td>
+ <td><a href="rsync://fr.mirror.babylon.network/torproject/">rsync</a></td>
</tr>
<tr>
- <td>DE</td>
+ <td>FR</td>
- <td>moparisthebest.com</td>
+ <td>Standalone Installer Software</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://www.moparisthebest.com/tor/dist/">http</a></td>
- <td><a href="http://www.moparisthebest.com/tor/">http</a></td>
- <td><a href="https://www.moparisthebest.com/tor/dist/">https</a></td>
- <td><a href="https://www.moparisthebest.com/tor/">https</a></td>
+ <td><a href="http://mirrors.standaloneinstaller.com/torproject/dist">http</a></td>
+ <td><a href="http://mirrors.standaloneinstaller.com/torproject/">http</a></td>
<td> - </td>
<td> - </td>
+ <td><a href="rsync://mirrors.standaloneinstaller.com/torproject/dist">rsync</a></td>
+ <td><a href="rsync://mirrors.standaloneinstaller.com/torproject/">rsync</a></td>
</tr>
<tr>
- <td>AT</td>
+ <td>DE</td>
<td>Tor Supporter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.ludikovsky.name/dist">http</a></td>
- <td><a href="http://tor.ludikovsky.name/">http</a></td>
- <td><a href="https://tor.ludikovsky.name/dist">https</a></td>
- <td><a href="https://tor.ludikovsky.name/">https</a></td>
- <td><a href="rsync://tor.ludikovsky.name/tor-dist">rsync</a></td>
- <td><a href="rsync://tor.ludikovsky.name/tor">rsync</a></td>
+ <td><a href="http://tor.heikorichter.name/dist">http</a></td>
+ <td><a href="http://tor.heikorichter.name">http</a></td>
+ <td><a href="https://tor.heikorichter.name/dist">https</a></td>
+ <td><a href="https://tor.heikorichter.name">https</a></td>
+ <td><a href="rsync://ftp.heikorichter.name/tor">rsync</a></td>
+ <td> - </td>
</tr>
<tr>
@@ -518,27 +467,27 @@
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.ybti.net/dist/">http</a></td>
- <td><a href="http://tor.ybti.net/">http</a></td>
- <td><a href="https://tor.ybti.net/dist/">https</a></td>
- <td><a href="https://tor.ybti.net/">https</a></td>
+ <td><a href="http://tor.127001.ovh/dist/">http</a></td>
+ <td><a href="http://tor.127001.ovh/">http</a></td>
+ <td><a href="https://tor.127001.ovh/dist/">https</a></td>
+ <td><a href="https://tor.127001.ovh/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>DE</td>
+ <td>ES</td>
- <td>0x3d.lu</td>
+ <td>Tor Supporter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.0x3d.lu/dist/">http</a></td>
- <td><a href="http://tor.0x3d.lu/">http</a></td>
- <td><a href="https://tor.0x3d.lu/dist/">https</a></td>
- <td><a href="https://tor.0x3d.lu/">https</a></td>
+ <td><a href="http://tor.zilog.es/dist/">http</a></td>
+ <td><a href="http://tor.zilog.es/">http</a></td>
+ <td><a href="https://tor.zilog.es/dist/">https</a></td>
+ <td><a href="https://tor.zilog.es/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
@@ -547,49 +496,49 @@
<td>US</td>
- <td>intfxdx.com</td>
+ <td>AskApache</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://108.248.87.242/dist/">http</a></td>
- <td><a href="http://108.248.87.242/">http</a></td>
- <td><a href="https://108.248.87.242/dist/">https</a></td>
- <td><a href="https://108.248.87.242/">https</a></td>
+ <td><a href="http://tor.askapache.com/dist/">http</a></td>
+ <td><a href="http://tor.askapache.com/">http</a></td>
+ <td> - </td>
+ <td> - </td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>US</td>
+ <td>RU</td>
- <td>Lucid Networks</td>
+ <td>Soviet Anonymous</td>
<td>Up to date</td>
- <td> - </td>
- <td><a href="http://tor.mirrors.lucidnetworks.net/dist">http</a></td>
- <td><a href="http://tor.mirrors.lucidnetworks.net">http</a></td>
- <td> - </td>
- <td> - </td>
- <td><a href="rsync://tor.mirrors.lucidnetworks.net::tor-dist">rsync</a></td>
- <td><a href="rsync://tor.mirrors.lucidnetworks.net::tor">rsync</a></td>
+ <td><a href="ftp://creep.im/mirrors/tor">ftp</a></td>
+ <td><a href="http://creep.im/tor/dist/">http</a></td>
+ <td><a href="http://creep.im/tor">http</a></td>
+ <td><a href="https://creep.im/tor/dist/">https</a></td>
+ <td><a href="https://creep.im/tor">https</a></td>
+ <td><a href="rsync://creep.im/tor-dist">rsync</a></td>
+ <td><a href="rsync://creep.im/tor">rsync</a></td>
</tr>
<tr>
<td>DE</td>
- <td>Netzkonstrukt Berlin</td>
+ <td>torservers</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://mirror.ntzk.de/torproject.org/dist/">http</a></td>
- <td><a href="http://mirror.ntzk.de/torproject.org/">http</a></td>
- <td><a href="https://mirror.ntzk.de/torproject.org/dist/">https</a></td>
- <td><a href="https://mirror.ntzk.de/torproject.org/">https</a></td>
+ <td><a href="http://www.torservers.net/mirrors/torproject.org/dist/">http</a></td>
+ <td><a href="http://www.torservers.net/mirrors/torproject.org/">http</a></td>
+ <td><a href="https://www.torservers.net/mirrors/torproject.org/dist/">https</a></td>
+ <td><a href="https://www.torservers.net/mirrors/torproject.org/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
@@ -598,30 +547,30 @@
<td>US</td>
- <td>EPRCI</td>
+ <td>EFF</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.eprci.net/dist/">http</a></td>
- <td><a href="http://tor.eprci.net/">http</a></td>
- <td><a href="https://www.eprci.com/tor/dist/">https</a></td>
- <td><a href="https://www.eprci.com/tor/">https</a></td>
+ <td> - </td>
+ <td> - </td>
+ <td><a href="https://tor.eff.org/dist/">https</a></td>
+ <td><a href="https://tor.eff.org">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>FR</td>
+ <td>US</td>
- <td>wardsback.org</td>
+ <td>Evil Routers</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://alliumcepa.wardsback.org/dist/">http</a></td>
- <td><a href="http://alliumcepa.wardsback.org/">http</a></td>
+ <td><a href="http://tor1.evilrouters.net/dist/">http</a></td>
+ <td><a href="http://tor1.evilrouters.net/">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -630,70 +579,70 @@
<tr>
- <td>DE</td>
+ <td>US</td>
- <td>PW</td>
+ <td>Lucid Networks</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.pw.is/dist/">http</a></td>
- <td><a href="http://tor.pw.is/">http</a></td>
- <td><a href="https://www.it-sicherheitschannel.de/dist/">https</a></td>
- <td><a href="https://www.it-sicherheitschannel.de/">https</a></td>
+ <td><a href="http://tor.mirrors.lucidnetworks.net/dist">http</a></td>
+ <td><a href="http://tor.mirrors.lucidnetworks.net">http</a></td>
<td> - </td>
<td> - </td>
+ <td><a href="rsync://tor.mirrors.lucidnetworks.net::tor-dist">rsync</a></td>
+ <td><a href="rsync://tor.mirrors.lucidnetworks.net::tor">rsync</a></td>
</tr>
<tr>
- <td>CH</td>
+ <td>AR</td>
- <td>urown.net</td>
+ <td>Xfree.com.ar</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://torproject.urown.net/dist/">http</a></td>
- <td><a href="http://torproject.urown.net/">http</a></td>
- <td><a href="https://torproject.urown.net/dist/">https</a></td>
- <td><a href="https://torproject.urown.net/">https</a></td>
+ <td><a href="http://tor.xfree.com.ar/dist/">http</a></td>
+ <td><a href="http://tor.xfree.com.ar/">http</a></td>
+ <td> - </td>
+ <td> - </td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>DE</td>
+ <td>US</td>
- <td>sela Internet</td>
+ <td>EPRCI</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://sela.io/mirrors/torproject.org/dist/">http</a></td>
- <td><a href="http://sela.io/mirrors/torproject.org/">http</a></td>
- <td><a href="https://sela.io/mirrors/torproject.org/dist/">https</a></td>
- <td><a href="https://sela.io/mirrors/torproject.org/">https</a></td>
+ <td><a href="http://tor.eprci.net/dist/">http</a></td>
+ <td><a href="http://tor.eprci.net/">http</a></td>
+ <td><a href="https://www.eprci.com/tor/dist/">https</a></td>
+ <td><a href="https://www.eprci.com/tor/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>DE</td>
+ <td>TW</td>
- <td>Chaos Computer Club</td>
+ <td>Department of CSE. Yuan Ze University</td>
<td>Up to date</td>
- <td> - </td>
- <td><a href="http://tor.ccc.de/dist/">http</a></td>
- <td><a href="http://tor.ccc.de/">http</a></td>
- <td><a href="https://tor.ccc.de/dist/">https</a></td>
- <td><a href="https://tor.ccc.de">https</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="ftp://ftp.yzu.edu.tw/torproject.org/">ftp</a></td>
+ <td><a href="http://ftp.yzu.edu.tw/torproject.org/dist/">http</a></td>
+ <td><a href="http://ftp.yzu.edu.tw/torproject.org/">http</a></td>
+ <td><a href="https://ftp.yzu.edu.tw/torproject.org/dist/">https</a></td>
+ <td><a href="https://ftp.yzu.edu.tw/torproject.org/">https</a></td>
+ <td><a href="rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/">rsync</a></td>
+ <td><a href="rsync://ftp.yzu.edu.tw/pub/torproject.org/">rsync</a></td>
</tr>
<tr>
@@ -715,66 +664,66 @@
<tr>
- <td>FR</td>
+ <td>DE</td>
- <td>Michael Armbruster</td>
+ <td>Funkfreunde Landshut e.V.</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.armbrust.me/dist/">http</a></td>
- <td><a href="http://tor.armbrust.me/">http</a></td>
- <td><a href="https://tor.armbrust.me/dist">https</a></td>
- <td><a href="https://tor.armbrust.me/">https</a></td>
- <td><a href="rsync://tor.armbrust.me/tor-dist">rsync</a></td>
- <td><a href="rsync://tor.armbrust.me/tor">rsync</a></td>
+ <td><a href="http://mirror.funkfreundelandshut.de:81/torproject.org/dist/">http</a></td>
+ <td><a href="http://mirror.funkfreundelandshut.de/torproject.org/">http</a></td>
+ <td> - </td>
+ <td> - </td>
+ <td> - </td>
+ <td> - </td>
</tr>
<tr>
- <td>DE</td>
+ <td>CA</td>
- <td>TB-ITF</td>
+ <td>razx</td>
<td>Up to date</td>
- <td><a href="ftp://tormirror.tb-itf-tor.de/">ftp</a></td>
- <td><a href="http://tormirror.tb-itf-tor.de/dist/">http</a></td>
- <td><a href="http://tormirror.tb-itf-tor.de">http</a></td>
- <td><a href="https://tormirror.tb-itf-tor.de/dist/">https</a></td>
- <td><a href="https://tormirror.tb-itf-tor.de">https</a></td>
+ <td> - </td>
+ <td><a href="http://tcejorprot.razx.cloud/dist/">http</a></td>
+ <td><a href="http://tcejorprot.razx.cloud/">http</a></td>
+ <td><a href="https://tcejorprot.razx.cloud/dist">https</a></td>
+ <td><a href="https://tcejorprot.razx.cloud/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>FR</td>
+ <td>DE</td>
- <td>Standalone Installer Software</td>
+ <td>TB-ITF</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://mirrors.standaloneinstaller.com/torproject/dist">http</a></td>
- <td><a href="http://mirrors.standaloneinstaller.com/torproject/">http</a></td>
+ <td><a href="http://tormirror.tb-itf-tor.de/dist/">http</a></td>
+ <td><a href="http://tormirror.tb-itf-tor.de">http</a></td>
+ <td><a href="https://tormirror.tb-itf-tor.de/dist/">https</a></td>
+ <td><a href="https://tormirror.tb-itf-tor.de">https</a></td>
<td> - </td>
<td> - </td>
- <td><a href="rsync://mirrors.standaloneinstaller.com/torproject/dist">rsync</a></td>
- <td><a href="rsync://mirrors.standaloneinstaller.com/torproject/">rsync</a></td>
</tr>
<tr>
- <td>DE</td>
+ <td>AU</td>
- <td>Funkfreunde Landshut e.V.</td>
+ <td>CoffsWiFi</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://mirror.funkfreundelandshut.de:81/torproject.org/dist/">http</a></td>
- <td><a href="http://mirror.funkfreundelandshut.de/torproject.org/">http</a></td>
+ <td><a href="http://torproject.coffswifi.net/dist">http</a></td>
+ <td><a href="http://torproject.coffswifi.net">http</a></td>
<td> - </td>
<td> - </td>
<td> - </td>
@@ -783,36 +732,36 @@
<tr>
- <td>DE</td>
+ <td>IS</td>
- <td>Tor Supporter</td>
+ <td>myRL.net</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.127001.ovh/dist/">http</a></td>
- <td><a href="http://tor.127001.ovh/">http</a></td>
- <td><a href="https://tor.127001.ovh/dist/">https</a></td>
- <td><a href="https://tor.127001.ovh/">https</a></td>
+ <td><a href="http://tor.myrl.net/dist/">http</a></td>
+ <td><a href="http://tor.myrl.net/">http</a></td>
+ <td><a href="https://tor.myrl.net/dist/">https</a></td>
+ <td><a href="https://tor.myrl.net/">https</a></td>
<td> - </td>
<td> - </td>
</tr>
<tr>
- <td>RU</td>
+ <td>FR</td>
- <td>Soviet Anonymous</td>
+ <td>stalkr.net</td>
<td>Up to date</td>
- <td><a href="ftp://creep.im/mirrors/tor">ftp</a></td>
- <td><a href="http://creep.im/tor/dist/">http</a></td>
- <td><a href="http://creep.im/tor">http</a></td>
- <td><a href="https://creep.im/tor/dist/">https</a></td>
- <td><a href="https://creep.im/tor">https</a></td>
- <td><a href="rsync://creep.im/tor-dist">rsync</a></td>
- <td><a href="rsync://creep.im/tor">rsync</a></td>
+ <td> - </td>
+ <td><a href="http://tor.stalkr.net/dist/">http</a></td>
+ <td><a href="http://tor.stalkr.net/">http</a></td>
+ <td><a href="https://tor.stalkr.net/dist/">https</a></td>
+ <td><a href="https://tor.stalkr.net/">https</a></td>
+ <td> - </td>
+ <td> - </td>
</tr>
<tr>
@@ -834,34 +783,51 @@
<tr>
- <td>GR</td>
+ <td>AT</td>
<td>Tor Supporter</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.void.gr/dist/">http</a></td>
- <td><a href="http://tor.void.gr">http</a></td>
- <td><a href="https://tor.void.gr/dist/">https</a></td>
- <td><a href="https://tor.void.gr">https</a></td>
- <td> - </td>
- <td> - </td>
+ <td><a href="http://tor.ludikovsky.name/dist">http</a></td>
+ <td><a href="http://tor.ludikovsky.name/">http</a></td>
+ <td><a href="https://tor.ludikovsky.name/dist">https</a></td>
+ <td><a href="https://tor.ludikovsky.name/">https</a></td>
+ <td><a href="rsync://tor.ludikovsky.name/tor-dist">rsync</a></td>
+ <td><a href="rsync://tor.ludikovsky.name/tor">rsync</a></td>
</tr>
<tr>
- <td>AR</td>
+ <td>US</td>
- <td>Xfree.com.ar</td>
+ <td>intfxdx.com</td>
<td>Up to date</td>
<td> - </td>
- <td><a href="http://tor.xfree.com.ar/dist/">http</a></td>
- <td><a href="http://tor.xfree.com.ar/">http</a></td>
+ <td><a href="http://108.248.87.242/dist/">http</a></td>
+ <td><a href="http://108.248.87.242/">http</a></td>
+ <td><a href="https://108.248.87.242/dist/">https</a></td>
+ <td><a href="https://108.248.87.242/">https</a></td>
+ <td> - </td>
<td> - </td>
+</tr>
+
+<tr>
+
+ <td>DE</td>
+
+ <td>Chaos Computer Club</td>
+
+ <td>Up to date</td>
+
<td> - </td>
+ <td><a href="http://tor.ccc.de/dist/">http</a></td>
+ <td><a href="http://tor.ccc.de/">http</a></td>
+ <td><a href="https://tor.ccc.de/dist/">https</a></td>
+ <td><a href="https://tor.ccc.de">https</a></td>
<td> - </td>
<td> - </td>
</tr>
diff --git a/include/tor-mirrors.csv b/include/tor-mirrors.csv
index ecfe1a05..31c6ba11 100644
--- a/include/tor-mirrors.csv
+++ b/include/tor-mirrors.csv
@@ -6,105 +6,105 @@ Tor Fan, NW Linux, US, WA, US, TRUE, FALSE, No, http://torproject.nwlinux.us/, ,
Tor Fan, Tor Supporter, NL, The Netherlands, NL, TRUE, FALSE, No, , , , , , https://www.coevoet.nl/tor/dist/, , ,
Tor Fan, LazyTiger, FR, France, FR, TRUE, FALSE, No, http://tor.taiga-san.net/, , , , http://tor.taiga-san.net/dist/, , , ,
Tor Fan, Tor Supporter, EE, Estonia, EE, TRUE, FALSE, No, http://tor.li/, https://tor.li/, , , http://tor.li/dist/, https://tor.li/dist/, , ,
-mirror-service(a)netcologne.de, NetCologne GmbH, DE, NRW, , TRUE, TRUE, No, http://mirror.netcologne.de/torproject.org, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, http://mirror.netcologne.de/torproject.org/dist, , rsync://mirror.netcologne.de/torproject.org/dist, , Mon Jan 1 15:11:40 2018
+mirror-service(a)netcologne.de, NetCologne GmbH, DE, NRW, , TRUE, TRUE, No, http://mirror.netcologne.de/torproject.org, , rsync://mirror.netcologne.de/torproject.org, ftp://mirror.netcologne.de/torproject.org/, http://mirror.netcologne.de/torproject.org/dist, , rsync://mirror.netcologne.de/torproject.org/dist, , Fri Jan 5 14:57:03 2018
admin AT netgull DOT com, NetGull, US, United States, North America, TRUE, TRUE, No, , , , , http://www.netgull.com/torproject/, , , ,
-mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, VN, , TRUE, TRUE, Yes, http://torproject.ip-connect.vn.ua, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Tue Jan 2 01:10:23 2018
-torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, No, http://tormirror.tb-itf-tor.de, https://tormirror.tb-itf-tor.de, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Mon Jan 1 15:11:40 2018
-info AT zentrum-der-gesundheit DOT de, Zentrum der Gesundheit, DK, Denmark, Europe, TRUE, FALSE, No, http://tor.idnr.ws/, , , , http://tor.idnr.ws/dist/, , , , Wed Sep 3 16:16:00 2014
-info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, No, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion, Mon Jan 1 15:11:40 2018
-Piratenpartei Bayern, Piratenpartei Bayern, DE, Germany, DE, TRUE, FALSE, NO, http://tormirror.piratenpartei-bayern.de, https://tormirror.piratenpartei-bayern.de, , , http://tormirror.piratenpartei-bayern.de/dist/, https://tormirror.piratenpartei-bayern.de/dist/, , , Fri Sep 9 06:46:02 2016
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, TRUE, NO, http://tor.hoi-polloi.org, https://tor.hoi-polloi.org/, , , http://tor.hoi-polloi.org/dist/, https://tor.hoi-polloi.org/dist/, , , Thu May 4 23:12:25 2017
-tor(a)fodt.it // FoDT.it Webteam, FoDT.it, AT, Austria, Europe, TRUE, FALSE, No, http://tor.fodt.it, https://tor.fodt.it, , ftp://ftp.fodt.it/pub/mirrors/torproject.org/, http://tor.fodt.it/dist/, https://tor.fodt.it/dist/, , , Tue Aug 26 15:19:07 2014
-http://www.multinet.no, MultiNet AS, NO, Trondheim, Trondheim, TRUE, TRUE, No, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Mon Jan 1 15:11:40 2018
-haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, No, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Mon Jan 1 15:11:40 2018
-Tor Fan, Tor Supporter, US, United States, US, FALSE, TRUE, No, http://2607:8b00:2::6258:5c9/, https://2607:8b00:2::6258:5c9/, , , http://2607:8b00:2::6258:5c9/dist/, https://2607:8b00:2::6258:5c9/dist/, , , Thu Jan 22 13:17:52 2015
-margus.random at mail.ee, CyberSIDE, EE, Estonia, EE, TRUE, FALSE, No, http://cyberside.planet.ee/tor/, , , , http://cyberside.net.ee/tor/, , , , Sun Dec 31 15:11:48 2017
-Tor Fan, torproject.is, IS, Iceland, IS, TRUE, FALSE, No, http://www.torproject.is/, , , , http://www.torproject.is/dist/, , , , Tue Jan 2 01:10:23 2018
-Tor Fan, spline, DE, Germany, DE, TRUE, FALSE, No, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor, http://tor.spline.de/dist/, https://tor.spline.inf.fu-berlin.de/dist/, rsync://ftp.spline.de/tor/dist, , Mon Jan 1 15:11:40 2018
-hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, No, http://torproject.ph3x.at, https://torproject.ph3x.at, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Tue Jan 2 01:10:23 2018
-Tor Fan, Tor Supporter, MX, Mexico, MX, TRUE, FALSE, No, http://fbnaia.homelinux.net/torproject/, https://fbnaia.homelinux.net/torproject/, , , http://fbnaia.homelinux.net/torproject/dist/, https://fbnaia.homelinux.net/torproject/dist/, , , Thu Sep 28 22:11:11 2017
-webmaster AT askapache DOT com, AskApache, US, California, US, TRUE, FALSE, No, http://tor.askapache.com/, , , , http://tor.askapache.com/dist/, , , , Mon Jan 1 15:11:40 2018
-kontakt AT unicorncloud DOT org, UnicornCloud.org, DE, Germany, Falkenstein, TRUE, FALSE, No, http://mirror.unicorncloud.org/torproject.org/, https://mirror.unicorncloud.org/torproject.org/, , , http://mirror.unicorncloud.org/torproject.org/dist, https://mirror.unicorncloud.org/torproject.org/dist, , , Thu Sep 28 19:12:25 2017
-root AT amorphis DOT eu, Amorphis, NL, The Netherlands, Europe, TRUE, FALSE, No, http://tor.amorphis.eu/, , , , http://tor.amorphis.eu/dist/, , , , Wed Mar 18 02:53:03 2015
+mirrors[at]ip-connect[dot]vn[dot]ua, IP-Connect LLC, UA, VN, , TRUE, TRUE, Yes, http://torproject.ip-connect.vn.ua, , rsync://torproject.ip-connect.vn.ua/torproject, ftp://torproject.ip-connect.vn.ua/mirror/torproject/, http://torproject.ip-connect.vn.ua/dist, , rsync://torproject.ip-connect.vn.ua/torproject/dist, , Fri Jan 5 21:59:27 2018
+torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, No, http://tormirror.tb-itf-tor.de, https://tormirror.tb-itf-tor.de, , , http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Fri Jan 5 14:57:03 2018
+info AT zentrum-der-gesundheit DOT de, Zentrum der Gesundheit, DK, Denmark, Europe, TRUE, FALSE, No, http://tor.idnr.ws/, , , , http://tor.idnr.ws/dist/, , , , Wed Sep 3 20:16:00 2014
+info /AT enn /DOT lu, Frenn vun der Enn A.S.B.L., IS, Iceland, Europe, TRUE, FALSE, No, http://torproject.lu/, , , , http://torproject.lu/dist/, , , http://btn6gqzqevlhoryd.onion, Fri Jan 5 21:59:27 2018
+Piratenpartei Bayern, Piratenpartei Bayern, DE, Germany, DE, TRUE, FALSE, NO, http://tormirror.piratenpartei-bayern.de, https://tormirror.piratenpartei-bayern.de, , , http://tormirror.piratenpartei-bayern.de/dist/, https://tormirror.piratenpartei-bayern.de/dist/, , , Fri Sep 9 10:46:02 2016
+Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, TRUE, NO, http://tor.hoi-polloi.org, https://tor.hoi-polloi.org/, , , http://tor.hoi-polloi.org/dist/, https://tor.hoi-polloi.org/dist/, , , Fri May 5 03:12:25 2017
+tor(a)fodt.it // FoDT.it Webteam, FoDT.it, AT, Austria, Europe, TRUE, FALSE, No, http://tor.fodt.it, https://tor.fodt.it, , ftp://ftp.fodt.it/pub/mirrors/torproject.org/, http://tor.fodt.it/dist/, https://tor.fodt.it/dist/, , , Tue Aug 26 19:19:07 2014
+http://www.multinet.no, MultiNet AS, NO, Trondheim, Trondheim, TRUE, TRUE, No, http://tor.multinet.no/, , , , http://tor.multinet.no/dist/, , , , Fri Jan 5 21:59:27 2018
+haskell at gmx.es, Tor Supporter, ES, Spain, Europe, TRUE, TRUE, No, http://tor.zilog.es/, https://tor.zilog.es/, , , http://tor.zilog.es/dist/, https://tor.zilog.es/dist/, , , Fri Jan 5 18:02:06 2018
+Tor Fan, Tor Supporter, US, United States, US, FALSE, TRUE, No, http://2607:8b00:2::6258:5c9/, https://2607:8b00:2::6258:5c9/, , , http://2607:8b00:2::6258:5c9/dist/, https://2607:8b00:2::6258:5c9/dist/, , , Thu Jan 22 18:17:52 2015
+margus.random at mail.ee, CyberSIDE, EE, Estonia, EE, TRUE, FALSE, No, http://cyberside.planet.ee/tor/, , , , http://cyberside.net.ee/tor/, , , , Fri Jan 5 14:57:03 2018
+Tor Fan, torproject.is, IS, Iceland, IS, TRUE, FALSE, No, http://www.torproject.is/, , , , http://www.torproject.is/dist/, , , , Fri Jan 5 21:59:27 2018
+Tor Fan, spline, DE, Germany, DE, TRUE, FALSE, No, http://tor.spline.de/, https://tor.spline.inf.fu-berlin.de/, rsync://ftp.spline.de/tor, ftp://ftp.spline.de/pub/tor, http://tor.spline.de/dist/, https://tor.spline.inf.fu-berlin.de/dist/, rsync://ftp.spline.de/tor/dist, , Fri Jan 5 18:02:06 2018
+hosting AT ph3x DOT at, ph3x, AT, Austria, Europe, TRUE, FALSE, No, http://torproject.ph3x.at, https://torproject.ph3x.at, , , http://torproject.ph3x.at/dist/, https://torproject.ph3x.at/dist/, , , Fri Jan 5 21:59:27 2018
+Tor Fan, Tor Supporter, MX, Mexico, MX, TRUE, FALSE, No, http://fbnaia.homelinux.net/torproject/, https://fbnaia.homelinux.net/torproject/, , , http://fbnaia.homelinux.net/torproject/dist/, https://fbnaia.homelinux.net/torproject/dist/, , , Fri Sep 29 02:11:11 2017
+webmaster AT askapache DOT com, AskApache, US, California, US, TRUE, FALSE, No, http://tor.askapache.com/, , , , http://tor.askapache.com/dist/, , , , Fri Jan 5 18:02:06 2018
+kontakt AT unicorncloud DOT org, UnicornCloud.org, DE, Germany, Falkenstein, TRUE, FALSE, No, http://mirror.unicorncloud.org/torproject.org/, https://mirror.unicorncloud.org/torproject.org/, , , http://mirror.unicorncloud.org/torproject.org/dist, https://mirror.unicorncloud.org/torproject.org/dist, , , Thu Sep 28 23:12:25 2017
+root AT amorphis DOT eu, Amorphis, NL, The Netherlands, Europe, TRUE, FALSE, No, http://tor.amorphis.eu/, , , , http://tor.amorphis.eu/dist/, , , , Wed Mar 18 06:53:03 2015
hackthissite.org, HackThisSite.org, US, United States, US, TRUE, TRUE, No, http://tor.hackthissite.org/, https://tor.hackthissite.org/, , , http://mirror.hackthissite.org/tor, https://mirror.hackthissite.org/tor, , , Wed May 25 21:09:20 2016
-paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, APNIC, TRUE, FALSE, No, http://torproject.coffswifi.net, , , , http://torproject.coffswifi.net/dist, , , , Mon Jan 1 15:11:40 2018
-Tor Fan, cyberarmy, AT, Austria, AT, TRUE, FALSE, No, http://tor.cyberarmy.at/, , , , , , , , Fri Jan 15 16:17:09 2016
-hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Iceland, TRUE, FALSE, No, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Mon Jan 1 15:11:40 2018
-Tor Fan, crazyhaze.de, DE, Germany, DE, TRUE, FALSE, No, http://tor.crazyhaze.de/, https://tor.crazyhaze.de/, , , http://tor.crazyhaze.de/dist/, https://tor.crazyhaze.de/dist/, , , Mon Jan 1 15:11:40 2018
-Tor Fan, Soviet Anonymous, RU, Russia, RU, TRUE, FALSE, No, http://creep.im/tor, https://creep.im/tor, rsync://creep.im/tor, ftp://creep.im/mirrors/tor, http://creep.im/tor/dist/, https://creep.im/tor/dist/, rsync://creep.im/tor-dist, , Sun Dec 31 15:11:48 2017
-Tor Fan, torservers, DE, Germany, DE, TRUE, FALSE, No, http://www.torservers.net/mirrors/torproject.org/, https://www.torservers.net/mirrors/torproject.org/, , , http://www.torservers.net/mirrors/torproject.org/dist/, https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Mon Jan 1 15:11:40 2018
-Tor Fan, Lightning-bolt.net, CZ, Czech Republic, CZ, TRUE, FALSE, No, http://torproject.lightning-bolt.net/, , , , http://torproject.lightning-bolt.net/dist/, , , , Wed Mar 18 02:53:03 2015
-IceBear, myRL.net, IS, Iceland, IS, TRUE, FALSE, No, http://tor.myrl.net/, https://tor.myrl.net/, , , http://tor.myrl.net/dist/, https://tor.myrl.net/dist/, , , Mon Jan 1 15:11:40 2018
-kiro AT userzap DOT de, Userzap, DE, Germany, DE, TRUE, FALSE, No, http://torprojekt.userzap.de, https://torprojekt.userzap.de, , , http://torprojekt.userzap.de/dist/, https://torprojekt.userzap.de/dist/, , , Thu Jan 22 13:17:52 2015
-tor(a)les.net, tor(a)les.net, CA, Canada, CA, TRUE, FALSE, NO, http://tor.les.net/, , , , http://tor.les.net/dist, , , , Sun Dec 31 15:11:48 2017
-tor(a)stalkr.net, stalkr.net, FR, France, FR, TRUE, TRUE, NO, http://tor.stalkr.net/, https://tor.stalkr.net/, , , http://tor.stalkr.net/dist/, https://tor.stalkr.net/dist/, , , Mon Jan 1 15:11:40 2018
-doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, DE, TRUE, FALSE, NO, , https://tor-mirror.cyberguerrilla.org, , , , https://tor-mirror.cyberguerrilla.org/dist/, , http://6dvj6v5imhny3anf.onion, Sun Dec 31 15:11:48 2017
-contact(a)gtor.org, Gtor, DE, Germany, DE, TRUE, TRUE, NO, http://torproject.gtor.org/, https://torproject.gtor.org/, rsync://torproject.gtor.org/website-mirror/, , http://torproject.gtor.org/dist/, https://torproject.gtor.org/dist/, rsync://torproject.gtor.org/website-mirror/dist/, , Fri Sep 9 06:46:02 2016
-Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, TRUE, NO, http://mirror.velcommuta.de/tor/, https://mirror.velcommuta.de/tor/, , , http://mirror.velcommuta.de/tor/dist/, https://mirror.velcommuta.de/tor/dist/, , , Mon Jan 1 15:11:40 2018
-EFF, EFF, US, United States, US, TRUE, FALSE, NO, , https://tor.eff.org, , , , https://tor.eff.org/dist/, , , Mon Jan 1 15:11:40 2018
-Tor Fan, Tor Supporter, GR, Greece, GR, TRUE, TRUE, NO, http://tor.void.gr, https://tor.void.gr, , , http://tor.void.gr/dist/, https://tor.void.gr/dist/, , , Sun Dec 31 15:11:48 2017
-Ich Eben, Tor Supporter, DE, Germany, DE, TRUE, TRUE, No, http://reichster.de/mirrors/torproject.org/, https://reichster.de/mirrors/torproject.org, , , http://reichster.de/mirrors/torproject.org/dist/, https://reichster.de/mirrors/torproject.org/dist/, , , Mon Jan 1 15:11:40 2018
-jlgaddis AT gnu DOT org, Evil Routers, US, United States, US, TRUE, FALSE, No, http://tor1.evilrouters.net/, , , , http://tor1.evilrouters.net/dist/, , , , Tue Jan 2 01:10:23 2018
-tor AT miglix DOT eu, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, NO, http://tor.miglix.eu, https://tor.miglix.eu, , , http://tor.miglix.eu/dist/, https://tor.miglix.eu/dist/, , , Fri Sep 9 06:46:02 2016
-tor TA ninurta TOD name, TorNinurtaName, AT, Austria, AT, TRUE, TRUE, no, http://tor.ninurta.name/, , , , http://tor.ninurta.name/dist/, , , , Thu Oct 23 20:02:17 2014
-fr33tux <AT> general-changelog-team.fr, Tor Supporter, FR, France, FR, TRUE, TRUE, No, http://tor.fr33tux.org, https://tor.fr33tux.org, , , http://tor.fr33tux.org/dist/, https://tor.fr33tux.org/dist/, , , Mon Jan 1 15:11:40 2018
-sebastian(at)bobrecki(dot)pl, Sebastian M. Bobrecki, PL, Poland, Europe, TRUE, FALSE, No, http://tor.iv.net.pl, https://tor.iv.net.pl, , , http://tor.iv.net.pl/dist/, https://tor.iv.net.pl/dist/, , , Sun Sep 13 22:14:19 2015
-tor-mirror AT rdns DOT cc, d0wn.biz, FR, France, Europe, TRUE, FALSE, No, http://tor.static.lu, https://tor.static.lu, , , http://tor.static.lu/dist/, https://tor.static.lu/dist/, , , Fri Sep 9 06:46:02 2016
-tor(a)moparisthebest.com, moparisthebest.com, DE, Germany, Europe, TRUE, TRUE, No, http://www.moparisthebest.com/tor/, https://www.moparisthebest.com/tor/, , , http://www.moparisthebest.com/tor/dist/, https://www.moparisthebest.com/tor/dist/, , , Mon Jan 1 15:11:40 2018
-stefano.fenoglio AT gmail DOT com, Tor Supporter, IT, Italy, Europe, TRUE, FALSE, No, http://tor.stefanof.com, , , , http://tor.stefanof.com/dist, , , , Fri Sep 9 06:46:02 2016
-Tor Fan, Ramos Research, US, United States, US, TRUE, TRUE, No, http://tor.ramosresearch.com/, , , , http://tor.ramosresearch.com/dist/, , , , Wed Mar 18 02:53:03 2015
-s7r[at]sky-ip[d0t]org, sky-ip.org, NL, Netherlands, NL, TRUE, FALSE, No, http://beautiful-mind.sky-ip.org/, , , , http://beautiful-mind.sky-ip.org/dist/, , , , Fri Sep 9 06:46:02 2016
-tor#pajonzeck#de, ITsn, DE, Germany, Europe, TRUE, FALSE, No, http://tor.pajonzeck.de/, https://tor.pajonzeck.de/, rsync://tor.pajonzeck.de/tor, , http://tor.pajonzeck.de/dist/, https://tor.pajonzeck.de/dist/, rsync://tor.pajonzeck.de/tor/dist, http://zgfgvob256pffy62.onion, Tue May 30 11:15:41 2017
-peter AT ludikovsky DOT name, Tor Supporter, AT, Austria, Europe, TRUE, TRUE, No, http://tor.ludikovsky.name/, https://tor.ludikovsky.name/, rsync://tor.ludikovsky.name/tor, , http://tor.ludikovsky.name/dist, https://tor.ludikovsky.name/dist, rsync://tor.ludikovsky.name/tor-dist, http://54lnbzjo6xlr4f4j.onion/, Mon Jan 1 15:11:40 2018
+paul at coffswifi.net, CoffsWiFi, AU, Australia and New Zealand, APNIC, TRUE, FALSE, No, http://torproject.coffswifi.net, , , , http://torproject.coffswifi.net/dist, , , , Fri Jan 5 14:57:03 2018
+Tor Fan, cyberarmy, AT, Austria, AT, TRUE, FALSE, No, http://tor.cyberarmy.at/, , , , , , , , Fri Jan 15 21:17:09 2016
+hostmaster AT example DOT com, TheOnionRouter, IS, Iceland, Iceland, TRUE, FALSE, No, http://www.theonionrouter.com/, , , , http://www.theonionrouter.com/dist/, , , , Fri Jan 5 21:59:27 2018
+Tor Fan, crazyhaze.de, DE, Germany, DE, TRUE, FALSE, No, http://tor.crazyhaze.de/, https://tor.crazyhaze.de/, , , http://tor.crazyhaze.de/dist/, https://tor.crazyhaze.de/dist/, , , Fri Jan 5 21:59:27 2018
+Tor Fan, Soviet Anonymous, RU, Russia, RU, TRUE, FALSE, No, http://creep.im/tor, https://creep.im/tor, rsync://creep.im/tor, ftp://creep.im/mirrors/tor, http://creep.im/tor/dist/, https://creep.im/tor/dist/, rsync://creep.im/tor-dist, , Fri Jan 5 18:02:06 2018
+Tor Fan, torservers, DE, Germany, DE, TRUE, FALSE, No, http://www.torservers.net/mirrors/torproject.org/, https://www.torservers.net/mirrors/torproject.org/, , , http://www.torservers.net/mirrors/torproject.org/dist/, https://www.torservers.net/mirrors/torproject.org/dist/, , http://hbpvnydyyjbmhx6b.onion/mirrors/torproject.org/, Fri Jan 5 18:02:06 2018
+Tor Fan, Lightning-bolt.net, CZ, Czech Republic, CZ, TRUE, FALSE, No, http://torproject.lightning-bolt.net/, , , , http://torproject.lightning-bolt.net/dist/, , , , Wed Mar 18 06:53:03 2015
+IceBear, myRL.net, IS, Iceland, IS, TRUE, FALSE, No, http://tor.myrl.net/, https://tor.myrl.net/, , , http://tor.myrl.net/dist/, https://tor.myrl.net/dist/, , , Fri Jan 5 14:57:03 2018
+kiro AT userzap DOT de, Userzap, DE, Germany, DE, TRUE, FALSE, No, http://torprojekt.userzap.de, https://torprojekt.userzap.de, , , http://torprojekt.userzap.de/dist/, https://torprojekt.userzap.de/dist/, , , Thu Jan 22 18:17:52 2015
+tor(a)les.net, tor(a)les.net, CA, Canada, CA, TRUE, FALSE, NO, http://tor.les.net/, , , , http://tor.les.net/dist, , , , Fri Jan 5 21:59:27 2018
+tor(a)stalkr.net, stalkr.net, FR, France, FR, TRUE, TRUE, NO, http://tor.stalkr.net/, https://tor.stalkr.net/, , , http://tor.stalkr.net/dist/, https://tor.stalkr.net/dist/, , , Fri Jan 5 14:57:03 2018
+doemela[AT]cyberguerrilla[DOT]org, cYbergueRrilLa AnonyMous NeXus, DE, Germany, DE, TRUE, FALSE, NO, , https://tor-mirror.cyberguerrilla.org, , , , https://tor-mirror.cyberguerrilla.org/dist/, , http://6dvj6v5imhny3anf.onion, Fri Jan 5 14:57:03 2018
+contact(a)gtor.org, Gtor, DE, Germany, DE, TRUE, TRUE, NO, http://torproject.gtor.org/, https://torproject.gtor.org/, rsync://torproject.gtor.org/website-mirror/, , http://torproject.gtor.org/dist/, https://torproject.gtor.org/dist/, rsync://torproject.gtor.org/website-mirror/dist/, , Fri Sep 9 10:46:02 2016
+Tor Fan, Tor Supporter, DE, Germany, DE, TRUE, TRUE, NO, http://mirror.velcommuta.de/tor/, https://mirror.velcommuta.de/tor/, , , http://mirror.velcommuta.de/tor/dist/, https://mirror.velcommuta.de/tor/dist/, , , Fri Jan 5 21:59:27 2018
+EFF, EFF, US, United States, US, TRUE, FALSE, NO, , https://tor.eff.org, , , , https://tor.eff.org/dist/, , , Fri Jan 5 18:02:06 2018
+Tor Fan, Tor Supporter, GR, Greece, GR, TRUE, TRUE, NO, http://tor.void.gr, https://tor.void.gr, , , http://tor.void.gr/dist/, https://tor.void.gr/dist/, , , Fri Jan 5 21:59:27 2018
+Ich Eben, Tor Supporter, DE, Germany, DE, TRUE, TRUE, No, http://reichster.de/mirrors/torproject.org/, https://reichster.de/mirrors/torproject.org, , , http://reichster.de/mirrors/torproject.org/dist/, https://reichster.de/mirrors/torproject.org/dist/, , , Fri Jan 5 21:59:27 2018
+jlgaddis AT gnu DOT org, Evil Routers, US, United States, US, TRUE, FALSE, No, http://tor1.evilrouters.net/, , , , http://tor1.evilrouters.net/dist/, , , , Fri Jan 5 18:02:06 2018
+tor AT miglix DOT eu, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, NO, http://tor.miglix.eu, https://tor.miglix.eu, , , http://tor.miglix.eu/dist/, https://tor.miglix.eu/dist/, , , Fri Sep 9 10:46:02 2016
+tor TA ninurta TOD name, TorNinurtaName, AT, Austria, AT, TRUE, TRUE, no, http://tor.ninurta.name/, , , , http://tor.ninurta.name/dist/, , , , Fri Oct 24 00:02:17 2014
+fr33tux <AT> general-changelog-team.fr, Tor Supporter, FR, France, FR, TRUE, TRUE, No, http://tor.fr33tux.org, https://tor.fr33tux.org, , , http://tor.fr33tux.org/dist/, https://tor.fr33tux.org/dist/, , , Fri Jan 5 21:59:27 2018
+sebastian(at)bobrecki(dot)pl, Sebastian M. Bobrecki, PL, Poland, Europe, TRUE, FALSE, No, http://tor.iv.net.pl, https://tor.iv.net.pl, , , http://tor.iv.net.pl/dist/, https://tor.iv.net.pl/dist/, , , Mon Sep 14 02:14:19 2015
+tor-mirror AT rdns DOT cc, d0wn.biz, FR, France, Europe, TRUE, FALSE, No, http://tor.static.lu, https://tor.static.lu, , , http://tor.static.lu/dist/, https://tor.static.lu/dist/, , , Fri Sep 9 10:46:02 2016
+tor(a)moparisthebest.com, moparisthebest.com, DE, Germany, Europe, TRUE, TRUE, No, http://www.moparisthebest.com/tor/, https://www.moparisthebest.com/tor/, , , http://www.moparisthebest.com/tor/dist/, https://www.moparisthebest.com/tor/dist/, , , Fri Jan 5 21:59:27 2018
+stefano.fenoglio AT gmail DOT com, Tor Supporter, IT, Italy, Europe, TRUE, FALSE, No, http://tor.stefanof.com, , , , http://tor.stefanof.com/dist, , , , Fri Sep 9 10:46:02 2016
+Tor Fan, Ramos Research, US, United States, US, TRUE, TRUE, No, http://tor.ramosresearch.com/, , , , http://tor.ramosresearch.com/dist/, , , , Wed Mar 18 06:53:03 2015
+s7r[at]sky-ip[d0t]org, sky-ip.org, NL, Netherlands, NL, TRUE, FALSE, No, http://beautiful-mind.sky-ip.org/, , , , http://beautiful-mind.sky-ip.org/dist/, , , , Fri Sep 9 10:46:02 2016
+tor#pajonzeck#de, ITsn, DE, Germany, Europe, TRUE, FALSE, No, http://tor.pajonzeck.de/, https://tor.pajonzeck.de/, rsync://tor.pajonzeck.de/tor, , http://tor.pajonzeck.de/dist/, https://tor.pajonzeck.de/dist/, rsync://tor.pajonzeck.de/tor/dist, http://zgfgvob256pffy62.onion, Tue May 30 15:15:41 2017
+peter AT ludikovsky DOT name, Tor Supporter, AT, Austria, Europe, TRUE, TRUE, No, http://tor.ludikovsky.name/, https://tor.ludikovsky.name/, rsync://tor.ludikovsky.name/tor, , http://tor.ludikovsky.name/dist, https://tor.ludikovsky.name/dist, rsync://tor.ludikovsky.name/tor-dist, http://54lnbzjo6xlr4f4j.onion/, Fri Jan 5 14:57:03 2018
admin AT nuclear DASH weapons DOT net, Setec Administrator, US, Texas, Austin, TRUE, FALSE, No, http://tor.nuclear-weapons.net, https://tor.nuclear-weapons.net, , , http://tor.nuclear-weapons.net/dist, https://tor.nuclear-weapons.net/dist, , , Fri Jun 9 15:24:14 2017
-opi(a)zeropi.net, Tor Supporter, FR, France, FR, TRUE, TRUE, No, http://tor-mirror.zeropi.net/, , , , http://tor-mirror.zeropi.net/dist/, , , , Wed Dec 3 09:15:20 2014
-alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, No, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Mon Jan 1 15:11:40 2018
-tor(a)0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, No, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Mon Jan 1 15:11:40 2018
-kontakt(a)unicorncloud.org, UnicornCloud.org, AT, Favoriten, Wien, TRUE, TRUE, No, http://www.unicorncloud.org/public/torproject.org/, https://www.unicorncloud.org/public/torproject.org/, , , http://www.unicorncloud.org/public/torproject.org/dist, https://www.unicorncloud.org/public/torproject.org/dist, , , Wed Mar 18 02:53:03 2015
-James Murphy, intfxdx.com, US, United States, US, TRUE, TRUE, No, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Mon Jan 1 15:11:40 2018
-Sam Whited 4096R/54083AE104EA7AD3 <sam(a)samwhited.com>, SamWhited.com, US, GA, United States, TRUE, TRUE, FALSE, http://mirrors.samwhited.net/tor, https://mirrors.samwhited.net/tor, rsync://mirrors.samwhited.net/tor, , http://mirrors.samwhited.net/tor/dist, https://mirrors.samwhited.net/tor/dist, rsync://mirrors.samwhited.net/tor-dist, , Thu Jul 16 23:49:12 2015
-rohit008 AT e DOT ntu DOT edu DOT sg, NTUOSS, SG, Singapore, Asia, TRUE, FALSE, No, http://torproject.ntuoss.com/, , , , http://torproject.ntuoss.com/dist/, , , , Wed Mar 18 02:53:03 2015
-hostmaster(a)lucidnetworks.net, Lucid Networks, US, United States, US, TRUE, FALSE, No, http://tor.mirrors.lucidnetworks.net, , rsync://tor.mirrors.lucidnetworks.net::tor, , http://tor.mirrors.lucidnetworks.net/dist, , rsync://tor.mirrors.lucidnetworks.net::tor-dist, , Mon Jan 1 15:11:40 2018
-mirror ntzk de, Netzkonstrukt Berlin, DE, Germany, Europe, TRUE, FALSE, No, http://mirror.ntzk.de/torproject.org/, https://mirror.ntzk.de/torproject.org/, , , http://mirror.ntzk.de/torproject.org/dist/, https://mirror.ntzk.de/torproject.org/dist/, , , Mon Jan 1 15:11:40 2018
-mirror(a)xfree.com.ar, Xfree.com.ar, AR, Argentina, South America, TRUE, FALSE, No, http://tor.xfree.com.ar/, , , , http://tor.xfree.com.ar/dist/, , , , Sun Dec 31 15:11:48 2017
-tor AT eprci NET, EPRCI, US, NH, US, TRUE, FALSE, No, http://tor.eprci.net/, https://www.eprci.com/tor/, , , http://tor.eprci.net/dist/, https://www.eprci.com/tor/dist/, , , Mon Jan 1 15:11:40 2018
-tor(a)kura.io, KURA IO LIMITED, NL, Netherlands, Europe, TRUE, TRUE, TRUE, http://tor-mirror.kura.io/, https://tor-mirror.kura.io/, rsync://tor-mirror.kura.io/torproject.org, ftp://tor-mirror.kura.io, http://tor-mirror.kura.io/dist/, https://tor-mirror.kura.io/dist/, rsync://tor-mirror.kura.io/torproject.org/dist, , Sat Jan 24 13:27:59 2015
-tor-admin AT wardsback DOT org, wardsback.org, FR, France, FR, TRUE, FALSE, No, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Mon Jan 1 15:11:40 2018
-PW, PW, DE, Germany, DE, TRUE, TRUE, NO, http://tor.pw.is/, https://www.it-sicherheitschannel.de/, , , http://tor.pw.is/dist/, https://www.it-sicherheitschannel.de/dist/, , , Mon Jan 1 15:11:40 2018
-kevin(a)freedom.press, Freedom of the Press Foundation, , US, US, True, False, No, http://tor.freedom.press, https://tor.freedom.press, , , http://tor.freedom.press/dist/, https://tor.freedom.press/dist/, , , Fri Jan 15 16:17:09 2016
-hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, No, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Sun Dec 31 15:11:48 2017
-tor at tvdw dot eu, TvdW, XX, Around the world, XX, TRUE, TRUE, Yes, http://tor-exit.network, , , , http://tor-exit.network/dist, , , , Tue Jan 2 01:10:23 2018
-tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, No, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion, Mon Jan 1 15:11:40 2018
-Stefan, sela Internet, DE, Germany, DE, TRUE, TRUE, No, http://sela.io/mirrors/torproject.org/, https://sela.io/mirrors/torproject.org/, , , http://sela.io/mirrors/torproject.org/dist/, https://sela.io/mirrors/torproject.org/dist/, , , Mon Jan 1 15:11:40 2018
-thomaswhite AT riseup DOT net, TheCthulhu, NL, The Netherlands, NL, True, False, No, http://tor.thecthulhu.com/, https://tor.thecthulhu.com/, , , http://tor.thecthulhu.com/dist/, https://tor.thecthulhu.com/dist/, , , Fri Sep 9 06:46:02 2016
-webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, No, http://tor.ccc.de/, https://tor.ccc.de, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Mon Jan 1 15:11:40 2018
-Tor AT goodeid DOT com, Tor Supporter, CA, Canada, CA, TRUE, FALSE, No, http://goodeid.com/mirrors/tor-project.org/, , , , http://goodeid.com/mirrors/tor-project.org/dist/, , , , Fri Sep 9 06:46:02 2016
-tor(a)datensicherhe.it, datensicherhe.it, AT, Austria, Europe, TRUE, FALSE, No, http://datensicherhe.it/torproject, https://datensicherhe.it/torproject, , , http://datensicherhe.it/torproject/dist/, https://datensicherhe.it/torproject/dist/, , , Fri Sep 9 06:46:02 2016
-NocturnalFilth, Disciples of Disorder, NL, Netherlands, NL, TRUE, FALSE, NO, http://torproject.mirror.disciplesofdisorder.com, https://torproject.mirror.disciplesofdisorder.com, , , http://torproject.mirror.disciplesofdisorder.com/dist/, https://torproject.mirror.disciplesofdisorder.com/dist/, , , Tue May 16 19:00:42 2017
-tormirror0121.10.swsnyder(a)spamgourmet.com, tormirror, DE, Germany, TRUE, FALSE, NO, http://tormirror.snydernet.net/, https://tormirror.snydernet.net/, , , http://tormirror.snydernet.net/dist/, https://tormirror.snydernet.net/dist/, , , Mon Dec 28 17:11:31 2015, Mon Jan 1 15:11:40 2018
-justaguy(a)riseup.net, Justaguy, FR, France, FR, TRUE, FALSE, No, http://tormirror.justaguy.pw/, https://tormirror.justaguy.pw, , , http://tormirror.justaguy.pw/dist/, https://tormirror.justaguy.pw/dist/, , , Fri Jan 15 16:17:09 2016
-Disciples of Disorder, Vargr, NL, Netherlands, NL, TRUE, FALSE, NO, http://tor.mirror.disciplesofdisorder.eu, https://tor.mirror.disciplesofdisorder.eu, , , http://tor.mirror.disciplesofdisorder.eu/dist/, https://tor.mirror.disciplesofdisorder.eu/dist/, , http://vargrevir52vkbte.onion, Wed Dec 23 12:50:00 2015
-nick at calyx dot com, The Calyx Institute, US, United States, North America, TRUE, FALSE, No, http://tor.calyxinstitute.org, https://tor.calyxinstitute.org, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion, Tue Jan 2 01:10:23 2018
-tor(a)armbrust.me, Michael Armbruster, FR, France, FR, TRUE, TRUE, No, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist, rsync://tor.armbrust.me/tor-dist, , Mon Jan 1 15:11:40 2018
-HdO Tor, HdO Tor Supporter, DE, Germany, US, TRUE, TRUE, No, http://tor.hdoev.de/, , , , http://tor.hdoev.de/dist/, , , , Fri Sep 9 06:46:02 2016
-Tor Fan, Tor Supporter, DE, Germany, Germany, TRUE, TRUE, No, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Tue Jan 2 01:10:23 2018
-john AT quintex.com, Quintex Alliance Consulting, US, TX, US, TRUE, FALSE, No, http://torproject.quintex.com/, https://torproject.quintex.com, rsync://mirror.quintex.com/torprojectwebsite, ftp://mirror.quintex.com/torproject.org, http://torproject.quintex.com/dist, https://torproject.quintex.com/dist, rsync://mirror.quintex.com/torprojectdist, , Fri Sep 9 06:46:02 2016
-noc AT babylon DOT network, Babylon Network, NL, The Netherlands, Europe, TRUE, TRUE, No, http://nl.mirror.babylon.network/torproject/, https://nl.mirror.babylon.network/torproject/, rsync://nl.mirror.babylon.network/torproject/, ftp://nl.mirror.babylon.network/torproject/, http://nl.mirror.babylon.network/torproject/dist/, https://nl.mirror.babylon.network/torproject/dist/, rsync://nl.mirror.babylon.network/torproject/dist/, , Tue Jan 2 01:10:23 2018
-noc AT babylon DOT network, Babylon Network, FR, France, Europe, TRUE, TRUE, No, http://fr.mirror.babylon.network/torproject/, https://fr.mirror.babylon.network/torproject/, rsync://fr.mirror.babylon.network/torproject/, ftp://fr.mirror.babylon.network/torproject/, http://fr.mirror.babylon.network/torproject/dist/, https://fr.mirror.babylon.network/torproject/dist/, rsync://fr.mirror.babylon.network/torproject/dist/, , Tue Jan 2 01:10:23 2018
+opi(a)zeropi.net, Tor Supporter, FR, France, FR, TRUE, TRUE, No, http://tor-mirror.zeropi.net/, , , , http://tor-mirror.zeropi.net/dist/, , , , Wed Dec 3 14:15:20 2014
+alexander AT dietrich DOT cx, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, No, http://tor.ybti.net/, https://tor.ybti.net/, , , http://tor.ybti.net/dist/, https://tor.ybti.net/dist/, , , Fri Jan 5 21:59:27 2018
+tor(a)0x3d.lu, 0x3d.lu, DE, Germany, Europe, TRUE, FALSE, No, http://tor.0x3d.lu/, https://tor.0x3d.lu/, , , http://tor.0x3d.lu/dist/, https://tor.0x3d.lu/dist/, , , Fri Jan 5 21:59:27 2018
+kontakt(a)unicorncloud.org, UnicornCloud.org, AT, Favoriten, Wien, TRUE, TRUE, No, http://www.unicorncloud.org/public/torproject.org/, https://www.unicorncloud.org/public/torproject.org/, , , http://www.unicorncloud.org/public/torproject.org/dist, https://www.unicorncloud.org/public/torproject.org/dist, , , Wed Mar 18 06:53:03 2015
+James Murphy, intfxdx.com, US, United States, US, TRUE, TRUE, No, http://108.248.87.242/, https://108.248.87.242/, , , http://108.248.87.242/dist/, https://108.248.87.242/dist/, , , Fri Jan 5 14:57:03 2018
+Sam Whited 4096R/54083AE104EA7AD3 <sam(a)samwhited.com>, SamWhited.com, US, GA, United States, TRUE, TRUE, FALSE, http://mirrors.samwhited.net/tor, https://mirrors.samwhited.net/tor, rsync://mirrors.samwhited.net/tor, , http://mirrors.samwhited.net/tor/dist, https://mirrors.samwhited.net/tor/dist, rsync://mirrors.samwhited.net/tor-dist, , Fri Jul 17 03:49:12 2015
+rohit008 AT e DOT ntu DOT edu DOT sg, NTUOSS, SG, Singapore, Asia, TRUE, FALSE, No, http://torproject.ntuoss.com/, , , , http://torproject.ntuoss.com/dist/, , , , Wed Mar 18 06:53:03 2015
+hostmaster(a)lucidnetworks.net, Lucid Networks, US, United States, US, TRUE, FALSE, No, http://tor.mirrors.lucidnetworks.net, , rsync://tor.mirrors.lucidnetworks.net::tor, , http://tor.mirrors.lucidnetworks.net/dist, , rsync://tor.mirrors.lucidnetworks.net::tor-dist, , Fri Jan 5 18:02:06 2018
+mirror ntzk de, Netzkonstrukt Berlin, DE, Germany, Europe, TRUE, FALSE, No, http://mirror.ntzk.de/torproject.org/, https://mirror.ntzk.de/torproject.org/, , , http://mirror.ntzk.de/torproject.org/dist/, https://mirror.ntzk.de/torproject.org/dist/, , , Fri Jan 5 21:59:27 2018
+mirror(a)xfree.com.ar, Xfree.com.ar, AR, Argentina, South America, TRUE, FALSE, No, http://tor.xfree.com.ar/, , , , http://tor.xfree.com.ar/dist/, , , , Fri Jan 5 18:02:06 2018
+tor AT eprci NET, EPRCI, US, NH, US, TRUE, FALSE, No, http://tor.eprci.net/, https://www.eprci.com/tor/, , , http://tor.eprci.net/dist/, https://www.eprci.com/tor/dist/, , , Fri Jan 5 18:02:06 2018
+tor(a)kura.io, KURA IO LIMITED, NL, Netherlands, Europe, TRUE, TRUE, TRUE, http://tor-mirror.kura.io/, https://tor-mirror.kura.io/, rsync://tor-mirror.kura.io/torproject.org, ftp://tor-mirror.kura.io, http://tor-mirror.kura.io/dist/, https://tor-mirror.kura.io/dist/, rsync://tor-mirror.kura.io/torproject.org/dist, , Sat Jan 24 18:27:59 2015
+tor-admin AT wardsback DOT org, wardsback.org, FR, France, FR, TRUE, FALSE, No, http://alliumcepa.wardsback.org/, , , , http://alliumcepa.wardsback.org/dist/, , , , Fri Jan 5 21:59:27 2018
+PW, PW, DE, Germany, DE, TRUE, TRUE, NO, http://tor.pw.is/, https://www.it-sicherheitschannel.de/, , , http://tor.pw.is/dist/, https://www.it-sicherheitschannel.de/dist/, , , Fri Jan 5 21:59:27 2018
+kevin(a)freedom.press, Freedom of the Press Foundation, , US, US, True, False, No, http://tor.freedom.press, https://tor.freedom.press, , , http://tor.freedom.press/dist/, https://tor.freedom.press/dist/, , , Fri Jan 15 21:17:09 2016
+hsu AT peterdavehellor DOT org, Department of CSE. Yuan Ze University, TW, Taiwan, Asia, TRUE, FALSE, No, http://ftp.yzu.edu.tw/torproject.org/, https://ftp.yzu.edu.tw/torproject.org/, rsync://ftp.yzu.edu.tw/pub/torproject.org/, ftp://ftp.yzu.edu.tw/torproject.org/, http://ftp.yzu.edu.tw/torproject.org/dist/, https://ftp.yzu.edu.tw/torproject.org/dist/, rsync://ftp.yzu.edu.tw/pub/torproject.org/dist/, , Fri Jan 5 18:02:06 2018
+tor at tvdw dot eu, TvdW, XX, Around the world, XX, TRUE, TRUE, Yes, http://tor-exit.network, , , , http://tor-exit.network/dist, , , , Fri Jan 5 21:59:27 2018
+tormaster AT urown DOT net, urown.net, CH, Switzerland, Europe, TRUE, TRUE, No, http://torproject.urown.net/, https://torproject.urown.net/, , , http://torproject.urown.net/dist/, https://torproject.urown.net/dist/, , http://torprowdd64ytmyk.onion, Fri Jan 5 21:59:27 2018
+Stefan, sela Internet, DE, Germany, DE, TRUE, TRUE, No, http://sela.io/mirrors/torproject.org/, https://sela.io/mirrors/torproject.org/, , , http://sela.io/mirrors/torproject.org/dist/, https://sela.io/mirrors/torproject.org/dist/, , , Fri Jan 5 21:59:27 2018
+thomaswhite AT riseup DOT net, TheCthulhu, NL, The Netherlands, NL, True, False, No, http://tor.thecthulhu.com/, https://tor.thecthulhu.com/, , , http://tor.thecthulhu.com/dist/, https://tor.thecthulhu.com/dist/, , , Fri Sep 9 10:46:02 2016
+webmaster AT ccc DOT de, Chaos Computer Club, DE, Germany, Europe, TRUE, FALSE, No, http://tor.ccc.de/, https://tor.ccc.de, , , http://tor.ccc.de/dist/, https://tor.ccc.de/dist/, , , Fri Jan 5 14:57:03 2018
+Tor AT goodeid DOT com, Tor Supporter, CA, Canada, CA, TRUE, FALSE, No, http://goodeid.com/mirrors/tor-project.org/, , , , http://goodeid.com/mirrors/tor-project.org/dist/, , , , Fri Sep 9 10:46:02 2016
+tor(a)datensicherhe.it, datensicherhe.it, AT, Austria, Europe, TRUE, FALSE, No, http://datensicherhe.it/torproject, https://datensicherhe.it/torproject, , , http://datensicherhe.it/torproject/dist/, https://datensicherhe.it/torproject/dist/, , , Fri Sep 9 10:46:02 2016
+NocturnalFilth, Disciples of Disorder, NL, Netherlands, NL, TRUE, FALSE, NO, http://torproject.mirror.disciplesofdisorder.com, https://torproject.mirror.disciplesofdisorder.com, , , http://torproject.mirror.disciplesofdisorder.com/dist/, https://torproject.mirror.disciplesofdisorder.com/dist/, , , Tue May 16 23:00:42 2017
+tormirror0121.10.swsnyder(a)spamgourmet.com, tormirror, DE, Germany, TRUE, FALSE, NO, http://tormirror.snydernet.net/, https://tormirror.snydernet.net/, , , http://tormirror.snydernet.net/dist/, https://tormirror.snydernet.net/dist/, , , Mon Dec 28 17:11:31 2015, Fri Jan 5 18:02:06 2018
+justaguy(a)riseup.net, Justaguy, FR, France, FR, TRUE, FALSE, No, http://tormirror.justaguy.pw/, https://tormirror.justaguy.pw, , , http://tormirror.justaguy.pw/dist/, https://tormirror.justaguy.pw/dist/, , , Fri Jan 15 21:17:09 2016
+Disciples of Disorder, Vargr, NL, Netherlands, NL, TRUE, FALSE, NO, http://tor.mirror.disciplesofdisorder.eu, https://tor.mirror.disciplesofdisorder.eu, , , http://tor.mirror.disciplesofdisorder.eu/dist/, https://tor.mirror.disciplesofdisorder.eu/dist/, , http://vargrevir52vkbte.onion, Wed Dec 23 17:50:00 2015
+nick at calyx dot com, The Calyx Institute, US, United States, North America, TRUE, FALSE, No, http://tor.calyxinstitute.org, https://tor.calyxinstitute.org, , , http://tor.calyxinstitute.org/dist/, https://tor.calyxinstitute.org/dist/, , http://tmdrhl4e4anhsjc5.onion, Fri Jan 5 21:59:27 2018
+tor(a)armbrust.me, Michael Armbruster, FR, France, FR, TRUE, TRUE, No, http://tor.armbrust.me/, https://tor.armbrust.me/, rsync://tor.armbrust.me/tor, , http://tor.armbrust.me/dist/, https://tor.armbrust.me/dist, rsync://tor.armbrust.me/tor-dist, , Fri Jan 5 21:59:27 2018
+HdO Tor, HdO Tor Supporter, DE, Germany, US, TRUE, TRUE, No, http://tor.hdoev.de/, , , , http://tor.hdoev.de/dist/, , , , Fri Sep 9 10:46:02 2016
+Tor Fan, Tor Supporter, DE, Germany, Germany, TRUE, TRUE, No, http://torproject.mirror.metalgamer.eu/, https://torproject.mirror.metalgamer.eu/, , , http://torproject.mirror.metalgamer.eu/dist/, https://torproject.mirror.metalgamer.eu/dist/, , , Fri Jan 5 21:59:27 2018
+john AT quintex.com, Quintex Alliance Consulting, US, TX, US, TRUE, FALSE, No, http://torproject.quintex.com/, https://torproject.quintex.com, rsync://mirror.quintex.com/torprojectwebsite, ftp://mirror.quintex.com/torproject.org, http://torproject.quintex.com/dist, https://torproject.quintex.com/dist, rsync://mirror.quintex.com/torprojectdist, , Fri Sep 9 10:46:02 2016
+noc AT babylon DOT network, Babylon Network, NL, The Netherlands, Europe, TRUE, TRUE, No, http://nl.mirror.babylon.network/torproject/, https://nl.mirror.babylon.network/torproject/, rsync://nl.mirror.babylon.network/torproject/, ftp://nl.mirror.babylon.network/torproject/, http://nl.mirror.babylon.network/torproject/dist/, https://nl.mirror.babylon.network/torproject/dist/, rsync://nl.mirror.babylon.network/torproject/dist/, , Fri Jan 5 21:59:27 2018
+noc AT babylon DOT network, Babylon Network, FR, France, Europe, TRUE, TRUE, No, http://fr.mirror.babylon.network/torproject/, https://fr.mirror.babylon.network/torproject/, rsync://fr.mirror.babylon.network/torproject/, ftp://fr.mirror.babylon.network/torproject/, http://fr.mirror.babylon.network/torproject/dist/, https://fr.mirror.babylon.network/torproject/dist/, rsync://fr.mirror.babylon.network/torproject/dist/, , Fri Jan 5 21:59:27 2018
Pool Toys, Pool Toys, SGP, Singapore, SGP, TRUE, TRUE, No, http://mirrors-sg.pooltoys.com/tor/, , rsync://mirrors-sg.pooltoys.com/tor/, ftp://mirrors-sg.pooltoys.com/tor/, http://mirrors-sg.pooltoys.com/tor/, , , ,
-cyberrax at yahoo.com, CyberSiDE, EE, Estonia, Europe, TRUE, FALSE, No, http://cyberside.net.ee/sibul/, https://cyberside.net.ee/sibul/, , , http://cyberside.net.ee/sibul/dist/, https://cyberside.net.ee/sibul/dist/, , , Sun Dec 31 15:11:48 2017
-torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, No, http://tormirror.tb-itf-tor.de, https://tormirror.tb-itf-tor.de, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Mon Jan 1 15:11:40 2018
+cyberrax at yahoo.com, CyberSiDE, EE, Estonia, Europe, TRUE, FALSE, No, http://cyberside.net.ee/sibul/, https://cyberside.net.ee/sibul/, , , http://cyberside.net.ee/sibul/dist/, https://cyberside.net.ee/sibul/dist/, , , Fri Jan 5 14:57:03 2018
+torsupport AT tb-itf DOT de, TB-ITF, DE, Germany, Europe, TRUE, TRUE, No, http://tormirror.tb-itf-tor.de, https://tormirror.tb-itf-tor.de, , ftp://tormirror.tb-itf-tor.de/, http://tormirror.tb-itf-tor.de/dist/, https://tormirror.tb-itf-tor.de/dist/, , , Fri Jan 5 23:52:37 2018
Disciples of Disorder, Vargr, NL, Netherlands, NL, TRUE, FALSE, NO, http://tor.mirror.disciplesofdisorder.eu, https://tor.mirror.disciplesofdisorder.eu, , , http://tor.mirror.disciplesofdisorder.eu/dist/, https://tor.mirror.disciplesofdisorder.eu/dist/, , http://vargrevir52vkbte.onion,
-admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, FR, TRUE, TRUE, No, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Mon Jan 1 15:11:40 2018
-lutz.horn(a)posteo.de, , DE, Germany, DE, TRUE, FALSE, No, , https://tor.lhorn.de/, , , , https://tor.lhorn.de/dist/, , , Tue Feb 7 16:00:00 2017
-karibu(a)freedif.org, Freedif, VN, Vietnam, VN, TRUE, FALSE, No, http://mirror.freedif.org/TorProject/, https://mirror.freedif.org/TorProject/, , , http://mirror.freedif.org/TorProject/dist, https://mirror.freedif.org/TorProject/dist, , , Tue Jan 2 01:10:23 2018
-Tor Fan, Tor Supporter, FR, France, FR, TRUE, FALSE, No, http://torproject.xj1.fr/, , , , http://torproject.xj1.fr/dist/, , , javkk6746z7wvigk.onion, Tue May 30 11:15:41 2017
+admin @T standaloneinstaler.com, Standalone Installer Software, FR, France, FR, TRUE, TRUE, No, http://mirrors.standaloneinstaller.com/torproject/, , rsync://mirrors.standaloneinstaller.com/torproject/, , http://mirrors.standaloneinstaller.com/torproject/dist, , rsync://mirrors.standaloneinstaller.com/torproject/dist, , Fri Jan 5 21:59:27 2018
+lutz.horn(a)posteo.de, , DE, Germany, DE, TRUE, FALSE, No, , https://tor.lhorn.de/, , , , https://tor.lhorn.de/dist/, , , Tue Feb 7 21:00:00 2017
+karibu(a)freedif.org, Freedif, VN, Vietnam, VN, TRUE, FALSE, No, http://mirror.freedif.org/TorProject/, https://mirror.freedif.org/TorProject/, , , http://mirror.freedif.org/TorProject/dist, https://mirror.freedif.org/TorProject/dist, , , Fri Jan 5 21:59:27 2018
+Tor Fan, Tor Supporter, FR, France, FR, TRUE, FALSE, No, http://torproject.xj1.fr/, , , , http://torproject.xj1.fr/dist/, , , javkk6746z7wvigk.onion, Tue May 30 15:15:41 2017
tienhn(a)vinahost.vn, VinaHost, VN, Viet Nam, VN, TRUE, FALSE, No, , https://mirror.vinahost.vn/torproject.org, rsync://mirror.vinahost.vn/torproject.org, , , https://mirror.vinahost.vn/torproject.org/dist/, rsync://mirror.vinahost.vn/torproject.org/dist, , Wed Apr 19 18:52:55 2017
-mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, BY, DE, TRUE, FALSE, No, http://mirror.funkfreundelandshut.de/torproject.org/, , , , http://mirror.funkfreundelandshut.de:81/torproject.org/dist/, , , http://44.225.40.254/torproject.org/dist, Mon Jan 1 15:11:40 2018
-email(a)heikorichter.name, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, No, http://tor.heikorichter.name, https://tor.heikorichter.name, , , http://tor.heikorichter.name/dist, https://tor.heikorichter.name/dist, rsync://ftp.heikorichter.name/tor, , Tue Jan 2 01:10:23 2018
-tor <at> secure <dot> voyage, secure.voyage, CA, Canada, CA, TRUE, FALSE, No, http://tor.secure.voyage, https://tor.secure.voyage, , , http://tor.secure.voyage/dist, https://tor.secure.voyage/dist, , , Tue Jan 2 01:10:23 2018
+mirror AT funkfreundelandshut DOT de, Funkfreunde Landshut e.V., DE, BY, DE, TRUE, FALSE, No, http://mirror.funkfreundelandshut.de/torproject.org/, , , , http://mirror.funkfreundelandshut.de:81/torproject.org/dist/, , , http://44.225.40.254/torproject.org/dist, Fri Jan 5 18:02:06 2018
+email(a)heikorichter.name, Tor Supporter, DE, Germany, Europe, TRUE, TRUE, No, http://tor.heikorichter.name, https://tor.heikorichter.name, , , http://tor.heikorichter.name/dist, https://tor.heikorichter.name/dist, rsync://ftp.heikorichter.name/tor, , Fri Jan 5 21:59:27 2018
+tor <at> secure <dot> voyage, secure.voyage, CA, Canada, CA, TRUE, FALSE, No, http://tor.secure.voyage, https://tor.secure.voyage, , , http://tor.secure.voyage/dist, https://tor.secure.voyage/dist, , , Fri Jan 5 23:52:37 2018
mirror-torproject at, , , , , , , , , , , , , , , ,
-razx.cloud, razx, CA, Canada, AB, TRUE, FALSE, No, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Tue Jan 2 01:10:23 2018
-coby [at ]127001 [dot] ovh, Tor Supporter, DE, Germany, DE, TRUE, FALSE, No, http://tor.127001.ovh/, https://tor.127001.ovh/, , , http://tor.127001.ovh/dist/, https://tor.127001.ovh/dist/, , , Mon Jan 1 15:11:40 2018
+razx.cloud, razx, CA, Canada, AB, TRUE, FALSE, No, http://tcejorprot.razx.cloud/, https://tcejorprot.razx.cloud/, , , http://tcejorprot.razx.cloud/dist/, https://tcejorprot.razx.cloud/dist, , http://rsqiscyvxt4qgaiw.onion/torproject.org/, Fri Jan 5 18:02:06 2018
+coby [at ]127001 [dot] ovh, Tor Supporter, DE, Germany, DE, TRUE, FALSE, No, http://tor.127001.ovh/, https://tor.127001.ovh/, , , http://tor.127001.ovh/dist/, https://tor.127001.ovh/dist/, , , Fri Jan 5 21:59:27 2018
, , , , , , , , , , , , , , , ,
, , , , , , , , , , , , , , , ,
[View Less]
1
0

05 Jan '18
commit 5f2c7a85671ee514892bc5ca265e6715d48cd0f8
Author: Roger Dingledine <arma(a)torproject.org>
Date: Fri Jan 5 18:23:07 2018 -0500
remove redundant "implement this" from log message
---
src/common/crypto.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/common/crypto.c b/src/common/crypto.c
index 380f038f4..c9db7cb4b 100644
--- a/src/common/crypto.c
+++ b/src/common/crypto.c
@@ -2877,10 +2877,10 @@ crypto_strongest_rand_syscall(uint8_t *out, size_t …
[View More]out_len)
/* Useful log message for errno. */
if (errno == ENOSYS) {
- log_warn(LD_CRYPTO, "Can't get entropy from getrandom(). "
+ log_warn(LD_CRYPTO, "Can't get entropy from getrandom()."
" You are running a version of Tor built to support"
" getrandom(), but the kernel doesn't implement this"
- " implement this function--probably because it is too old?");
+ " function--probably because it is too old?");
} else {
log_warn(LD_CRYPTO, "Can't get entropy from getrandom(): %s.",
strerror(errno));
[View Less]
1
0
commit 4f83d6d6ad336268d5befd757301c894e5072e1e
Merge: 143da7316 5f2c7a856
Author: Roger Dingledine <arma(a)torproject.org>
Date: Fri Jan 5 18:44:08 2018 -0500
Merge branch 'maint-0.3.2'
src/common/crypto.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
1
0