Merge branch 'master' into video-hosting
This commit is contained in:
@ -60,31 +60,6 @@ mastodon="https://social.privacytools.io/@blacklight447"
|
||||
blog="blacklight447"
|
||||
%}
|
||||
|
||||
{% include team.html
|
||||
avatar="danarel.png"
|
||||
name="Dan Arel"
|
||||
role="Blogging & Education"
|
||||
bio="I'm an author, columnist, and privacy advocate whose work has appeared in Time, Huff Post, OpenSource, and more."
|
||||
website="https://danarel.com"
|
||||
email="mailto:dan@privacytools.io"
|
||||
keys="https://www.danarel.com/keys/"
|
||||
twitter="danarel"
|
||||
mastodon="https://mastodon.technology/@danarel"
|
||||
blog="danarel"
|
||||
%}
|
||||
|
||||
{% include team.html
|
||||
avatar="dawid.svg"
|
||||
name="Dawid Potocki"
|
||||
role="Developer"
|
||||
bio="I'm a student interested in software development. I help improve PrivacyTools and promote using free libre software."
|
||||
website="https://dawidpotocki.com"
|
||||
email="https://dawidpotocki.com/accounts/#email"
|
||||
keys="https://dawidpotocki.com/accounts/#pgp"
|
||||
mastodon="https://social.privacytools.io/@dawidpotocki"
|
||||
blog="dawidpotocki"
|
||||
%}
|
||||
|
||||
{% include team.html
|
||||
avatar="dngray.png"
|
||||
name="dngray"
|
||||
@ -96,19 +71,6 @@ keys="https://keybase.io/dngray"
|
||||
mastodon="https://social.privacytools.io/@dngray"
|
||||
%}
|
||||
|
||||
{% include team.html
|
||||
avatar="nitrohorse.png"
|
||||
name="Andreas Basurto"
|
||||
nick="nitrohorse"
|
||||
role="Developer"
|
||||
bio="I'm a privacy advocate and software developer. I write web extensions, help research, and make updates to the site."
|
||||
website="https://nitrohorse.com/"
|
||||
email="mailto:nitrohorse@privacytools.io"
|
||||
keys="https://nitrohorse.com/keys"
|
||||
mastodon="https://nitro.horse/@andreas"
|
||||
blog="nitrohorse"
|
||||
%}
|
||||
|
||||
{% include team.html
|
||||
avatar="trai_dep.png"
|
||||
name="trai_dep"
|
||||
@ -145,6 +107,31 @@ website="https://mikaela.info/"
|
||||
keys="https://gitea.blesmrt.net/mikaela/shell-things/src/branch/master/.mikaela/keys"
|
||||
emeritus=true
|
||||
%}
|
||||
|
||||
{% include team.html
|
||||
name="Dan Arel"
|
||||
website="https://danarel.com"
|
||||
keys="https://www.danarel.com/keys/"
|
||||
blog="danarel"
|
||||
emeritus=true
|
||||
%}
|
||||
|
||||
{% include team.html
|
||||
name="Dawid Potocki"
|
||||
website="https://dawidpotocki.com"
|
||||
keys="https://dawidpotocki.com/accounts/#pgp"
|
||||
blog="dawidpotocki"
|
||||
emeritus=true
|
||||
%}
|
||||
|
||||
{% include team.html
|
||||
name="Andreas Basurto"
|
||||
nick="nitrohorse"
|
||||
website="https://nitrohorse.com/"
|
||||
keys="https://nitrohorse.com/keys"
|
||||
blog="nitrohorse"
|
||||
emeritus=true
|
||||
%}
|
||||
</div>
|
||||
|
||||
<div class="row">
|
@ -77,12 +77,14 @@ permalink: /classic/
|
||||
|
||||
{% include sections/operating-systems.html %}
|
||||
|
||||
{% include sections/live-operating-systems.html %}
|
||||
{% include sections/tor-operating-systems.html %}
|
||||
|
||||
{% include sections/mobile-operating-systems.html %}
|
||||
{% include sections/android-operating-systems.html %}
|
||||
|
||||
{% include sections/android-addons.html %}
|
||||
|
||||
{% include sections/other-mobile-operating-systems.html %}
|
||||
|
||||
{% include sections/router-firmware.html %}
|
||||
|
||||
{% include sections/windows10.html %}
|
||||
|
@ -13,41 +13,14 @@ description: "Even your own computer could be compromising your privacy. Discove
|
||||
<li><a href="#win10"><i class="fas fa-link"></i> Don't use Windows 10 - It's a privacy nightmare</a></li>
|
||||
</ul>
|
||||
|
||||
<h4 id="cpuvulns">Remember to check CPU vulnerability mitigations</h4>
|
||||
{% include sections/tor-operating-systems.html %}
|
||||
|
||||
<p><em><a href="https://support.microsoft.com/en-us/help/4073757/protect-windows-devices-from-speculative-execution-side-channel-attack">This also affects Windows 10</a>, but it doesn't expose this information or mitigation instructions as easily. MacOS users check <a href="https://support.apple.com/en-us/HT210108">How to enable full mitigation for Microarchitectural Data Sampling (MDS) vulnerabilities on Apple Support</a>.</em></p>
|
||||
|
||||
<p>When running a recent enough Linux kernel, you can check the CPU vulnerabilities it detects by <code>tail -n +1 /sys/devices/system/cpu/vulnerabilities/*</code>. By using <code>tail -n +1</code> instead of <code>cat</code>, the file names are also visible.</p>
|
||||
|
||||
<p>
|
||||
In case you have an Intel CPU, you may notice "SMT vulnerable" display after running the <code>tail</code> command. To mitigate this, disable <a href="https://en.wikipedia.org/wiki/Hyper-threading">hyper-threading</a> from the UEFI/BIOS. You can also take the following mitigation steps below if your system/distribution uses GRUB and supports <code>/etc/default/grub.d/</code>:
|
||||
</p>
|
||||
|
||||
<ol>
|
||||
<li><code>sudo mkdir /etc/default/grub.d/</code> to create a directory for additional grub configuration</li>
|
||||
<li><code>echo GRUB_CMDLINE_LINUX_DEFAULT="$GRUB_CMDLINE_LINUX_DEFAULT l1tf=full,force mds=full,nosmt mitigations=auto,nosmt nosmt=force" | sudo tee /etc/default/grub.d/mitigations.cfg</code> to create a new grub config file source with the echoed content</li>
|
||||
<li><code>sudo grub-mkconfig -o /boot/grub/grub.cfg</code> to generate a new grub config file including these new kernel boot flags</li>
|
||||
<li><code>sudo reboot</code> to reboot</li>
|
||||
<li>after the reboot, check <code>tail -n +1 /sys/devices/system/cpu/vulnerabilities/*</code> again to see that everything referring to SMT now says "SMT disabled."</li>
|
||||
</ol>
|
||||
|
||||
<h5>Further reading</h5>
|
||||
|
||||
<ul>
|
||||
<li><a href="https://cpu.fail/">CPU.fail</a></li>
|
||||
<li><a href="https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/">Hardware vulnerabilities index on The Linux kernel user's and administrator's guide</a></li>
|
||||
<li><a href="https://www.cyberciti.biz/faq/install-update-intel-microcode-firmware-linux/">How to install/update CPU microcode firmware on Linux</a> - Regardless of your CPU manufacturer, you should always install the latest microcode packages available to be protected from CPU vulnerabilities, especially if the command above reports <strong>no microcode</strong> in its output.</li>
|
||||
<li><a href="https://www.kernel.org/doc/html/latest/admin-guide/hw-vuln/mds.html">MDS - Microarchitectural Data Sampling on The Linux kernel user's and administrator's guide</a></li>
|
||||
<li><a href="https://mdsattacks.com/">RIDL and Fallout: MDS attacks on mdsattacks.com</a></li>
|
||||
<li><a href="https://en.wikipedia.org/wiki/Simultaneous_multithreading">Simultaneous multithreading on Wikipedia</a></li>
|
||||
</ul>
|
||||
|
||||
{% include sections/live-operating-systems.html %}
|
||||
|
||||
{% include sections/mobile-operating-systems.html %}
|
||||
{% include sections/android-operating-systems.html %}
|
||||
|
||||
{% include sections/android-addons.html %}
|
||||
|
||||
{% include sections/other-mobile-operating-systems.html %}
|
||||
|
||||
{% include sections/router-firmware.html %}
|
||||
|
||||
{% include sections/windows10.html %}
|
||||
|
@ -19,5 +19,5 @@ description: "Find a social network that doesn't pry into your data or monetize
|
||||
<li><a href="https://www.facebook.com/help/delete_account">Delete your Facebook account</a> - Direct link to delete your Facebook account without being able to reactivate it again.</li>
|
||||
<li><a href="https://deletefacebook.com/">How To Permanently Delete A Facebook Account</a> - This guide will take you through a smooth and successful Facebook account deletion.</li>
|
||||
<li><a href="https://addons.mozilla.org/firefox/addon/facebook-container/">Facebook Container by Mozilla</a> - Prevent Facebook from tracking you around the web.</li>
|
||||
<li><a href="https://www.stopusingfacebook.co/">Stop using Facebook</a> - A curated list of reasons to stop using Facebook and how to do it.</li>
|
||||
<li><a href="https://web.archive.org/web/20190510075433/https://www.stopusingfacebook.co/">Stop using Facebook</a> - A curated list of reasons to stop using Facebook and how to do it.</li>
|
||||
</ul>
|
||||
|
101
pages/services/chat.html
Normal file
101
pages/services/chat.html
Normal file
@ -0,0 +1,101 @@
|
||||
---
|
||||
layout: default
|
||||
permalink: /services/chat/
|
||||
title: "Matrix"
|
||||
description: "chat.privacytools.io is our official Matrix homeserver. You can register a user account on this homeserver using any Matrix client, no email required."
|
||||
---
|
||||
|
||||
{% include breadcrumbs.html %}
|
||||
|
||||
<div class="jumbotron p-5">
|
||||
<h1 class="display-4">Matrix</h1>
|
||||
<p class="lead"><code>chat.privacytools.io</code> is our official Matrix homeserver.</p>
|
||||
<hr class="my-4">
|
||||
<p>You can register a user account on this homeserver using any Matrix client, no email required. However, you do not need to be a member of this homeserver to join our rooms, and choosing a smaller instance or <a href="https://element.io/matrix-services">buying</a> or <a href="https://matrix.org/docs/guides/installing-synapse">hosting</a> your own will help promote decentralization and performance in the Matrix fediverse!</p>
|
||||
<p class="lead">
|
||||
<a class="btn btn-primary btn-lg" href="https://element.privacytools.io/" role="button">Open in Element</a>
|
||||
<a class="btn btn-secondary btn-lg" href="https://www.hello-matrix.net/public_servers.php" role="button">Find Another Homeserver</a>
|
||||
</p>
|
||||
</div>
|
||||
|
||||
<h2 class="pt-4" id="homeserverinfo">Connection Information</h2>
|
||||
<p><strong>To register on or connect to our homeserver, simply use <code>https://chat.privacytools.io</code> as the homeserver in your Matrix client.</strong></p>
|
||||
|
||||
{%
|
||||
include cardv2.html
|
||||
title="Element"
|
||||
image="/assets/img/svg/3rd-party/element.svg"
|
||||
description='<a href="https://element.io">Element</a> (formerly <a href="https://element.io/blog/welcome-to-element/">Riot</a>) is the reference client for the <a href="https://matrix.org/docs/guides/introduction">Matrix</a> network. The <a href="https://matrix.org/docs/spec">Matrix open standard</a> is an open-source standard for secure, decentralized, real-time communication.'
|
||||
labels="text==VoIP"
|
||||
website="https://element.io"
|
||||
privacy-policy="https://element.io/privacy"
|
||||
forum="https://forum.privacytools.io/t/discussion-element-io/665"
|
||||
github="https://github.com/vector-im/riot-web/"
|
||||
windows="https://element.io/get-started"
|
||||
mac="https://element.io/get-started"
|
||||
linux="https://element.io/get-started"
|
||||
fdroid="https://f-droid.org/packages/im.vector.app/"
|
||||
googleplay="https://play.google.com/store/apps/details?id=im.vector.app"
|
||||
ios="https://apps.apple.com/app/vector/id1083446067"
|
||||
web="https://app.element.io"
|
||||
%}
|
||||
|
||||
<p>If you're asked to enter a custom homeserver URL in a Matrix client, enter <code>https://chat.privacytools.io</code>, <strong>not</strong> privacytools.io or element.privacytools.io. You do not need to change your identity server, in fact <code>https://vector.im</code> is the only functional one, by design.</p>
|
||||
|
||||
<p>These details will be autofilled for you in most clients if you enter your full username (e.g. @alice:privacytools.io rather than alice) into the username field. In general it is preferable to do that rather than trying to remember what the homeserver URL is.</p>
|
||||
|
||||
<h2 class="pt-4">Frequently Asked Questions</h2>
|
||||
|
||||
<h4>Is #general:privacytools.io or #privacy:privacytools.io chat end-to-end encrypted?</h4>
|
||||
<p><strong>No.</strong> Messages sent to the #general chat are encrypted from with client-to-server encryption, i.e. HTTPS. This means that your messages can't be viewed by an attacker on your network, or your ISP, etc. <strong>However</strong>, because this is a public chat room anybody can view your messages if they are a member, and newcomers will be able to see all message history. Do not say anything in rooms that don't use End-to-End (E2E) encryption that you wouldn't want tied to you personally.</p>
|
||||
|
||||
<h4>Isn't Matrix behind Cloudflare?</h4>
|
||||
<p>Matrix.org is, chat.privacytools.io isn't. If you use our homeserver and our Element install, you should be good.</p>
|
||||
|
||||
<h4>Isn't Matrix slow?</h4>
|
||||
<p>It can be, for some! Due to the trememdous amount of people registering on the matrix.org homeserver, it is often overloaded and occasionally slow to respond. Therefore, users on that homeserver occasionally report a less than ideal chat experience. If that's you, you can fix this problem by switching to another homeserver. Good alternatives include...
|
||||
<ul>
|
||||
<li>ours of course, at <mark><strong>chat.privacytools.io</strong></mark>, you're here right?</li>
|
||||
<li>feneas.org, tchncs.de, weho.st, pine64.org, mozilla.org, kde.org, halogen.city...</li>
|
||||
<li>purchasing an instance from <a href="https://element.io/matrix-services">Element Matrix Services</a></li>
|
||||
<li>running your own by installing <a href="https://github.com/matrix-org/synapse">synapse</a> — certainly the best option for the technically inclined!</li>
|
||||
</ul>
|
||||
<p>Note that at time of writing, switching homeservers requires re-registering with another account at that server, as nomadic identities haven't been implemented yet.</p>
|
||||
|
||||
<h4>What happens when I remove a message in Element?</h4>
|
||||
<p>Your homeserver will send a removal request for that message and some clients will render it as a black line, but by editing the source it's possibly for homeserver to not respect it and do nothing. If the room is bridged to protocols that don't support message removals (IRC, XMPP), their users see nothing happening. Don’t say anything you wouldn’t want to remain in the chat forever.</p>
|
||||
|
||||
<h4>Why do XMPP users keep joining and leaving all the time?</h4>
|
||||
<p><a href="https://github.com/matrix-org/matrix-bifrost/issues/63">It's an issue with the XMPP bridge</a>.</p>
|
||||
|
||||
<h2 class="pt-4">Rooms</h2>
|
||||
<p>To join a room, just type <code>/join [room address]</code> in any room. You can run this command from any server, not just ours!</p>
|
||||
<p>The PrivacyTools administration operates the following channels:</p>
|
||||
<ul>
|
||||
<li><code>#dev:privacytools.io</code>: Discussions relating to <a href="https://github.com/privacytoolsIO/privacytools.io/">building</a> www.privacytools.io.</li>
|
||||
<li><code>#forum:privacytools.io</code>: All PrivacyTools Forum updates (Automated).</li>
|
||||
<li><strong><code>#general:privacytools.io</code>: Main discussion room.</strong></li>
|
||||
<li><code>#github:privacytools.io</code>: GitHub updates for @privacytoolsIO (Automated).</li>
|
||||
<li><code>#guides:privacytools.io</code>: Privacy Guides development work.</li>
|
||||
<li><strong><code>#privacy:privacytools.io</code>: On-topic privacy, security, opsec discussion and support.</strong></li>
|
||||
<li><code>#wiki:privacytools.io</code>: <a href="https://wiki.privacytools.io/view/Main_Page">Wiki</a>-building discussion room.</li>
|
||||
</ul>
|
||||
<p>If you're looking for more things to chat about, check out these rooms as well:</p>
|
||||
<ul>
|
||||
<li><code>#disroot:disroot.org</code>: Disroot.org room</li>
|
||||
<li><code>#freenode_#opennic:matrix.org</code>: OpenNIC IRC Channel.</li>
|
||||
<li><code>#matrix:matrix.org</code>: Discuss Matrix itself!</li>
|
||||
<li><code>#nothing_to_hide:privacytools.io</code>: More general privacy chat.</li>
|
||||
<li><code>#_oftc_#Tor-Project:matrix.org</code>: Official Tor Project chat room!</li>
|
||||
<li><code>#plume:disroot.org</code>: Discussion for Plume: Federated blogging.</li>
|
||||
<li><code>#element-android:matrix.org</code>: Element Android discussion and support.</li>
|
||||
<li><code>#element-ios:matrix.org</code>: Element iOS discussion and support.</li>
|
||||
<li><code>#riotx:matrix.org</code>: RiotX (soon to be: Element Android) discussion and support.</li>
|
||||
<li><code>#element-web:matrix.org</code>: Element Web/Desktop discussion and support.</li>
|
||||
</ul>
|
||||
<p>If you are a room operator and want your room listed here, feel free to contact us. Especially if you operate a large room and/or are a member of our homeserver!</p>
|
||||
<p>We do not necessarily endorse any of the content in these listed rooms.</p>
|
||||
|
||||
<h2 class="pt-4" id="contact">Contact</h2>
|
||||
<p>For server related issues, the administrator of this homeserver is Jonah, who can be reached on Matrix at <code>@jonah:privacytools.io</code>.
|
||||
<p>For moderation related issues or anything else, you can contact Jonah or anyone in the team (listed in the <code>+team:privacytools.io</code> community) via Matrix, or via email at <code>support@privacytools.io</code>.</p>
|
@ -11,7 +11,7 @@ description: "The PrivacyTools team is proud to introduce a suite of privacy-cen
|
||||
<ul class="list-group list-group-flush">
|
||||
<li class="list-group-item"><a href="https://search.privacytools.io/"><i class="fas fa-search fa-lg fa-fw"></i> Searx - Privacy Friendly Search at search.privacytools.io</a></li>
|
||||
<li class="list-group-item"><a href="https://social.privacytools.io/"><i class="fas fa-retweet fa-lg fa-fw"></i> Mastodon - Tracker Free Social Networking at social.privacytools.io</a></li>
|
||||
<li class="list-group-item"><a href="https://chat.privacytools.io/"><i class="fas fa-comment fa-lg fa-fw"></i> Matrix - Federated private chat at chat.privacytools.io</a></li>
|
||||
<li class="list-group-item"><a href="/services/chat/"><i class="fas fa-comment fa-lg fa-fw"></i> Matrix - Federated private chat at chat.privacytools.io</a></li>
|
||||
<li class="list-group-item"><a href="https://forum.privacytools.io/"><i class="fab fa-discourse fa-lg fa-fw"></i> Discourse - Forum at forum.privacytools.io</a></li>
|
||||
<li class="list-group-item"><a href="https://tube.privacytools.io/"><i class="fas fa-file-video fa-lg fa-fw"></i> PeerTube - Decentralized Video at tube.privacytools.io</a></li>
|
||||
<li class="list-group-item"><a href="https://write.privacytools.io/"><i class="fas fa-pen-alt fa-lg fa-fw"></i> Write Freely - Federated minimalist blog at write.privacytools.io</a></li>
|
@ -14,6 +14,12 @@ description: "Discover secure and private ways to communicate with others online
|
||||
Recent news about breaking E2EE on centralized instant messengers
|
||||
</h3>
|
||||
|
||||
<h5>June 2020</h5>
|
||||
<ul>
|
||||
<li><a href="https://www.eff.org/deeplinks/2020/06/senates-new-anti-encryption-bill-even-worse-earn-it-and-thats-saying-something">The Senate’s New Anti-Encryption Bill Is Even Worse Than EARN IT, and That’s Saying Something (EFF)</a></li>
|
||||
<li><a href="https://cyberlaw.stanford.edu/blog/2020/06/there%E2%80%99s-now-even-worse-anti-encryption-bill-earn-it-doesn%E2%80%99t-make-earn-it-bill-ok">There’s Now an Even Worse Anti-Encryption Bill Than EARN IT. That Doesn’t Make the EARN IT Bill OK. (Stanford)</a></li>
|
||||
</ul>
|
||||
|
||||
<h5>March 2020</h5>
|
||||
<ul>
|
||||
<li><a href="https://www.eff.org/deeplinks/2020/03/graham-blumenthal-bill-new-path-doj-finally-break-encryption">The Graham-Blumenthal Bill: A New Path for DOJ to Finally Break Encryption (EFF)</a></li>
|
||||
|
@ -8,7 +8,7 @@ permalink: /sponsors/
|
||||
<div class="mx-auto text-center">
|
||||
<div class="my-4">
|
||||
<h1>Sponsors of {{ site.name }}</h1>
|
||||
<p>A massive thank you to the following <strong>organization-level sponsors</strong> of {{ site.name }}, who have pledged $250+:</p>
|
||||
<p>A massive thank you to the following <strong>organization-level sponsors</strong> of {{ site.name }}, who pledge $250+:</p>
|
||||
</div>
|
||||
<div class="mt-4 mb-3">
|
||||
{% include sponsors/gold.html %}
|
||||
@ -25,14 +25,14 @@ permalink: /sponsors/
|
||||
<div>
|
||||
<div class="my-4">
|
||||
<h3>Advocates</h3>
|
||||
<p>These individuals and organizations have pledged $100 - $249 to the organization.</p>
|
||||
<p>These individuals and organizations pledge $100 - $249 to the organization.</p>
|
||||
</div>
|
||||
<div class="row">
|
||||
{% include sponsors/silver.html %}
|
||||
</div>
|
||||
</div>
|
||||
<h3>Backers</h3>
|
||||
<p>These individuals and organizations have pledged $10 - $99 to the organization.</p>
|
||||
<p>These individuals and organizations pledge $10 - $99 to the organization.</p>
|
||||
{% include sponsors/list.html %}
|
||||
|
||||
<h3>Why sponsor {{ site.name }}?</h3>
|
||||
|
Reference in New Issue
Block a user