Compare commits
16 Commits
Author | SHA1 | Date | |
---|---|---|---|
8e9e5a2f3b | |||
652147a87b | |||
7c4c200428 | |||
4a2607daa7 | |||
4e7e6679d6 | |||
25606d6bca | |||
09025ec639 | |||
35374fe586 | |||
48e8fbb6fd | |||
da2e647f8c | |||
7d489acfd3 | |||
5d9e52790f | |||
9c4c0e9cea | |||
fe19a9c378 | |||
57d5e5abe3 | |||
8f05a68761 |
10
.github/CONTRIBUTING.md
vendored
@ -24,17 +24,9 @@ We're trying to keep it simple and promote the best tools, not all of them.
|
|||||||
There can be exceptions if no software is available that meet the criteria.
|
There can be exceptions if no software is available that meet the criteria.
|
||||||
|
|
||||||
Note: This criteria applies to all of privacytools.io
|
Note: This criteria applies to all of privacytools.io
|
||||||
### Providers
|
### Proividers
|
||||||
- Prioritize Products by privacy respecting nationality.
|
- Prioritize Products by privacy respecting nationality.
|
||||||
|
|
||||||
### DNS
|
|
||||||
|
|
||||||
- supports DoH or DoT (We love DNSCrypt, but there is already https://github.com/DNSCrypt/dnscrypt-resolvers which is directly supported by dnscrypt-proxy, so we don't consider useful to list providers only supporting it).
|
|
||||||
- supports DNSSEC (https://dnssec.vs.uni-due.de/ can test your current DNS provider).
|
|
||||||
- doesn't log IP addresses during normal operation (If your suggestion logs, please compare its privacy policy with other servers on our table that keep logs).
|
|
||||||
- preferably supports QNAME minimization (if you have access to the dig command, `dig +short txt qnamemintest.internet.nl`)
|
|
||||||
|
|
||||||
|
|
||||||
### VPN
|
### VPN
|
||||||
- Prioritize Products by privacy respecting nationality.
|
- Prioritize Products by privacy respecting nationality.
|
||||||
- Cannot be based in USA or UK.
|
- Cannot be based in USA or UK.
|
||||||
|
12
.github/PULL_REQUEST_TEMPLATE.md
vendored
@ -1,19 +1,17 @@
|
|||||||
<!-- PLEASE READ OUR CONTRIBUTING GUIDELINES (https://github.com/privacytoolsIO/privacytools.io/blob/master/.github/CONTRIBUTING.md) BEFORE SUBMITTING -->
|
<!-- PLEASE READ OUR [CONTRIBUTING GUIDELINES](https://github.com/privacytoolsIO/privacytools.io/blob/master/.github/CONTRIBUTING.md) BEFORE SUBMITTING -->
|
||||||
|
|
||||||
## Description
|
## Description
|
||||||
|
|
||||||
Resolves: #none <!-- The number of the issue that is resolved by this pull request. If there is none, feel free to delete this line -->
|
Resolves: #none <!-- The number of the issue that is resolved by this pull request. If there is none, feel free to delete this line
|
||||||
|
|
||||||
#### Check List <!-- Please add an x in each box below, like so: [x] -->
|
#### Check List <!-- Please add an x in each box below, like so: [x] -->
|
||||||
|
|
||||||
- [ ] I have read and understand [the contributing guidelines](https://github.com/privacytoolsIO/privacytools.io/blob/master/.github/CONTRIBUTING.md).
|
- [ ] I have read and understand [CONTRIBUTING.md](https://github.com/privacytoolsIO/privacytools.io/blob/master/.github/CONTRIBUTING.md).
|
||||||
|
|
||||||
- [ ] I have [listed the source code](https://github.com/privacytoolsIO/privacytools.io/blob/master/source_code.md).
|
- [ ] I have listed the source code for this project in [source_code.md](https://github.com/privacytoolsIO/privacytools.io/blob/master/source_code.md).
|
||||||
|
|
||||||
- [ ] This project is [free/libre software](https://www.wikipedia.org/wiki/Free_software).
|
- [ ] This project is [free/libre software](https://www.wikipedia.org/wiki/Free_software).
|
||||||
|
|
||||||
- [ ] This project has an [associated discussion](https://github.com/privacytoolsIO/privacytools.io/issues).
|
- [ ] This project has an [associated discussion](https://github.com/privacytoolsIO/privacytools.io/issues).
|
||||||
|
|
||||||
* Netlify preview for the mainly edited page: <!-- link or Non Applicable? Edit this in afterwards -->
|
Code Repository (if applicable):
|
||||||
|
|
||||||
* Code Repository (if applicable):
|
|
||||||
|
@ -2,254 +2,88 @@
|
|||||||
<div class="card-header text-white bg-secondary">
|
<div class="card-header text-white bg-secondary">
|
||||||
<h3 class="h5">
|
<h3 class="h5">
|
||||||
{% if include.badges %}
|
{% if include.badges %}
|
||||||
<span class="mr-2">{{ include.title }}</span>
|
<span class="mr-2">{{include.title}}</span>
|
||||||
{% assign badges = include.badges | split:"|" %}
|
{% assign badges = include.badges | replace:", ", "," | split:"," %}
|
||||||
{% for badge in badges %}
|
{% for badge in badges %}
|
||||||
{% assign badge_data = badge | split:":" %}
|
{% assign badge_data = badge | split:":" %}
|
||||||
{% assign color = badge_data[0] %}
|
{% assign color = badge_data[0] %}
|
||||||
{% assign text = badge_data[1] %}
|
{% assign text = badge_data[1] %}
|
||||||
{% assign tooltip = badge_data[2] | default: false %}
|
{% assign tooltip = badge_data[2] | default: false %}
|
||||||
{% assign help_icon = '<i class="far fa-question-circle"></i>' %}
|
{% assign help_icon = '<i class="far fa-question-circle"></i>' %}
|
||||||
<span
|
<span class="badge badge-{{color}}" {% if tooltip %} data-toggle="tooltip" title="{{ tooltip }}">{{text}} {{ help_icon
|
||||||
class="badge badge-{{color}}"
|
}}
|
||||||
{% if tooltip %}
|
{% else %}
|
||||||
data-toggle="tooltip"
|
>{{text}}
|
||||||
title="{{ tooltip }}"
|
{% endif %}
|
||||||
> {{text}} {{ help_icon }}
|
</span>
|
||||||
{% else %}
|
{% endfor %}
|
||||||
> {{text}}
|
|
||||||
{% endif %}
|
|
||||||
</span>
|
|
||||||
{% endfor %}
|
|
||||||
{% else %}
|
{% else %}
|
||||||
{{ include.title }}
|
{{include.title}}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</h3>
|
</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="card-body">
|
<div class="card-body">
|
||||||
<p class="card-text">
|
<p class="card-text">
|
||||||
<img
|
<img src="{{include.image}}" height="120" width="120" class="panel-pic" alt="{{include.title}}">
|
||||||
src="{{include.image}}"
|
{{include.description}}
|
||||||
height="120"
|
|
||||||
width="120"
|
|
||||||
class="panel-pic"
|
|
||||||
alt="{{include.title}}"
|
|
||||||
>
|
|
||||||
{{ include.description }}
|
|
||||||
{% if include.labels %}
|
{% if include.labels %}
|
||||||
{% assign labels = include.labels | split:"|" %}
|
{% assign labels = include.labels | replace:", ", "," | split:"," %}
|
||||||
{% for label in labels %}
|
{% for label in labels %}
|
||||||
{% assign label_data = label | split:":" %}
|
{% assign label_data = label | split:":" %}
|
||||||
{% assign color = label_data[0] %}
|
{% assign color = label_data[0] %}
|
||||||
{% assign text = label_data[1] %}
|
{% assign text = label_data[1] %}
|
||||||
{% assign tooltip = label_data[2] | default: false %}
|
{% assign tooltip = label_data[2] | default: false %}
|
||||||
{% assign help_icon = '<i class="far fa-question-circle"></i>' %}
|
{% assign help_icon = '<i class="far fa-question-circle"></i>' %}
|
||||||
<span
|
<span class="badge badge-{{color}}" {% if tooltip %} data-toggle="tooltip" title="{{ tooltip }}">{{text}} {{ help_icon
|
||||||
class="badge badge-{{color}}"
|
}}
|
||||||
{% if tooltip %}
|
{% else %}
|
||||||
data-toggle="tooltip"
|
>{{text}}
|
||||||
title="{{ tooltip }}"
|
{% endif %}
|
||||||
> {{text}} {{ help_icon }}
|
</span>
|
||||||
{% else %}
|
{% endfor %}
|
||||||
> {{text}}
|
|
||||||
{% endif %}
|
|
||||||
</span>
|
|
||||||
{% endfor %}
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</p>
|
</p>
|
||||||
<div class="d-flex justify-content-between flex-column flex-md-row align-items-start align-items-md-center">
|
<div class="d-flex justify-content-between flex-column flex-md-row align-items-start align-items-md-center">
|
||||||
<div class="flex-shrink-0 mr-2">
|
<div class="flex-shrink-0 mr-2">
|
||||||
<a
|
<a href="{{include.website}}" class="btn btn-primary mt-1"><i class="fas fa-external-link-alt fa-fw"></i> Website</a>
|
||||||
href="{{include.website}}"
|
|
||||||
class="btn btn-primary mt-1">
|
|
||||||
<i class="fas fa-external-link-alt fa-fw"></i>
|
|
||||||
Website
|
|
||||||
</a>
|
|
||||||
{% if include.forum %}
|
{% if include.forum %}
|
||||||
<a
|
<a href="{{include.forum}}" class="btn btn-success mt-1"><i class="fab fa-discourse fa-fw"></i> Forum</a>
|
||||||
href="{{include.forum}}"
|
|
||||||
class="btn btn-success mt-1">
|
|
||||||
<i class="fab fa-discourse fa-fw"></i>
|
|
||||||
Forum
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% if include.tor %}
|
{% if include.tor %}
|
||||||
<a
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="Requires specific software to access: torproject.org" href="{{include.tor}}"><img class="mt-2" alt="Tor" src="/assets/img/layout/tor.png" width="35" height="35"></a>
|
||||||
data-toggle="tooltip"
|
|
||||||
data-placement="bottom"
|
|
||||||
data-original-title="Requires specific software to access: torproject.org"
|
|
||||||
href="{{include.tor}}">
|
|
||||||
<img
|
|
||||||
class="mt-2"
|
|
||||||
alt="Tor"
|
|
||||||
src="/assets/img/layout/tor.png"
|
|
||||||
width="35"
|
|
||||||
height="35">
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="mt-2">
|
<div class="mt-2">
|
||||||
{% if include.windows %}
|
{% if include.windows %}<i class="fab fa-windows fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
{% if include.windows != "" %}
|
{% if include.mac %}<i class="fab fa-apple fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
<a href="{{ include.windows }}">
|
{% if include.linux %}<i class="fab fa-linux fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
<i class="fab fa-windows fa-2x fa-fw d-inline pr-1"></i>
|
{% if include.bsd %}<i class="fab fa-freebsd fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-windows fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.mac %}
|
{% if include.firefox %}<i class="fab fa-firefox fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
{% if include.mac != "" %}
|
{% if include.chrome %}<i class="fab fa-chrome fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
<a href="{{ include.mac }}">
|
{% if include.safari %}<i class="fab fa-safari fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
<i class="fab fa-apple fa-2x fa-fw d-inline pr-1"></i>
|
{% if include.opera %}<i class="fab fa-opera fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
</a>
|
{% if include.edge %}<i class="fab fa-edge fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-apple fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.linux %}
|
{% if include.android %}<i class="fab fa-android fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
{% if include.linux != "" %}
|
{% if include.ios %}<i class="fab fa-app-store-ios fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
<a href="{{ include.linux }}">
|
{% if include.fire %}<i class="fas fa-fire fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
<i class="fab fa-linux fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-linux fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.bsd %}
|
{% if include.web %}<i class="fas fa-desktop fa-2x fa-fw d-inline pr-1"></i>{% endif %}
|
||||||
{% if include.bsd != "" %}
|
|
||||||
<a href="{{ include.bsd }}">
|
|
||||||
<i class="fab fa-freebsd fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-freebsd fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.firefox %}
|
|
||||||
{% if include.firefox != "" %}
|
|
||||||
<a href="{{ include.firefox }}">
|
|
||||||
<i class="fab fa-firefox fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-firefox fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.chrome %}
|
|
||||||
{% if include.chrome != "" %}
|
|
||||||
<a href="{{ include.chrome }}">
|
|
||||||
<i class="fab fa-chrome fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-chrome fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.safari %}
|
|
||||||
{% if include.safari != "" %}
|
|
||||||
<a href="{{ include.safari }}">
|
|
||||||
<i class="fab fa-safari fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-safari fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.opera %}
|
|
||||||
{% if include.opera != "" %}
|
|
||||||
<a href="{{ include.opera }}">
|
|
||||||
<i class="fab fa-opera fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-opera fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.edge %}
|
|
||||||
{% if include.edge != "" %}
|
|
||||||
<a href="{{ include.edge }}">
|
|
||||||
<i class="fab fa-edge fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-edge fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.android %}
|
|
||||||
{% if include.android != "" %}
|
|
||||||
<a href="{{ include.android }}">
|
|
||||||
<i class="fab fa-android fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-android fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.ios %}
|
|
||||||
{% if include.ios != "" %}
|
|
||||||
<a href="{{ include.ios }}">
|
|
||||||
<i class="fab fa-app-store-ios fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fab fa-app-store-ios fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.fire %}
|
|
||||||
{% if include.fire != "" %}
|
|
||||||
<a href="{{ include.fire }}">
|
|
||||||
<i class="fas fa-fire fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fas fa-fire fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.web %}
|
|
||||||
{% if include.web != "" %}
|
|
||||||
<a href="{{ include.web }}">
|
|
||||||
<i class="fas fa-desktop fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
</a>
|
|
||||||
{% else %}
|
|
||||||
<i class="fas fa-desktop fa-2x fa-fw d-inline pr-1"></i>
|
|
||||||
{% endif %}
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{{include.icon1}}
|
{{include.icon1}}
|
||||||
{{include.icon2}}
|
{{include.icon2}}
|
||||||
{{include.icon3}}
|
{{include.icon3}}
|
||||||
|
|
||||||
{% if include.github %}
|
{% if include.github %}<a href="{{include.github}}"><i class="fab fa-github fa-2x fa-fw d-inline"></i></a>{% endif %}
|
||||||
<a href="{{include.github}}">
|
{% if include.gitlab %}<a href="{{include.gitlab}}"><i class="fab fa-gitlab fa-2x fa-fw d-inline"></i></a>{% endif %}
|
||||||
<i class="fab fa-github fa-2x fa-fw d-inline"></i>
|
{% if include.git %}<a href="{{include.git}}"><i class="fab fa-git-square fa-2x fa-fw d-inline"></i></a>{% endif %}
|
||||||
</a>
|
{% if include.source %}<a href="{{include.source}}"><i class="fas fa-code-branch fa-2x fa-fw d-inline"></i></a>{% endif %}
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.gitlab %}
|
|
||||||
<a href="{{include.gitlab}}">
|
|
||||||
<i class="fab fa-gitlab fa-2x fa-fw d-inline"></i>
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.git %}
|
|
||||||
<a href="{{include.git}}">
|
|
||||||
<i class="fab fa-git-square fa-2x fa-fw d-inline"></i>
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
{% if include.source %}
|
|
||||||
<a href="{{include.source}}">
|
|
||||||
<i class="fas fa-code-branch fa-2x fa-fw d-inline"></i>
|
|
||||||
</a>
|
|
||||||
{% endif %}
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<br>
|
<br>
|
||||||
|
@ -31,11 +31,11 @@
|
|||||||
Browser
|
Browser
|
||||||
</a>
|
</a>
|
||||||
<div class="dropdown-menu" aria-labelledby="browserDropdown">
|
<div class="dropdown-menu" aria-labelledby="browserDropdown">
|
||||||
<a class="dropdown-item" href="/browsers/#browser"><i class="fas fa-check fa-fw"></i> Recommendations</a>
|
<a class="dropdown-item" href="/browsers/#fingerprint"><i class="fas fa-fingerprint fa-fw"></i> Fingerprint</a>
|
||||||
<a class="dropdown-item" href="/browsers/#fingerprint"><i class="fas fa-fingerprint fa-fw"></i> Fingerprinting Info</a>
|
<a class="dropdown-item" href="/browsers/#addons"><i class="far fa-list-alt fa-fw"></i> Firefox Privacy Add-ons</a>
|
||||||
<a class="dropdown-item" href="/browsers/#webrtc"><i class="far fa-eye fa-fw"></i> WebRTC IP Leak Test</a>
|
<a class="dropdown-item" href="/browsers/#about_config"><i class="fas fa-wrench fa-fw"></i> Privacy Related Tweaks</a>
|
||||||
<a class="dropdown-item" href="/browsers/#addons"><i class="far fa-list-alt fa-fw"></i> Browser Add-ons</a>
|
<a class="dropdown-item" href="/browsers/#browser"><i class="fas fa-check fa-fw"></i> Recommendation</a>
|
||||||
<a class="dropdown-item" href="/browsers/#about_config"><i class="fas fa-wrench fa-fw"></i> Firefox Tweaks</a>
|
<a class="dropdown-item" href="/browsers/#webrtc"><i class="far fa-eye fa-fw"></i> WebRTC IP Leak</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item dropdown">
|
<li class="nav-item dropdown">
|
||||||
@ -62,12 +62,12 @@
|
|||||||
OS
|
OS
|
||||||
</a>
|
</a>
|
||||||
<div class="dropdown-menu" aria-labelledby="osDropdown">
|
<div class="dropdown-menu" aria-labelledby="osDropdown">
|
||||||
<a class="dropdown-item" href="/operating-systems/#os"><i class="fas fa-th-large fa-fw"></i> PC OS Recommendations</a>
|
|
||||||
<a class="dropdown-item" href="/operating-systems/#live_os"><i class="fas fa-compact-disc fa-fw"></i> Live CD Operating Systems</a>
|
|
||||||
<a class="dropdown-item" href="/operating-systems/#mobile_os"><i class="fas fa-mobile-alt fa-fw"></i> Mobile Operating Systems</a>
|
|
||||||
<a class="dropdown-item" href="/operating-systems/#aaddons"><i class="fas fa-th fa-fw"></i> Android Privacy Add-ons</a>
|
<a class="dropdown-item" href="/operating-systems/#aaddons"><i class="fas fa-th fa-fw"></i> Android Privacy Add-ons</a>
|
||||||
<a class="dropdown-item" href="/operating-systems/#firmware"><i class="fas fa-signal fa-fw"></i> Router Firmware</a>
|
|
||||||
<a class="dropdown-item" href="/operating-systems/#win10"><i class="far fa-thumbs-down fa-fw"></i> Don't use Windows 10</a>
|
<a class="dropdown-item" href="/operating-systems/#win10"><i class="far fa-thumbs-down fa-fw"></i> Don't use Windows 10</a>
|
||||||
|
<a class="dropdown-item" href="/operating-systems/#live_os"><i class="fas fa-compact-disc fa-fw"></i> Live CD OS</a>
|
||||||
|
<a class="dropdown-item" href="/operating-systems/#mobile_os"><i class="fas fa-mobile-alt fa-fw"></i> Mobile OS</a>
|
||||||
|
<a class="dropdown-item" href="/operating-systems/#os"><i class="fas fa-th-large fa-fw"></i> PC OS</a>
|
||||||
|
<a class="dropdown-item" href="/operating-systems/#firmware"><i class="fas fa-signal fa-fw"></i> Router Firmware</a>
|
||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
@ -107,9 +107,6 @@
|
|||||||
<li class="nav-item">
|
<li class="nav-item">
|
||||||
<a class="nav-link" href="/donate/">Donate <i class="fas fa-heart text-danger"></i></a>
|
<a class="nav-link" href="/donate/">Donate <i class="fas fa-heart text-danger"></i></a>
|
||||||
</li>
|
</li>
|
||||||
<li class="nav-item">
|
|
||||||
<a class="nav-link" href="https://blog.privacytools.io">Blog</a>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
<h1 id="addons" class="anchor"><a href="#addons"><i class="fas fa-link anchor-icon"></i></a> Recommended Browser Add-ons</h1>
|
<h1 id="addons" class="anchor"><a href="#addons"><i class="fas fa-link anchor-icon"></i></a> Excellent Firefox Privacy Add-ons</h1>
|
||||||
|
|
||||||
<div class="alert alert-primary" role="alert">
|
<div class="alert alert-primary" role="alert">
|
||||||
<strong>Improve your privacy with these browser add-ons.</strong>
|
<strong>Improve your privacy with these excellent Firefox add-ons.</strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
<h1 id="browser" class="anchor"><a href="#browser"><i class="fas fa-link anchor-icon"></i></a> Browser Recommendations</h1>
|
<h1 id="browser" class="anchor"><a href="#browser"><i class="fas fa-link anchor-icon"></i></a> Browser Recommendation</h1>
|
||||||
|
|
||||||
{% include cardv2.html
|
{% include cardv2.html
|
||||||
title="Mozilla Firefox"
|
title="Mozilla Firefox"
|
||||||
@ -17,7 +17,7 @@ bsd=""
|
|||||||
%}
|
%}
|
||||||
|
|
||||||
{% include cardv2.html
|
{% include cardv2.html
|
||||||
title="Tor Browser - Provides Anonymity"
|
title="Tor Browser - for anonymity"
|
||||||
image="/assets/img/tools/Tor-Browser.png"
|
image="/assets/img/tools/Tor-Browser.png"
|
||||||
description='Tor Browser is your choice if you need an extra layer of anonymity. It\'s a modified version of Firefox ESR, which comes with pre-installed privacy add-ons, encryption and an advanced proxy. <a href="https://write.privacytools.io/my-thoughts-on-security/slicing-onions-part-1-myth-busting-tor">How does Tor work?</a>'
|
description='Tor Browser is your choice if you need an extra layer of anonymity. It\'s a modified version of Firefox ESR, which comes with pre-installed privacy add-ons, encryption and an advanced proxy. <a href="https://write.privacytools.io/my-thoughts-on-security/slicing-onions-part-1-myth-busting-tor">How does Tor work?</a>'
|
||||||
website="https://www.torproject.org/"
|
website="https://www.torproject.org/"
|
||||||
@ -30,3 +30,17 @@ android=""
|
|||||||
ios=""
|
ios=""
|
||||||
bsd=""
|
bsd=""
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
{% include cardv2.html
|
||||||
|
title="Brave Browser - Complete but Experimental"
|
||||||
|
image="/assets/img/tools/Brave.png"
|
||||||
|
description="The new open source browser Brave automatically blocks ads and trackers, making it faster and safer than your current browser. Brave is based on Chromium. <span class=\"badge badge-warning\" data-toggle=\"tooltip\" title=\"Brave is a good choice if you want to use a Chromium-based browser. But at this point in Brave's development, it's not as good as Firefox with privacy addons.\">experimental <i class=\"far fa-question-circle\"></i></span>"
|
||||||
|
website="https://brave.com/"
|
||||||
|
forum="https://forum.privacytools.io/t/discussion-brave-browser/280"
|
||||||
|
github="https://github.com/brave"
|
||||||
|
windows=""
|
||||||
|
mac=""
|
||||||
|
linux=""
|
||||||
|
android=""
|
||||||
|
ios=""
|
||||||
|
%}
|
||||||
|
@ -40,6 +40,10 @@
|
|||||||
<a href="https://fruux.com/">fruux</a> - a unified contacts/calendaring system that works across platforms and devices.
|
<a href="https://fruux.com/">fruux</a> - a unified contacts/calendaring system that works across platforms and devices.
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
|
<li>
|
||||||
|
<a href="https://signal.org/blog/flock/">Flock</a> - a discontinued calendar and contacts sync service by Open Whisper Systems. Despite being shut down the <a href="https://github.com/signalapp/Flock">source code</a> is still available on GitHub.
|
||||||
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="../cloud">cloud backups</a> - consider regularly exporting your calendar and or contacts and backing them up on a separate storage drive or uploading them to cloud storage (ideally after <a href="../encryption-tools/#encrypt">encrypting</a> them).
|
<a href="../cloud">cloud backups</a> - consider regularly exporting your calendar and or contacts and backing them up on a separate storage drive or uploading them to cloud storage (ideally after <a href="../encryption-tools/#encrypt">encrypting</a> them).
|
||||||
</li>
|
</li>
|
||||||
|
@ -27,6 +27,14 @@ forum="https://forum.privacytools.io/t/discussion-dnscrypt/340"
|
|||||||
github="https://github.com/jedisct1/dnscrypt-proxy"
|
github="https://github.com/jedisct1/dnscrypt-proxy"
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
<h3>Worth Mentioning</h3>
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://gitlab.com/quidsup/notrack">NoTrack</a> - A network-wide DNS server which blocks Tracking sites. Currently works in Debian and Ubuntu.</li>
|
||||||
|
<li><a href="https://namecoin.info/">Namecoin</a> - A decentralized DNS open source information registration and transfer system based on the Bitcoin cryptocurrency.</li>
|
||||||
|
<li><a href="https://pi-hole.net/">Pi-hole</a> - A network-wide DNS server for the Raspberry Pi. Blocks advertising and tracking domains for all devices on your network.</li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<h1 id="icanndns" class="anchor"><a href="#icanndns"><i class="fas fa-link anchor-icon"></i></a> Encrypted ICANN DNS Providers</h1>
|
<h1 id="icanndns" class="anchor"><a href="#icanndns"><i class="fas fa-link anchor-icon"></i></a> Encrypted ICANN DNS Providers</h1>
|
||||||
|
|
||||||
<div class="alert alert-warning" role="alert">
|
<div class="alert alert-warning" role="alert">
|
||||||
@ -290,12 +298,13 @@ github="https://github.com/jedisct1/dnscrypt-proxy"
|
|||||||
<ul>
|
<ul>
|
||||||
<li>Firefox comes with built-in DoH support with Cloudflare set as the default resolver, but can be configured to use any DoH resolver. <span class="badge badge-warning" data-toggle="tooltip" data-placement="bottom" data-original-title='"Cloudflare has agreed to collect only a limited amount of data about the DNS requests that are sent to the Cloudflare Resolver for Firefox via the Firefox browser."'><a href="https://developers.cloudflare.com/1.1.1.1/commitment-to-privacy/privacy-policy/firefox/"><i class="fas fa-exclamation-triangle"></i></a></span> Currently Mozilla is <a href="https://blog.mozilla.org/futurereleases/2019/07/31/dns-over-https-doh-update-detecting-managed-networks-and-user-choice/">conducting studies</a> before enabling DoH by default for all US-based Firefox users.</li>
|
<li>Firefox comes with built-in DoH support with Cloudflare set as the default resolver, but can be configured to use any DoH resolver. <span class="badge badge-warning" data-toggle="tooltip" data-placement="bottom" data-original-title='"Cloudflare has agreed to collect only a limited amount of data about the DNS requests that are sent to the Cloudflare Resolver for Firefox via the Firefox browser."'><a href="https://developers.cloudflare.com/1.1.1.1/commitment-to-privacy/privacy-policy/firefox/"><i class="fas fa-exclamation-triangle"></i></a></span> Currently Mozilla is <a href="https://blog.mozilla.org/futurereleases/2019/07/31/dns-over-https-doh-update-detecting-managed-networks-and-user-choice/">conducting studies</a> before enabling DoH by default for all US-based Firefox users.</li>
|
||||||
<li>Android 9 comes with a DoT client by <a href="https://support.google.com/android/answer/9089903">default</a>. <span class="badge badge-warning" data-toggle="tooltip" data-original-title="...but with some caveats"><a href="https://www.quad9.net/private-dns-quad9-android9/"><i class="fas fa-exclamation-triangle"></i></a></span></li>
|
<li>Android 9 comes with a DoT client by <a href="https://support.google.com/android/answer/9089903">default</a>. <span class="badge badge-warning" data-toggle="tooltip" data-original-title="...but with some caveats"><a href="https://www.quad9.net/private-dns-quad9-android9/"><i class="fas fa-exclamation-triangle"></i></a></span></li>
|
||||||
<li><a href="https://apps.apple.com/app/id1452162351">DNSCloak</a> - An <a href="https://github.com/s-s/dnscloak">open-source</a> DNSCrypt and DoH client for iOS by <td><a data-toggle="tooltip" data-placement="bottom" data-original-title='"A charitable non-profit host organization for international Free Software projects."' href="https://techcultivation.org/">the Center for the Cultivation of Technology gemeinnuetzige GmbH</a>.</li>
|
<li>
|
||||||
<li><a href="https://pi-hole.net/">Pi-hole</a> - A network-wide DNS server mainly for the Raspberry Pi. Blocks ads, tracking, and malicious domains for all devices on your network.</li>
|
<a href="https://apps.apple.com/app/id1452162351">DNSCloak</a> - An <a href="https://github.com/s-s/dnscloak">open-source</a> DNSCrypt and DoH client for iOS by <td><a data-toggle="tooltip" data-placement="bottom" data-original-title='"A charitable non-profit host organization for international Free Software projects."' href="https://techcultivation.org/">the Center for the Cultivation of Technology gemeinnuetzige GmbH</a>.
|
||||||
<li><a href="https://gitlab.com/quidsup/notrack">NoTrack</a> - A network-wide DNS server like Pi-hole for blocking ads, tracking, and malicious domains.</li>
|
</li>
|
||||||
<li><a href="https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby">Stubby</a> - An open-source application for Linux, macOS, and Windows that acts as a local DNS Privacy stub resolver using DoT.</li>
|
<li>
|
||||||
<li><a href="https://namecoin.info/">Namecoin</a> - A decentralized DNS open-source information registration and transfer system based on the Bitcoin cryptocurrency.</li>
|
<a href="https://dnsprivacy.org/wiki/display/DP/DNS+Privacy+Daemon+-+Stubby">Stubby</a> - An <a href="https://github.com/getdnsapi/stubby">open-source</a> application for Linux, macOS, and Windows that acts as a local DNS Privacy stub resolver using DoT.
|
||||||
|
</li>
|
||||||
<li><a href="https://www.isc.org/blogs/qname-minimization-and-privacy/">QNAME Minimization and Your Privacy</a> by the Internet Systems Consortium (ISC)</li>
|
<li><a href="https://www.isc.org/blogs/qname-minimization-and-privacy/">QNAME Minimization and Your Privacy</a> by the Internet Systems Consortium (ISC)</li>
|
||||||
<li><a href="https://www.isc.org/dnssec/">DNSSEC and BIND 9</a> by the ISC</li>
|
<li><a href="https://www.isc.org/dnssec/">DNSSEC and BIND 9</a> by the ISC</li>
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
@ -8,7 +8,7 @@
|
|||||||
<table class="table sortable-theme-bootstrap" data-sortable>
|
<table class="table sortable-theme-bootstrap" data-sortable>
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th data-sorted="true" data-sorted-direction="ascending">Email Provider</th>
|
<th data-sorted="true" data-sorted-direction="descending">Email Provider</th>
|
||||||
<th data-sortable="false">Website</th>
|
<th data-sortable="false">Website</th>
|
||||||
<th data-sortable="true">Since</th>
|
<th data-sortable="true">Since</th>
|
||||||
<th data-sortable="true">Jurisdiction</th>
|
<th data-sortable="true">Jurisdiction</th>
|
||||||
@ -23,104 +23,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td data-value="disroot">
|
<td data-value="ProtonMail">
|
||||||
<img alt="Disroot" src="/assets/img/provider/disroot.org.png" width="200" height="70">
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://disroot.org" href="https://disroot.org"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
|
||||||
</td>
|
|
||||||
<td data-value="2015">2015</td>
|
|
||||||
<td><span class="flag-icon flag-icon-nl"></span> Netherlands</td>
|
|
||||||
<td data-value="1000">1 GB</td>
|
|
||||||
<td data-value="0"><span class="label label-warning">Free</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td data-value="kolabnow">
|
|
||||||
<img alt="Kolab Now" src="/assets/img/provider/Kolab-Now.png" width="200" height="70">
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://kolabnow.com" href="https://kolabnow.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
|
||||||
</td>
|
|
||||||
<td data-value="2010">2010</td>
|
|
||||||
<td><span class="flag-icon flag-icon-ch"></span> Switzerland</td>
|
|
||||||
<td data-value="2048">2 GB</td>
|
|
||||||
<td data-value="6000">$ 60</td>
|
|
||||||
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
|
||||||
<td data-value="0"><span class="label label-primary">No</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td data-value="mailbox">
|
|
||||||
<img alt="mailbox.org" src="/assets/img/provider/mailbox.org.png" width="200" height="70">
|
|
||||||
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://mailbox.org" href="https://mailbox.org"><img alt="WWW" src="/assets/img/layout/www.png" width="35 "height="35"></a>
|
|
||||||
</td>
|
|
||||||
<td data-value="2014">2014</td>
|
|
||||||
<td><span class="flag-icon flag-icon-de"></span> Germany</td>
|
|
||||||
<td data-value="2000">2 GB</td>
|
|
||||||
<td data-value="1444">12 €</td>
|
|
||||||
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td data-value="mailfence">
|
|
||||||
<img alt="Mailfence" src="/assets/img/provider/Mailfence.png" width="200" height="70">
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://mailfence.com" href="https://mailfence.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
|
||||||
</td>
|
|
||||||
<td data-value="2013">2013</td>
|
|
||||||
<td><span class="flag-icon flag-icon-be"></span> Belgium</td>
|
|
||||||
<td data-value="500">500 MB</td>
|
|
||||||
<td data-value="0"><span class="label label-warning">Free</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td data-value="neomailbox">
|
|
||||||
<img alt="Neomailbox" src="/assets/img/provider/Neomailbox.png" width="200" height="70">
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.neomailbox.com" href="https://www.neomailbox.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
|
||||||
</td>
|
|
||||||
<td data-value="2003">2003</td>
|
|
||||||
<td><span class="flag-icon flag-icon-ch"></span> Switzerland</td>
|
|
||||||
<td data-value="1000">1 GB</td>
|
|
||||||
<td data-value="4995">$ 49.95</td>
|
|
||||||
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td data-value="posteo">
|
|
||||||
<img alt="Posteo" src="/assets/img/provider/Posteo.png" width="200" height="70">
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://posteo.de" href="https://posteo.de"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
|
||||||
</td>
|
|
||||||
<td data-value="2009">2009</td>
|
|
||||||
<td><span class="flag-icon flag-icon-de"></span> Germany</td>
|
|
||||||
<td data-value="2000">2 GB</td>
|
|
||||||
<td data-value="1444">12 €</td>
|
|
||||||
<td data-value="0"><span class="label label-primary">No</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
|
||||||
<td data-value="0"><span class="label label-primary">No</span></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td data-value="protonmail">
|
|
||||||
<img alt="Protonmail" src="/assets/img/provider/ProtonMail.ch.png" width="200" height="70">
|
<img alt="Protonmail" src="/assets/img/provider/ProtonMail.ch.png" width="200" height="70">
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@ -137,56 +40,23 @@
|
|||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td data-value="runbox">
|
<td data-value="disroot.org">
|
||||||
<img alt="Runbox" src="/assets/img/provider/runbox.png" width="200" height="70">
|
<img alt="Disroot" src="/assets/img/provider/disroot.org.png" width="200" height="70">
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://runbox.com" href="https://runbox.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://disroot.org" href="https://disroot.org"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
</td>
|
|
||||||
<td data-value="1999">1999</td>
|
|
||||||
<td><span class="flag-icon flag-icon-no"></span> Norway</td>
|
|
||||||
<td data-value="1000">1 GB</td>
|
|
||||||
<td data-value="1995">$ 19.95</td>
|
|
||||||
<td data-value="1"><span class="label label-primary">Accepted</span></td>
|
|
||||||
<td data-value="0"><span class="label label-primary">No</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td data-value="soverin">
|
|
||||||
<img alt="Soverin" src="/assets/img/provider/Soverin.png" width="200" height="70">
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://soverin.net/" href="https://soverin.net/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
|
||||||
</td>
|
</td>
|
||||||
<td data-value="2015">2015</td>
|
<td data-value="2015">2015</td>
|
||||||
<td><span class="flag-icon flag-icon-nl"></span> Netherlands</td>
|
<td><span class="flag-icon flag-icon-nl"></span> Netherlands</td>
|
||||||
<td data-value="25000">25 GB</td>
|
<td data-value="2000">2 GB</td>
|
||||||
<td data-value="3489">29 €</td>
|
<td data-value="1"><span class="label label-warning">Free</span></td>
|
||||||
<td data-value="0"><span class="label label-success">No</span></td>
|
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
||||||
<td data-value="0"><span class="label label-success">No</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
|
||||||
</tr>
|
|
||||||
|
|
||||||
<tr>
|
|
||||||
<td data-value="startmail">
|
|
||||||
<img alt="StartMail" src="/assets/img/provider/StartMail.png" width="200" height="70">
|
|
||||||
</td>
|
|
||||||
<td>
|
|
||||||
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.startmail.com" href="https://www.startmail.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
|
||||||
</td>
|
|
||||||
<td data-value="2014">2014</td>
|
|
||||||
<td><span class="flag-icon flag-icon-nl"></span> Netherlands</td>
|
|
||||||
<td data-value="10000">10 GB</td>
|
|
||||||
<td data-value="5995">$ 59.95</td>
|
|
||||||
<td data-value="0"><span class="label label-success">Accepted</span></td>
|
|
||||||
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
<tr>
|
<tr>
|
||||||
<td data-value="tutanota">
|
<td data-value="Tutanota">
|
||||||
<img alt="Tutanota" src="/assets/img/provider/Tutanota.png" width="200" height="70">
|
<img alt="Tutanota" src="/assets/img/provider/Tutanota.png" width="200" height="70">
|
||||||
</td>
|
</td>
|
||||||
<td>
|
<td>
|
||||||
@ -201,6 +71,136 @@
|
|||||||
<td data-value="1"><span class="label label-success">Yes</span></td>
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Mailfence">
|
||||||
|
<img alt="Mailfence" src="/assets/img/provider/Mailfence.png" width="200" height="70">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://mailfence.com" href="https://mailfence.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2013">2013</td>
|
||||||
|
<td><span class="flag-icon flag-icon-be"></span> Belgium</td>
|
||||||
|
<td data-value="500">500 MB</td>
|
||||||
|
<td data-value="0"><span class="label label-warning">Free</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="mailbox.org">
|
||||||
|
<img alt="mailbox.org" src="/assets/img/provider/mailbox.org.png" width="200" height="70">
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://mailbox.org" href="https://mailbox.org"><img alt="WWW" src="/assets/img/layout/www.png" width="35 "height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2014">2014</td>
|
||||||
|
<td><span class="flag-icon flag-icon-de"></span> Germany</td>
|
||||||
|
<td data-value="2000">2 GB</td>
|
||||||
|
<td data-value="13">12 €</td>
|
||||||
|
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Posteo">
|
||||||
|
<img alt="Posteo" src="/assets/img/provider/Posteo.png" width="200" height="70">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://posteo.de" href="https://posteo.de"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2009">2009</td>
|
||||||
|
<td><span class="flag-icon flag-icon-de"></span> Germany</td>
|
||||||
|
<td data-value="2000">2 GB</td>
|
||||||
|
<td data-value="13">12 €</td>
|
||||||
|
<td data-value="0"><span class="label label-primary">No</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
||||||
|
<td data-value="0"><span class="label label-primary">No</span></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Runbox">
|
||||||
|
<img alt="Runbox" src="/assets/img/provider/runbox.png" width="200" height="70">
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://runbox.com" href="https://runbox.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="1999">1999</td>
|
||||||
|
<td><span class="flag-icon flag-icon-no"></span> Norway</td>
|
||||||
|
<td data-value="1000">1 GB</td>
|
||||||
|
<td data-value="20">$ 19.95</td>
|
||||||
|
<td data-value="1"><span class="label label-primary">Accepted</span></td>
|
||||||
|
<td data-value="0"><span class="label label-primary">No</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Neomailbox">
|
||||||
|
<img alt="Neomailbox" src="/assets/img/provider/Neomailbox.png" width="200" height="70">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.neomailbox.com" href="https://www.neomailbox.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2003">2003</td>
|
||||||
|
<td><span class="flag-icon flag-icon-ch"></span> Switzerland</td>
|
||||||
|
<td data-value="1000">1 GB</td>
|
||||||
|
<td data-value="50">$ 49.95</td>
|
||||||
|
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Soverin">
|
||||||
|
<img alt="Soverin" src="/assets/img/provider/Soverin.png" width="200" height="70">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://soverin.net/" href="https://soverin.net/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2015">2015</td>
|
||||||
|
<td><span class="flag-icon flag-icon-nl"></span> Netherlands</td>
|
||||||
|
<td data-value="25000">25 GB</td>
|
||||||
|
<td data-value="35">29 €</td>
|
||||||
|
<td data-value="0"><span class="label label-success">No</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">No</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="StartMail">
|
||||||
|
<img alt="StartMail" src="/assets/img/provider/StartMail.png" width="200" height="70">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.startmail.com" href="https://www.startmail.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2014">2014</td>
|
||||||
|
<td><span class="flag-icon flag-icon-nl"></span> Netherlands</td>
|
||||||
|
<td data-value="10000">10 GB</td>
|
||||||
|
<td data-value="60">$ 59.95</td>
|
||||||
|
<td data-value="0"><span class="label label-success">Accepted</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Built-in</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Kolab Now">
|
||||||
|
<img alt="Kolab Now" src="/assets/img/provider/Kolab-Now.png" width="200" height="70">
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://kolabnow.com" href="https://kolabnow.com"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2010">2010</td>
|
||||||
|
<td><span class="flag-icon flag-icon-ch"></span> Switzerland</td>
|
||||||
|
<td data-value="2048">2 GB</td>
|
||||||
|
<td data-value="60">$ 60</td>
|
||||||
|
<td data-value="1"><span class="label label-success">Accepted</span></td>
|
||||||
|
<td data-value="0"><span class="label label-primary">No</span></td>
|
||||||
|
<td data-value="1"><span class="label label-success">Yes</span></td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
@ -43,6 +43,5 @@
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://cryptomator.org/">Cryptomator</a> - Free client-side AES encryption for your cloud files. Open source software: No backdoors, no registration.</li>
|
<li><a href="https://cryptomator.org/">Cryptomator</a> - Free client-side AES encryption for your cloud files. Open source software: No backdoors, no registration.</li>
|
||||||
<li><a href="https://diskcryptor.net/">DiskCryptor</a> - A full disk and partition encryption system for Windows including the ability to encrypt the partition and disk on which the OS is installed.</li>
|
<li><a href="https://diskcryptor.net/">DiskCryptor</a> - A full disk and partition encryption system for Windows including the ability to encrypt the partition and disk on which the OS is installed.</li>
|
||||||
<li><a href="https://gitlab.com/cryptsetup/cryptsetup/">Linux Unified Key Setup (LUKS)</a> - A full disk encryption system for Linux using dm-crypt as the disk encryption backend. Included by default in Ubuntu. Available for Windows and Linux.</li>
|
<li><a href="https://gitlab.com/cryptsetup/cryptsetup/">Linux Unified Key Setup (LUKS)</a> - A full disk encryption system for Linux using dm-crypt as the disk encryption backend. Included by default in Ubuntu. Available for Windows and Linux.
|
||||||
<li><a href="https://hat.sh/">Hat.sh</a> - A cross-platform, serverless JavaScript web application that provides secure file encryption using the AES-256-GCM algorithm in your browser. It can also be downloaded and run offline.</a></li>
|
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -23,7 +23,7 @@ ios=""
|
|||||||
title="Wire"
|
title="Wire"
|
||||||
image="/assets/img/tools/wire.png"
|
image="/assets/img/tools/wire.png"
|
||||||
description="A free software End-to-End Encrypted chatting application that supports instant messaging, voice, and video calls. Full source code is available."
|
description="A free software End-to-End Encrypted chatting application that supports instant messaging, voice, and video calls. Full source code is available."
|
||||||
labels="warning:<a href=//www.vice.com/en_us/article/gvzw5x/secure-messaging-app-wire-stores-everyone-youve-ever-contacted-in-plain-text>Warning</a>:Wire stores some plaintext metadata about its users on their servers. This data includes profile names, profile pictures, usernames, and users' lists of connections and conversations.|success:VoIP"
|
labels="warning:<a href=//www.vice.com/en_us/article/gvzw5x/secure-messaging-app-wire-stores-everyone-youve-ever-contacted-in-plain-text>Warning</a>:Wire stores metadata such as list of your connections/conversations in plaintext (= not encrypted).,success:VoIP"
|
||||||
website="https://wire.com/"
|
website="https://wire.com/"
|
||||||
forum="https://forum.privacytools.io/t/discussion-wire/750"
|
forum="https://forum.privacytools.io/t/discussion-wire/750"
|
||||||
github="https://github.com/wireapp/"
|
github="https://github.com/wireapp/"
|
||||||
@ -58,6 +58,7 @@ web=""
|
|||||||
<li><a href="https://www.kontalk.org/">Kontalk</a> - A community-driven instant messaging network. Supports end-to-end encryption. Both client-to-server and server-to-server channels are fully encrypted.</li>
|
<li><a href="https://www.kontalk.org/">Kontalk</a> - A community-driven instant messaging network. Supports end-to-end encryption. Both client-to-server and server-to-server channels are fully encrypted.</li>
|
||||||
<li><a href="https://keybase.io/">Keybase</a> - <span class="badge badge-warning" data-toggle="tooltip" title="This software relies on a closed-source central server.">Warning</span> End-to-end encrypted messaging with social verification.</li>
|
<li><a href="https://keybase.io/">Keybase</a> - <span class="badge badge-warning" data-toggle="tooltip" title="This software relies on a closed-source central server.">Warning</span> End-to-end encrypted messaging with social verification.</li>
|
||||||
<li><a href="https://status.im/">Status</a> - <span class="badge badge-warning">Experimental</span> A free and open-source, peer-to-peer, encrypted instant messanger with support for DAPPs.</li>
|
<li><a href="https://status.im/">Status</a> - <span class="badge badge-warning">Experimental</span> A free and open-source, peer-to-peer, encrypted instant messanger with support for DAPPs.</li>
|
||||||
|
<li><a href="https://ricochet.im/">Ricochet</a> - <span class="badge badge-danger" data-toggle="tooltip" title="This software is safe if you manually keep Tor up to date."><a href="#ricochetTor" class="text-white">Danger</a></span> <span class="badge badge-warning" data-toggle="tooltip" title="This software is considered safe but experimental and the client has not been updated since 2016."><a href="https://github.com/ricochet-im/ricochet#experimental">Experimental</a></span> Ricochet uses the <a href="/browsers/#browser"><i class="fas fa-link"></i> Tor network</a> to reach your contacts without relying on messaging servers. It creates a hidden service, which is used to rendezvous with your contacts without revealing your location or IP address.</li>
|
||||||
<li> <a href="https://tox.chat/">Tox</a> - <span class="badge badge-warning">Experimental</span> A free and open-source, peer-to-peer, encrypted instant messaging and video calling software. <span class="badge badge-success">VoIP</span></li>
|
<li> <a href="https://tox.chat/">Tox</a> - <span class="badge badge-warning">Experimental</span> A free and open-source, peer-to-peer, encrypted instant messaging and video calling software. <span class="badge badge-success">VoIP</span></li>
|
||||||
<li><a href="https://jami.net/">Jami (formerly Ring/SFLphone)</a> - Gives you full control over your communications and an unmatched level of privacy. Jami has <em>text messaging, video and audio calls, file transfer, video conferencing</em>. <span class="badge badge-success">VoIP</span></li>
|
<li><a href="https://jami.net/">Jami (formerly Ring/SFLphone)</a> - Gives you full control over your communications and an unmatched level of privacy. Jami has <em>text messaging, video and audio calls, file transfer, video conferencing</em>. <span class="badge badge-success">VoIP</span></li>
|
||||||
</ul>
|
</ul>
|
||||||
@ -66,6 +67,7 @@ web=""
|
|||||||
<h3>Related Information</h3>
|
<h3>Related Information</h3>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
|
<li><a href="https://www.vice.com/en_us/article/mg7v3a/ricochet-encrypted-messenger-tackles-metadata-problem-head-on">Ricochet, the Messenger That Beats Metadata, Passes Security Audit | Motherboard</a></li>
|
||||||
<li><a href="https://firstlook.org/theintercept/2015/07/14/communicating-secret-watched/">Chatting in Secret While We're All Being Watched - firstlook.org</a></li>
|
<li><a href="https://firstlook.org/theintercept/2015/07/14/communicating-secret-watched/">Chatting in Secret While We're All Being Watched - firstlook.org</a></li>
|
||||||
<li><a href="https://signal.org/android/apk/">Advanced users with special needs can download the Signal APK directly. Most users should not do this under normal circumstances.</a></li>
|
<li><a href="https://signal.org/android/apk/">Advanced users with special needs can download the Signal APK directly. Most users should not do this under normal circumstances.</a></li>
|
||||||
<li>Independent security audits</li>
|
<li>Independent security audits</li>
|
||||||
@ -76,3 +78,37 @@ web=""
|
|||||||
</ul>
|
</ul>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
<!-- Updating the Tor binary included with Ricochet -->
|
||||||
|
<h3 id="ricochetTor" class="anchor"><a href="#ricochetTor"><i class="fas fa-link anchor-icon"></i></a> Updating the Tor binary included with Ricochet</h3>
|
||||||
|
|
||||||
|
Currently there are no known vulnerabilities with Ricochet. The software is safe to use as long as you update the included Tor binary to the latest version.
|
||||||
|
|
||||||
|
<ol class="long-string-list">
|
||||||
|
<li>Download the <a href="/browsers/#browser"><i class="fas fa-link"></i> Tor Browser</a>.</li>
|
||||||
|
<li>Run the Tor Browser installer or extract package for your platform. Windows (.exe), MacOSX (.dmg) and Linux (.tar.bz2).</li>
|
||||||
|
<li>Copy the Tor binary or create a symbolic link to it: </li>
|
||||||
|
<br>
|
||||||
|
<ul>
|
||||||
|
<li><strong>Windows: </strong>Copy the Tor binary included with the Tor Browser and overwrite the old one included with Ricochet.</li>
|
||||||
|
<ul>
|
||||||
|
<li>Tor Browser binary: <code>%HOMEPATH%\Desktop\Tor Browser\Browser\TorBrowser\Tor\tor.exe</code></li>
|
||||||
|
<li>Ricochet's included binary: <code>%HOMEPATH%\Desktop\Ricochet\tor.exe</code></li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<li><strong>MacOSX: </strong>Assuming you copied the <code>Tor Browser.app</code> and <code>Ricochet.app</code> from their respective .dmg install media to <code>/Applications</code>: <br>
|
||||||
|
Create a symbolic link to the Tor binary in Terminal. Ricochet will continue to use the up to date version of the Tor binary when you update the Tor Browser Bundle.</li>
|
||||||
|
<ul>
|
||||||
|
<li><code>rm ~/Applications/Ricochet.app/Contents/MacOS/tor <br>
|
||||||
|
ln -s ~/Applications/Tor\ Browser.app/Contents/Resources/TorBrowser/Tor/tor \ <br>
|
||||||
|
~/Applications/Ricochet.app/Contents/MacOS/tor</code>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<br>
|
||||||
|
<li><strong>Linux: </strong>Assuming you extracted the Tor Browser Bundle and Ricochet tarball to your home directory:</li>
|
||||||
|
<ul>
|
||||||
|
<li><code>rm ~/ricochet/tor <br>
|
||||||
|
ln -s ~/tor-browser_en-US/Browser/TorBrowser/Tor/tor ~/ricochet/tor</code>
|
||||||
|
</li>
|
||||||
|
</ul>
|
||||||
|
<ul>
|
||||||
|
</ol>
|
||||||
|
@ -39,5 +39,5 @@ github="https://github.com/ubports"
|
|||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://www.replicant.us/">Replicant</a> <span class="badge badge-info">AOSP</span> - An open-source operating system based on Android, aiming to replace all proprietary components with free software.</li>
|
<li><a href="https://www.replicant.us/">Replicant</a> <span class="badge badge-info">AOSP</span> - An open-source operating system based on Android, aiming to replace all proprietary components with free software.</li>
|
||||||
<li><a href="https://www.omnirom.org/">OmniROM</a> <span class="badge badge-info">AOSP</span> <span class="badge badge-warning" data-toggle="tooltip" title="This software may depend on or recommend non-free software.">contrib <i class="far fa-question-circle"></i></span> - A free software operating system for smartphones and tablet computers, based on the Android mobile platform.</li>
|
<li><a href="https://www.omnirom.org/">OmniROM</a> <span class="badge badge-info">AOSP</span> <span class="badge badge-warning" data-toggle="tooltip" title="This software may depend on or recommend non-free software.">contrib <i class="far fa-question-circle"></i></span> - A free software operating system for smartphones and tablet computers, based on the Android mobile platform.</li>
|
||||||
<li><a href="https://microg.org/">MicroG</a> <span class="badge badge-info">Add-on Package</span> <span class="badge badge-warning" data-toggle="tooltip" title="This software may depend on or recommend non-free software.">contrib <i class="far fa-question-circle"></i></span> - A project that aims to reimplement the proprietary Google Play Services in the Android operating system with a FLOSS replacement. The microG project also maintains a fork of LineageOS with microG and F-Droid preinstalled at <a href="https://lineage.microg.org/">Lineage for microG</a>.</li>
|
<li><a href="https://microg.org/">MicroG</a> <span class="badge badge-info">Add-on Package</span> <span class="badge badge-warning" data-toggle="tooltip" title="This software may depend on or recommend non-free software.">contrib <i class="far fa-question-circle"></i></span> - A project that aims to reimplement the proprietary Google Play Services in the Android operating system with a FLOSS replacement.
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -15,16 +15,6 @@ github="https://github.com/QubesOS"
|
|||||||
tor="http://qubesosfasa4zl44o4tws22di6kepyzfeqv3tg4e3ztknltfxqrymdad.onion/"
|
tor="http://qubesosfasa4zl44o4tws22di6kepyzfeqv3tg4e3ztknltfxqrymdad.onion/"
|
||||||
%}
|
%}
|
||||||
|
|
||||||
{% include cardv2.html
|
|
||||||
title="Fedora Workstation"
|
|
||||||
image="/assets/img/tools/Fedora.png"
|
|
||||||
description='Fedora is a Linux distribution developed by the Fedora Project and sponsored by Red Hat. Fedora Workstation is a secure, reliable, and user-friendly edition developed for desktops and laptops, using GNOME as the default desktop environment.'
|
|
||||||
badges="info:GNU/Linux"
|
|
||||||
labels="warning:contrib:This software may depend on or recommend non-free software."
|
|
||||||
website="https://getfedora.org/"
|
|
||||||
git="https://src.fedoraproject.org/"
|
|
||||||
%}
|
|
||||||
|
|
||||||
{% include cardv2.html
|
{% include cardv2.html
|
||||||
title="Debian"
|
title="Debian"
|
||||||
image="/assets/img/tools/Debian.png"
|
image="/assets/img/tools/Debian.png"
|
||||||
@ -35,6 +25,15 @@ git="https://salsa.debian.org/qa/debsources"
|
|||||||
tor="http://sejnfjrq6szgca7v.onion"
|
tor="http://sejnfjrq6szgca7v.onion"
|
||||||
%}
|
%}
|
||||||
|
|
||||||
|
{% include cardv2.html
|
||||||
|
title="Trisquel"
|
||||||
|
image="/assets/img/tools/Trisquel.png"
|
||||||
|
description='Trisquel is a Linux-based operating system derived from Ubuntu. The project aims for a fully free software system without proprietary software or firmware and uses Linux-libre, a version of the Linux kernel with the non-free code (binary blobs) removed.'
|
||||||
|
badges="info:GNU/Linux"
|
||||||
|
website="https://trisquel.info/"
|
||||||
|
git="https://devel.trisquel.info/groups/trisquel"
|
||||||
|
%}
|
||||||
|
|
||||||
<h3>Warning</h3>
|
<h3>Warning</h3>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
@ -45,9 +44,8 @@ tor="http://sejnfjrq6szgca7v.onion"
|
|||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://www.openbsd.org/">OpenBSD</a> <span class="badge badge-info">BSD</span> - A project that produces a free, multi-platform 4.4BSD-based UNIX-like operating system. Emphasizes portability, standardization, correctness, proactive security and integrated cryptography.</li>
|
<li><a href="https://www.openbsd.org/">OpenBSD</a> <span class="badge badge-info">BSD</span> - A project that produces a free, multi-platform 4.4BSD-based UNIX-like operating system. Emphasizes portability, standardization, correctness, proactive security and integrated cryptography.</li>
|
||||||
<li><a href="https://www.archlinux.org/">Arch Linux</a> <span class="badge badge-info">GNU/Linux</span> <span class="badge badge-warning" data-toggle="tooltip" title="This software may depend on or recommend non-free software.">contrib <i class="far fa-question-circle"></i></span> - A simple, lightweight Linux distribution. It is composed predominantly of free and open-source software, and supports community involvement. <a href="https://www.parabola.nu/">Parabola</a> is a
|
<li><a href="https://www.archlinux.org/">Arch Linux</a> <span class="badge badge-info">GNU/Linux</span> - A simple, lightweight Linux distribution. It is composed predominantly of free and open-source software, and supports community involvement. <a href="https://www.parabola.nu/">Parabola</a> is a
|
||||||
completely open source version of Arch Linux.</li>
|
completely open source version of Arch Linux.</li>
|
||||||
<li><a href="https://trisquel.info/">Trisquel</a> <span class="badge badge-info">GNU/Linux</span> - Derived from Ubuntu, this project aims for a fully free software system without proprietary software or firmware and uses Linux-libre, a version of the Linux kernel with the non-free code (binary blobs) removed.</li>
|
|
||||||
<li><a href="https://www.whonix.org/">Whonix</a> <span class="badge badge-info">GNU/Linux</span> - A Debian-based security-focused Linux distribution. It aims to provide privacy, security and anonymity on the internet. The operating system consists of two virtual machines, a "Workstation"
|
<li><a href="https://www.whonix.org/">Whonix</a> <span class="badge badge-info">GNU/Linux</span> - A Debian-based security-focused Linux distribution. It aims to provide privacy, security and anonymity on the internet. The operating system consists of two virtual machines, a "Workstation"
|
||||||
and a Tor "Gateway". All communication are forced through the Tor network to accomplish this.</li>
|
and a Tor "Gateway". All communication are forced through the Tor network to accomplish this.</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
@ -1,68 +1,52 @@
|
|||||||
<h1 id="pw" class="anchor"><a href="#pw"><i class="fas fa-link anchor-icon"></i></a> Password Manager Software</h1>
|
<h1 id="pw" class="anchor"><a href="#pw"><i class="fas fa-link anchor-icon"></i></a> Password Manager Software</h1>
|
||||||
|
|
||||||
<div class="alert alert-warning" role="alert">
|
<div class="alert alert-warning" role="alert">
|
||||||
<strong>If you are currently using a password manager software like 1Password, LastPass, Roboform, or iCloud Keychain, you should pick an alternative here.</strong>
|
<strong>If you are currently using a password manager software like 1Password, LastPass, Roboform or iCloud Keychain, you should pick an alternative here.</strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{%
|
<div class="row mb-2">
|
||||||
include cardv2.html
|
|
||||||
|
{% include card.html color="success"
|
||||||
title="Bitwarden - Cloud/Self-host"
|
title="Bitwarden - Cloud/Self-host"
|
||||||
image="/assets/img/tools/bitwarden.png"
|
image="/assets/img/tools/bitwarden.png"
|
||||||
description="<strong>Bitwarden</strong> is a free and open source password manager. It aims to solve password management problems for individuals, teams, and business organizations. Bitwarden is among the easiest and safest solutions to store all of your logins and passwords while conveniently keeping them synced between all of your devices. If you don't want to use the Bitwarden cloud, you can easily host your own Bitwarden server."
|
url="https://bitwarden.com/"
|
||||||
website="https://bitwarden.com/"
|
footer="OS: Windows, macOS, Linux, iOS, Android, Web."
|
||||||
forum="https://forum.privacytools.io/t/discussion-bitwarden/1343"
|
description="Bitwarden is a free and open source password manager. It aims to solve password management problems for individuals, teams, and business organizations. Bitwarden is among the easiest and safest solutions to store all of your logins and passwords while conveniently keeping them synced between all of your devices. If you don't want to use the Bitwarden cloud, you can easily host your own Bitwarden server."
|
||||||
github="https://github.com/bitwarden"
|
%}
|
||||||
web="https://vault.bitwarden.com/#/"
|
|
||||||
linux="https://vault.bitwarden.com/download/?app=desktop&platform=linux"
|
|
||||||
mac="https://vault.bitwarden.com/download/?app=desktop&platform=macos"
|
|
||||||
firefox="https://addons.mozilla.org/firefox/addon/bitwarden-password-manager/"
|
|
||||||
chrome="https://chrome.google.com/webstore/detail/bitwarden-free-password-m/nngceckbapebfimnlniiiahkandclblb"
|
|
||||||
safari="https://safari-extensions.apple.com/details/?id=com.bitwarden.safari-LTZ2PFU5D6"
|
|
||||||
opera="https://addons.opera.com/extensions/details/bitwarden-free-password-manager/"
|
|
||||||
edge="https://www.microsoft.com/store/apps/9P6KXL0SVNNL"
|
|
||||||
android="https://play.google.com/store/apps/details?id=com.x8bit.bitwarden"
|
|
||||||
ios="https://itunes.apple.com/app/bitwarden-free-password-manager/id1137397744?mt=8"
|
|
||||||
%}
|
|
||||||
|
|
||||||
{%
|
{% include card.html color="primary"
|
||||||
include cardv2.html
|
title="KeePass / KeePassXC - Local"
|
||||||
title="KeePassXC - Local"
|
image="/assets/img/tools/KeePass.png"
|
||||||
image="/assets/img/tools/keepassxc.png"
|
url="https://keepass.info/download.html"
|
||||||
description="<strong>KeePassXC</strong> is a community fork of KeePassX, a native cross-platform port of KeePass Password Safe, with the goal to extend and improve it with new features and bugfixes to provide a feature-rich, fully cross-platform and modern open-source password manager."
|
website="keepass.info"
|
||||||
website="https://keepassxc.org/"
|
footer="OS: Windows, macOS, Linux, iOS, Android, BSD."
|
||||||
forum="https://forum.privacytools.io/t/discussion-keepassxc/1344/2"
|
description='KeePass is a free open source password manager, which helps you to manage your passwords in a secure way. All passwords in one database, which is locked with one
|
||||||
github="https://github.com/keepassxreboot/keepassxc"
|
master key or a key file. The databases are encrypted using the best and most secure encryption algorithms currently known: AES and Twofish. See also: <a href="https://keepassxc.org/">KeePassXC</a> with official native cross-platform support for Windows/macOS/Linux.'
|
||||||
web="https://keepassxc.org/"
|
%}
|
||||||
linux="https://keepassxc.org/download/#linux"
|
{% include card.html color="warning"
|
||||||
mac="https://keepassxc.org/download/#mac"
|
|
||||||
%}
|
|
||||||
|
|
||||||
{%
|
|
||||||
include cardv2.html
|
|
||||||
title="LessPass - Browser"
|
title="LessPass - Browser"
|
||||||
image="/assets/img/tools/LessPass.png"
|
image="/assets/img/tools/LessPass.png"
|
||||||
description="<strong>LessPass</strong> is a free and open source password manager that generates unique passwords for websites, email accounts, or anything else based on a master password and information you know. No sync needed. Uses PBKDF2 and SHA-256. It's advised to use the browser addons for more security."
|
url="https://lesspass.com/"
|
||||||
website="https://lesspass.com/"
|
footer="OS: Windows, macOS, Linux, Android."
|
||||||
forum="https://forum.privacytools.io/t/discussion-keepassxc/1344/2"
|
description="LessPass is a free and open source password manager that generates unique passwords for websites, email accounts, or anything else based on a master password and information you know. No sync needed. Uses PBKDF2 and SHA-256. It's advised to use the browser addons for more security."
|
||||||
github="https://github.com/keepassxreboot/keepassxc"
|
%}
|
||||||
firefox="https://addons.mozilla.org/en-US/firefox/addon/lesspass/"
|
|
||||||
chrome="https://chrome.google.com/webstore/detail/lesspass/lcmbpoclaodbgkbjafnkbbinogcbnjih"
|
</div>
|
||||||
android="https://play.google.com/store/apps/details?id=com.lesspass.android&hl=en"
|
|
||||||
%}
|
|
||||||
|
|
||||||
<h3>Worth Mentioning</h3>
|
<h3>Worth Mentioning</h3>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li>
|
<li>
|
||||||
<a href="https://masterpassword.app">Master Password</a> - Master Password is based on an ingenious password generation algorithm that guarantees your passwords can never be lost. Its passwords aren't stored: they are generated on-demand from your name, the site, and your master password. No syncing, backups, or internet access needed.
|
<a href="https://masterpassword.app">Master Password</a> - Master Password is based on an ingenious password generation algorithm that guarantees your passwords can never be lost. Its passwords aren't stored: they are generated on-demand from your name, the site and your master password. No syncing, backups or internet access needed.
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://psono.com/">Psono</a> - Free and open source password manager for teams with client side encryption and secure sharing of passwords, files, bookmarks, emails. All secrets are protected by a master password. Uses <a href="https://nacl.cr.yp.to/">NACL Crypto</a>, a combination of Curve25519, Salsa20 and Poly1305.
|
<a href="https://psono.com/">Psono</a> - Free and open source password manager for teams with client side encryption and secure sharing of passwords, files, bookmarks, emails... All secrets are protected by a master password. Uses <a href="https://nacl.cr.yp.to/">NACL Crypto</a>, a combination of Curve25519, Salsa20 and Poly1305.
|
||||||
</li>
|
</li>
|
||||||
|
|
||||||
<li>
|
<li>
|
||||||
<a href="https://pwsafe.org/">Password Safe</a> - Whether the answer is one or hundreds, Password Safe allows you to safely and easily create a secured and encrypted username/password list. With Password Safe all you have to do is create and remember a single "Master Password" of your choice in order to unlock and access your entire username/password list.
|
<a href="https://pwsafe.org/">Password Safe</a> - Whether the answer is one or hundreds, Password Safe allows you to safely and easily create a secured and encrypted username/password list. With Password Safe all you have to do is create and remember
|
||||||
|
a single "Master Password" of your choice in order to unlock and access your entire username/password list.
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@ linux=""
|
|||||||
title="Keybase"
|
title="Keybase"
|
||||||
image="/assets/img/tools/keybase.png"
|
image="/assets/img/tools/keybase.png"
|
||||||
description='Keybase provides a hosted team chat with end-to-end encryption. It has also been <a href="https://keybase.io/docs-assets/blog/NCC_Group_Keybase_KB2018_Public_Report_2019-02-27_v1.3.pdf">indepedently audited (PDF)</a>.'
|
description='Keybase provides a hosted team chat with end-to-end encryption. It has also been <a href="https://keybase.io/docs-assets/blog/NCC_Group_Keybase_KB2018_Public_Report_2019-02-27_v1.3.pdf">indepedently audited (PDF)</a>.'
|
||||||
labels="warning:<a href=//github.com/keybase/client/issues/6374>Warning</a>:The server side of Keybase runs on proprietary code and is centralized."
|
labels="warning:<a href=//github.com/keybase/client/issues/6374>Experimental</a>:The server side of Keybase runs on proprietary code and is centralized."
|
||||||
website="https://keybase.io/"
|
website="https://keybase.io/"
|
||||||
forum="https://forum.privacytools.io/t/discussion-keybase/1224"
|
forum="https://forum.privacytools.io/t/discussion-keybase/1224"
|
||||||
github="https://github.com/Keybase"
|
github="https://github.com/Keybase"
|
||||||
|
@ -34,7 +34,7 @@ mac=""
|
|||||||
<h3>Worth Mentioning</h3>
|
<h3>Worth Mentioning</h3>
|
||||||
|
|
||||||
<ul>
|
<ul>
|
||||||
<li><a href="https://jitsi.org/">Jitsi Meet</a> - Jitsi Meet is a free and open source multiplatform voice (VoIP), videoconferencing and instant messaging application. <span class="badge badge-warning" data-toggle="tooltip" title="Our Firefox tweaks recommend disabling WebRTC as it can be used to leak your IP address even behind a VPN, which is why Tor Browser disables it.">Requires WebRTC</span></li>
|
<li><a href="https://jitsi.org/">Jitsi Meet</a> - Jitsi Meet is a free and open source multiplatform voice (VoIP), videoconferencing and instant messaging application.<span class=\"badge badge-warning\" data-toggle=\"tooltip\" title=\"Our Firefox tweaks recommend disabling WebRTC as it can be used to leak your IP address even behind a VPN, which is why Tor Browser disables it.\">Requires WebRTC</span> </li>
|
||||||
</ul>
|
</ul>
|
||||||
|
|
||||||
<h3>Related Information</h3>
|
<h3>Related Information</h3>
|
||||||
|
@ -1,90 +1,307 @@
|
|||||||
<h1 id="vpn" class="anchor"><a href="#vpn"><i class="fas fa-link anchor-icon"></i></a> Recommended VPN Service</h1>
|
<h1 id="vpn" class="anchor"><a href="#vpn"><i class="fas fa-link anchor-icon"></i></a> Privacy VPN Services</h1>
|
||||||
|
|
||||||
<div class="alert alert-success" role="alert">
|
<div class="alert alert-success" role="alert">
|
||||||
<strong>Our recommended provider is outside the US, uses encryption, accepts Bitcoin, supports OpenVPN, and has a no logging policy. <a href="/providers/vpn/#criteria">Read our full list of criteria for more information</a>.</strong>
|
<strong>All providers listed here are outside the US, use encryption, accept Bitcoin, support OpenVPN and have a no logging policy.</strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="container-fluid">
|
{% assign eur_to_usd = 1.14 %}
|
||||||
|
<div class="table-responsive">
|
||||||
|
<table class="table sortable-theme-bootstrap" data-sortable>
|
||||||
|
<thead>
|
||||||
|
<tr>
|
||||||
|
<th data-sorted="true" data-sorted-direction="descending">VPN Provider</th>
|
||||||
|
<th data-sortable="false">Website</th>
|
||||||
|
<th data-sortable="true">Since</th>
|
||||||
|
<th data-sortable="true">Yearly Price</th>
|
||||||
|
<th data-sortable="true">Free Trial</th>
|
||||||
|
<th data-sortable="true" title="Number of Servers"># Servers</th>
|
||||||
|
<th data-sortable="true">WireGuard</th>
|
||||||
|
<th data-sortable="true">Jurisdiction</th>
|
||||||
|
</tr>
|
||||||
|
</thead>
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td data-value="AirVPN">
|
||||||
|
<a href="https://airvpn.org/"><img alt="AirVPN" src="/assets/img/provider/AirVPN.png" width="200" height="70"></a></td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://airvpn.org/" href="https://airvpn.org/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2010">2010</td>
|
||||||
|
<td data-value="{{ 54 | times: eur_to_usd }}">54 €</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>162</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-it"></span> Italy</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
<div class="row mb-2">
|
<tr>
|
||||||
<div class="col-lg-3 col-sm-12 pt-lg-5">
|
<td data-value="AzireVPN">
|
||||||
<img src="/assets/img/provider/Mullvad.png" height="70" width="200" class="img-fluid d-block mr-auto ml-auto align-middle" alt="Mullvad">
|
<a href="https://www.azirevpn.com/"><img alt="AzireVPN" src="/assets/img/provider/AzireVPN.png" width="200" height="70"></a>
|
||||||
</div>
|
</td>
|
||||||
<div class="col">
|
<td>
|
||||||
<h2>Mullvad <span class="badge badge-info">EUR €60/Year</span></h2>
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.azirevpn.com/" href="https://www.azirevpn.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
<p><strong>Mullvad</strong> is a fast and inexpensive VPN with a serious focus on transparency and security, they have been in operation since <strong>2009</strong>. It is the only VPN provider that currently meets our criteria for recommendation. Mullvad is based in <span class="flag-icon flag-icon-se"></span> Sweden and does not have a free trial. Visit <a href="https://mullvad.net/">mullvad.net</a> to create an account.</p>
|
</td>
|
||||||
<h5><span class="badge badge-success">409+ Servers</span></h5>
|
<td data-value="2012">2012</td>
|
||||||
<p>Mullvad has 409 servers in 38 countries at the time of writing this page. Typically the more servers a provider offers, the better: With hundreds of servers in operation, you are far more likely to find a fast connection and a server geographically closest to you.</p>
|
<td data-value="{{ 45 | times: eur_to_usd }}">45 €</td>
|
||||||
<h5><span class="badge badge-success">WireGuard Support</span></h5>
|
<td><span class="label label-success">Yes</span></td>
|
||||||
<p>In addition to standard OpenVPN connections, Mullvad supports Wireguard. Wireguard is an experimental protocol with theoretically better security and higher reliability, although it is not currently recommended for production use.</p>
|
<td>22</td>
|
||||||
<h5><span class="badge badge-success">Independently Audited</span></h5>
|
<td><span class="label label-success">Yes</span></td>
|
||||||
<p>Mullvad's VPN clients have been audited by Cure53 and Assured AB in a pentest report <a href="https://cure53.de/pentest-report_mullvad_v2.pdf">published at cure53.de</a>. The security researchers concluded:</p>
|
<td><span class="flag-icon flag-icon-se"></span> Sweden</td>
|
||||||
<blockquote class="blockquote">
|
</tr>
|
||||||
<p class="mb-0">...Cure53 and Assured AB are happy with the results of the audit and the software leaves an overall positive impression. With security dedication of the in-house team at the Mullvad VPN compound, the testers have no doubts about the project being on the right track from a security standpoint.</p>
|
|
||||||
</blockquote>
|
|
||||||
<h5><span class="badge badge-success">Accepts Bitcoin</span></h5>
|
|
||||||
<p>Mullvad in addition to accepting credit/debit cards and PayPal, accepts <strong>Bitcoin</strong>, <strong>Bitcoin Cash</strong>, and <strong>cash/local currency</strong> as anonymous forms of payment. They also accept Swish and bank wire transfers.</p>
|
|
||||||
<h5><span class="badge badge-warning">No Mobile Clients</span></h5>
|
|
||||||
<p>While iOS and Android clients are reportedly in the works, mobile users will need to use a traditional OpenVPN client and configuration files, which are a bit more difficult to configure.</p>
|
|
||||||
<h5><span class="badge badge-info">Extra Functionality</span></h5>
|
|
||||||
<p>The Mullvad VPN clients have a built-in killswitch to block internet connections outside of the VPN. They also are able to automatically start on boot. The Mullvad website is also accessible via Tor at <a href="http://xcln5hkbriyklr6n.onion/">xcln5hkbriyklr6n.onion</a>.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="blackVPN">
|
||||||
|
<a href="https://www.blackvpn.com/"><img alt="blackVPN" src="/assets/img/provider/blackVPN.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.blackvpn.com/" href="https://www.blackvpn.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2009">2009</td>
|
||||||
|
<td data-value="{{ 49 | times: eur_to_usd }}">49 €</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>31</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-hk"></span> Hong Kong</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="ExpressVPN">
|
||||||
|
<a href="https://www.expressvpn.com/"><img alt="ExpressVPN" src="/assets/img/provider/ExpressVPN.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.expressvpn.com/" href="https://www.expressvpn.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="http://expressobutiolem.onion. Requires specific software to access: torproject.org" href="http://expressobutiolem.onion/"><img alt="Tor" src="/assets/img/layout/tor.png" width="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2009">2009</td>
|
||||||
|
<td data-value="100">$ 99.95</td> <!-- USD on December 28, 2018 -->
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>148</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-vg"></span> British Virgin Islands</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="FrootVPN">
|
||||||
|
<a href="https://www.frootvpn.com/"><img alt="FrootVPN" src="/assets/img/provider/FrootVPN.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.frootvpn.com/" href="https://www.frootvpn.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2014">2014</td>
|
||||||
|
<td data-value="36">$ 35.88</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td>27</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-se"></span> Sweden</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="hide.me">
|
||||||
|
<a href="https://hide.me/"><img alt="hide.me" src="/assets/img/provider/hide.me.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://hide.me/" href="https://hide.me/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2012">2012</td>
|
||||||
|
<td data-value="0"><a data-toggle="tooltip" data-placement="bottom" data-original-title="2 GB data transfer, 1 simultaneous connection" href="https://hide.me/pricing">Free</a></td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>160+</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-my"></span> Malaysia</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="IVPN">
|
||||||
|
<a href="https://www.ivpn.net/"><img alt="IVPN" src="/assets/img/provider/IVPN.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.ivpn.net/" href="https://www.ivpn.net/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2009">2009</td>
|
||||||
|
<td data-value="100">$ 100</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>38</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-gi"></span> Gibraltar</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Mullvad">
|
||||||
|
<a href="https://mullvad.net/"><img alt="Mullvad" src="/assets/img/provider/Mullvad.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://mullvad.net/" href="https://mullvad.net/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="http://xcln5hkbriyklr6n.onion. Requires specific software to access: torproject.org" href="http://xcln5hkbriyklr6n.onion/"><img alt="Tor" src="/assets/img/layout/tor.png" width="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2009">2009</td>
|
||||||
|
<td data-value="{{ 60 | times: eur_to_usd }}">60 €</td>
|
||||||
|
<td><span class="label label-success">No</span></td>
|
||||||
|
<td>281</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-se"></span> Sweden</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="NordVPN">
|
||||||
|
<a href="https://nordvpn.com/"><img alt="NordVPN" src="/assets/img/provider/NordVPN.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://nordvpn.com/" href="https://nordvpn.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2012">2012</td>
|
||||||
|
<td data-value="84">$ 83.88</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>5200+</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-pa"></span> Panama</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="OVPN">
|
||||||
|
<a href="https://www.ovpn.com/"><img alt="OVPN" src="/assets/img/provider/ovpn.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.ovpn.com/" href="https://www.ovpn.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2014">2014</td>
|
||||||
|
<td data-value="{{ 84 | times: eur_to_usd }}">84 €</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>67</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-se"></span> Sweden</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Perfect Privacy">
|
||||||
|
<a href="https://www.perfect-privacy.com/"><img alt="Perfect Privacy" src="/assets/img/provider/Perfect-Privacy.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://www.perfect-privacy.com/" href="https://www.perfect-privacy.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2008">2008</td>
|
||||||
|
<td data-value="{{ 119.99 | times: eur_to_usd }}">119.99 €</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td>54</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-ch"></span> Switzerland</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="ProtonVPN">
|
||||||
|
<a href="https://protonvpn.com/"><img alt="ProtonVPN" src="/assets/img/provider/ProtonVPN.png" width="200" height="70"></a >
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://protonvpn.com/" href="https://protonvpn.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2016">2016</td>
|
||||||
|
<td data-value="0"><a data-toggle="tooltip" data-placement="bottom" data-original-title="3 countries, 1 device, speed: low" href="https://protonvpn.com/pricing">Free</a></td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>396</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-ch"></span> Switzerland</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Proxy.sh">
|
||||||
|
<a href="https://proxy.sh/"><img alt="Proxy.sh" src="/assets/img/provider/Proxy.sh.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://proxy.sh/" href="https://proxy.sh/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2012">2012</td>
|
||||||
|
<td data-value="40">$ 40</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td>300+</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-sc"></span> Seychelles</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
<tr>
|
||||||
|
<td data-value="Trust.Zone">
|
||||||
|
<a href="https://trust.zone/"><img alt="Trust.Zone" src="/assets/img/provider/Trust.Zone.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://trust.zone/" href="https://trust.zone/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2014">2014</td>
|
||||||
|
<td data-value="40">$ 39.95</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>164</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-sc"></span> Seychelles</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td data-value="VPNArea">
|
||||||
|
<a href="https://vpnarea.com/"><img alt="VPNArea" src="/assets/img/provider/vpnarea.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://vpnarea.com/" href="https://vpnarea.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2014">2014</td>
|
||||||
|
<td data-value="59">$ 59</td>
|
||||||
|
<td><span class="label label-success">Yes</span></td>
|
||||||
|
<td>204</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-bg"></span> Bulgaria</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td data-value="VPNTunnel">
|
||||||
|
<a href="https://vpntunnel.com/"><img alt="VPNTunnel" src="/assets/img/provider/VPNTunnel.png" width="200" height="70"></a>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
<a data-toggle="tooltip" data-placement="bottom" data-original-title="https://vpntunnel.com/" href="https://vpntunnel.com/"><img alt="WWW" src="/assets/img/layout/www.png" width="35" height="35"></a>
|
||||||
|
</td>
|
||||||
|
<td data-value="2014">2014</td>
|
||||||
|
<td data-value="{{ 35.88 | times: eur_to_usd }}">35.88 €</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td>800+</td>
|
||||||
|
<td><span class="label label-warning">No</span></td>
|
||||||
|
<td><span class="flag-icon flag-icon-sc"></span> Seychelles</td>
|
||||||
|
</tr>
|
||||||
|
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="alert alert-warning" role="alert">
|
<div class="alert alert-warning" role="alert">
|
||||||
<strong>Note: Using a VPN provider will not make you anonymous, but it will give you better privacy in certain situations. A VPN is not a tool for illegal activities. Don't rely on a "no log" policy.</strong>
|
<strong>Note: Using a VPN provider will not make you anonymous. But it will give you a better privacy. A VPN is not a tool for illegal activities. Don't rely on a "no log" policy.</strong>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<h1 id="vpn" class="anchor"><a href="#worth-mentioning"><i class="fas fa-link anchor-icon"></i></a> Other Providers Worth Mentioning</h1>
|
<div class="container">
|
||||||
|
<div class="row">
|
||||||
|
<div class="col-md-6">
|
||||||
|
<h3>Our VPN Provider Criteria</h3>
|
||||||
|
|
||||||
<div class="container-fluid">
|
<ul>
|
||||||
|
<li>Operating outside the USA or other Five Eyes countries.<br>More: <a href="https://www.bestvpn.com/the-ultimate-privacy-guide/#avoidus">Avoid all US and UK based services.</a></li>
|
||||||
|
<li>OpenVPN software support.</li>
|
||||||
|
<li>Accepts Bitcoin, cash, debit cards or cash cards as a payment method.</li>
|
||||||
|
<li>No personal information is required to create an account. Only username, password and <a href="/providers/email/"><i class="fas fa-link"></i> Email.</a></li>
|
||||||
|
</ul>
|
||||||
|
|
||||||
<div class="row mb-2">
|
<p>We're not affiliated with any of the above-listed VPN providers. This way we can give you honest recommendations.</p>
|
||||||
<div class="col-lg-3 col-sm-12 pt-lg-5">
|
|
||||||
<img src="/assets/img/provider/ProtonVPN.png" height="70" width="200" class="img-fluid d-block mr-auto ml-auto align-middle" alt="ProtonVPN">
|
<h3>More VPN Providers</h3>
|
||||||
|
<ul>
|
||||||
|
<li><a href="https://www.reddit.com/r/privacytoolsIO/comments/43d4zs/you_guys_might_be_interested_in_this_a/">Guide to Choosing the Best VPN</a></li>
|
||||||
|
<li><a href="https://thatoneprivacysite.net/vpn-comparison-chart/">Spreadsheet with unbiased, independently verifiable data on over 100 VPN services.</a></li>
|
||||||
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
<div class="col">
|
|
||||||
<h2>ProtonVPN <span class="badge badge-info">Free</span> <span class="badge badge-info">USD $96/year</span></h2>
|
<div class="col-md-6">
|
||||||
<p><strong>ProtonVPN</strong> is a strong contender in the VPN space, and they have been in operation since <strong>2016</strong>. ProtonVPN is based in <span class="flag-icon flag-icon-ch"></span> Switzerland and offers a limited free pricing tier, as well as premium options. Unfortunately due to its lack of an independent security audit it does not meet the complete criteria for recommendation, see our notes below.</p>
|
|
||||||
<h5><span class="badge badge-danger">Not Audited</span></h5>
|
<h3>Related VPN information</h3>
|
||||||
<p>ProtonVPN has not undergone a security audit by an independent third party, and therefore cannot be strongly recommended at this time. We have still chosen to list it on this page with the assumption that an audit will be published soon:</p>
|
|
||||||
<blockquote class="blockquote">
|
<ul>
|
||||||
<p class="mb-0">We are currently undergoing a complete security audit of our VPN applications by a reputable Swiss security company. The results of the audit will be summarized in a public report for cases like this.</p>
|
<li><a href="https://vikingvpn.com/blogs/off-topic/beware-of-vpn-marketing-and-affiliate-programs">Beware of False Reviews - VPN Marketing and Affiliate Programs</a></li>
|
||||||
<footer class="blockquote-footer">Marc Loebekken, ProtonVPN AG Legal counsel</footer>
|
<li><a href="https://www.goldenfrog.com/take-back-your-internet/articles/7-myths-about-vpn-logging-and-anonymity">I am Anonymous When I Use a VPN - 7 Myths Debunked</a><br />(<strong>Note:</strong> While this is a good read, they also use the article for self-promotion)</li>
|
||||||
</blockquote>
|
<li><a href="https://torrentfreak.com/proxy-sh-vpn-provider-monitored-traffic-to-catch-hacker-130930/">Proxy.sh VPN Provider Sniffed Server Traffic to Catch Hacker</a></li>
|
||||||
<p>We will reevaluate this listing at the end of 2019 or when the aforementioned report has been published, whichever is sooner.
|
<li><a href="https://proxy.sh/panel/knowledgebase.php?action=displayarticle&id=5">Ethical policy - All of the reasons why Proxy.sh might enable logging</a></li>
|
||||||
<h5><span class="badge badge-success">442+ Servers</span></h5>
|
<li><a href="https://www.ivpn.net/privacy">IVPN.net will collect your email and IP address after sign up</a><br />Read the <a data-toggle="tooltip" data-placement="top" data-original-title="The IP collected at signup is only used for a few seconds by our fraud module and then discarded, it is not stored. Storing them would significantly increase our own liability and certainly would not be in our interest. You're absolutely welcome to signup using Tor or a VPN.">Email statement</a> from IVPN.</li>
|
||||||
<p>ProtonVPN has 442 servers in 33 countries at the time of writing this page. Typically the more servers a provider offers, the better: With hundreds of servers in operation, you are far more likely to find a fast connection and a server geographically closest to you.</p>
|
<li><a href="https://medium.com/@blackVPN/no-logs-6d65d95a3016">blackVPN announced to delete connection logs after disconnection</a></li>
|
||||||
<h5><span class="badge badge-success">Accepts Bitcoin</span></h5>
|
<li><a href="https://gist.github.com/kennwhite/1f3bc4d889b02b35d8aa">Don't use LT2P IPSec, use other protocols.</a></li>
|
||||||
<p>ProtonVPN does technically accept Bitcoin payments, however you either need to have an existing account, or contact their support team in advance to register with Bitcoin.</p>
|
</ul>
|
||||||
<h5><span class="badge badge-success">Mobile Clients</span></h5>
|
|
||||||
<p>In addition to providing standard OpenVPN configuration files, ProtonVPN has mobile clients for iOS or Android allowing for easy connections to their servers.</p>
|
|
||||||
<h5><span class="badge badge-info">Extra Functionality</span></h5>
|
|
||||||
<p>The ProtonVPN clients have a built-in killswitch to block internet connections outside of the VPN. They also are able to automatically start on boot. ProtonVPN also offers "Tor" servers allowing you to easily connect to onion sites, but we still strongly recommend using the official Tor Browser for this purpose.</p>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="row mb-2">
|
|
||||||
<div class="col-lg-3 col-sm-12 pt-lg-5">
|
|
||||||
<img src="/assets/img/provider/IVPN.png" height="70" width="200" class="img-fluid d-block mr-auto ml-auto align-middle" alt="IVPN">
|
|
||||||
</div>
|
|
||||||
<div class="col">
|
|
||||||
<h2>IVPN <span class="badge badge-info">USD $100/Year</span></h2>
|
|
||||||
<p><strong>IVPN</strong> is another strong premium VPN provider, and they have been in operation since <strong>2009</strong>. IVPN is based in <span class="flag-icon flag-icon-gi"></span> Gibraltar and offers a 3 day free trial. Unfortunately due to its lack of an independent security audit it does not meet the complete criteria for recommendation, see our notes below.</p>
|
|
||||||
<h5><span class="badge badge-danger">No Security Audit</span></h5>
|
|
||||||
<p>IVPN has undergone a <a href="https://cure53.de/audit-report_ivpn.pdf">no-logging audit from Cure53</a> which concluded in agreement with IVPN's no-logging claim. However, IVPN has not undergone a more comprehensive security audit by an independent third party, and therefore cannot be strongly recommended at this time. We have still chosen to list it on this page with the assumption that an audit will be published soon: The IVPN team <a href="https://twitter.com/yaelwrites/status/1161796418220089344">reportedly plans to begin the process in September</a>.</p>
|
|
||||||
<p>We will reevaluate this listing at the end of 2019 or when the aforementioned report has been published, whichever is sooner.
|
|
||||||
<h5><span class="badge badge-success">70+ Servers</span></h5>
|
|
||||||
<p>IVPN has 70 servers in 29 countries at the time of writing this page. Typically the more servers a provider offers, the better. IVPN has a decent (but not exceptional) server count that will most likely provide adequate coverage to most users.</p>
|
|
||||||
<h5><span class="badge badge-success">Accepts Bitcoin</span></h5>
|
|
||||||
<p>In addition to accepting credit/debit cards and PayPal, IVPN accepts <strong>Bitcoin</strong> and <strong>cash/local currency</strong> (on annual plans) as anonymous forms of payment.</p>
|
|
||||||
<h5><span class="badge badge-success">Mobile Clients</span></h5>
|
|
||||||
<p>In addition to providing standard OpenVPN configuration files, IVPN has mobile clients for iOS or Android allowing for easy connections to their servers.</p>
|
|
||||||
<h5><span class="badge badge-info">Extra Functionality</span></h5>
|
|
||||||
<p>The IVPN clients have a built-in killswitch to block internet connections outside of the VPN. They also are able to automatically start on boot. IVPN also provides "AntiTracker" functionality, which blocks advertising networks and trackers from the network level.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
Before Width: | Height: | Size: 2.8 KiB After Width: | Height: | Size: 6.7 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 5.1 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.2 KiB |
Before Width: | Height: | Size: 4.7 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 3.4 KiB After Width: | Height: | Size: 6.5 KiB |
Before Width: | Height: | Size: 712 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 5.8 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 3.8 KiB After Width: | Height: | Size: 5.9 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 4.7 KiB |
Before Width: | Height: | Size: 834 B After Width: | Height: | Size: 1.0 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 5.4 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 8.3 KiB |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 2.1 KiB |
Before Width: | Height: | Size: 901 B After Width: | Height: | Size: 904 B |
Before Width: | Height: | Size: 410 B After Width: | Height: | Size: 458 B |
Before Width: | Height: | Size: 474 B After Width: | Height: | Size: 515 B |
Before Width: | Height: | Size: 526 B After Width: | Height: | Size: 558 B |
Before Width: | Height: | Size: 669 B After Width: | Height: | Size: 689 B |
Before Width: | Height: | Size: 667 B After Width: | Height: | Size: 669 B |
Before Width: | Height: | Size: 751 B After Width: | Height: | Size: 763 B |
Before Width: | Height: | Size: 377 B After Width: | Height: | Size: 387 B |
Before Width: | Height: | Size: 404 B After Width: | Height: | Size: 414 B |
Before Width: | Height: | Size: 415 B After Width: | Height: | Size: 451 B |
Before Width: | Height: | Size: 669 B After Width: | Height: | Size: 689 B |
Before Width: | Height: | Size: 901 B After Width: | Height: | Size: 904 B |
Before Width: | Height: | Size: 601 B After Width: | Height: | Size: 606 B |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 10 KiB |
Before Width: | Height: | Size: 2.5 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 4.2 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 685 B After Width: | Height: | Size: 773 B |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 7.4 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 18 KiB After Width: | Height: | Size: 57 KiB |
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 931 B After Width: | Height: | Size: 1.5 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 38 KiB |
BIN
assets/img/layout/jonah.png
Normal file
After Width: | Height: | Size: 58 KiB |
Before Width: | Height: | Size: 7.5 KiB After Width: | Height: | Size: 11 KiB |
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 22 KiB |
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 53 KiB |
Before Width: | Height: | Size: 5.3 KiB After Width: | Height: | Size: 7.7 KiB |
Before Width: | Height: | Size: 551 B After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 8.7 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 11 KiB After Width: | Height: | Size: 23 KiB |
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 17 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 831 B After Width: | Height: | Size: 1.2 KiB |
Before Width: | Height: | Size: 3.2 KiB After Width: | Height: | Size: 6.3 KiB |
Before Width: | Height: | Size: 1.0 KiB After Width: | Height: | Size: 1.2 KiB |
BIN
assets/img/provider/AirVPN.png
Normal file
After Width: | Height: | Size: 2.2 KiB |
BIN
assets/img/provider/AzireVPN.png
Normal file
After Width: | Height: | Size: 1.9 KiB |
Before Width: | Height: | Size: 3.9 KiB After Width: | Height: | Size: 5.2 KiB |
Before Width: | Height: | Size: 9.6 KiB After Width: | Height: | Size: 9.8 KiB |
BIN
assets/img/provider/EarthVPN.png
Normal file
After Width: | Height: | Size: 2.4 KiB |
BIN
assets/img/provider/ExpressVPN.png
Normal file
After Width: | Height: | Size: 1.3 KiB |
BIN
assets/img/provider/FrootVPN.png
Normal file
After Width: | Height: | Size: 3.1 KiB |
Before Width: | Height: | Size: 2.3 KiB After Width: | Height: | Size: 3.6 KiB |
Before Width: | Height: | Size: 919 B After Width: | Height: | Size: 1.1 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.7 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.8 KiB |
Before Width: | Height: | Size: 2.4 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 3.5 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.7 KiB |
Before Width: | Height: | Size: 2.7 KiB After Width: | Height: | Size: 4.6 KiB |
Before Width: | Height: | Size: 3.0 KiB After Width: | Height: | Size: 5.2 KiB |
BIN
assets/img/provider/NordVPN.png
Normal file
After Width: | Height: | Size: 2.0 KiB |
BIN
assets/img/provider/Perfect-Privacy.png
Normal file
After Width: | Height: | Size: 3.9 KiB |
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 2.8 KiB |
Before Width: | Height: | Size: 2.0 KiB After Width: | Height: | Size: 2.6 KiB |
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 2.5 KiB |
BIN
assets/img/provider/Proxy.sh.png
Normal file
After Width: | Height: | Size: 2.9 KiB |
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 2.5 KiB |
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 8.1 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 7.1 KiB |
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 4.8 KiB |
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 9.4 KiB |
BIN
assets/img/provider/Trust.Zone.png
Normal file
After Width: | Height: | Size: 3.0 KiB |
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 1.8 KiB |
BIN
assets/img/provider/VPN.ht.png
Normal file
After Width: | Height: | Size: 2.4 KiB |