]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/assets/en/guide_ssl_certificates_light.html
Update the guide screenshots. https://redmine.stoutner.com/issues/413
[PrivacyBrowserAndroid.git] / app / src / main / assets / en / guide_ssl_certificates_light.html
1 <!--
2   Copyright © 2017-2019 Soren Stoutner <soren@stoutner.com>.
3
4   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
5
6   Privacy Browser is free software: you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation, either version 3 of the License, or
9   (at your option) any later version.
10
11   Privacy Browser is distributed in the hope that it will be useful,
12   but WITHOUT ANY WARRANTY; without even the implied warranty of
13   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14   GNU General Public License for more details.
15
16   You should have received a copy of the GNU General Public License
17   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
18
19 <html>
20     <head>
21         <meta charset="UTF-8">
22
23         <link rel="stylesheet" href="../css/light_theme.css">
24     </head>
25
26     <body>
27         <h3><img class="title" src="../shared_images/vpn_lock_blue_light.png"> Connect with Confidence</h3>
28
29         <p>When visiting an encrypted URL (one that begins with HTTPS), the webserver uses an SSL certificate to both encrypt the information sent to the browser and to identify the server.
30             The purpose of the server identification is to prevent a machine located between the browser and the webserver from pretending to be the server and decrypting the information in transit.
31             This type of attack is known as a Man In The Middle (MITM) attack.
32             SSL certificates are generated by certificate authorities: companies that verify a server’s identity and produce a certificate for a fee.
33             Android has a list of trusted certificate authorities, and will accept any of their certificates for any website.
34             It isn’t supposed to be possible for an organization to acquire an SSL certificate for a domain they do not control,
35             but in practice many governments and large corporations have been able to do so.</p>
36
37         <p>Pinning an SSL certificate tells the browser that only one specific SSL certificate is to be trusted for a particular domain. Any other certificate, even if it is valid, will be rejected.</p>
38
39         <p><img class="center" src="images/pinned_mismatch.png"></p>
40
41         <p>SSL certificates expire on a specified date, so even pinned SSL certificates will legitimately need to be updated from time to time.
42             As a general rule, pinning SSL certificates probably isn’t needed in the majority of cases.
43             But for those who suspect that powerful organizations may be targeting them, SSL certificate pinning can detect and thwart a MITM attack.
44             Privacy Browser also has the ability to pin IP addresses.</p>
45
46         <p><img class="center" src="images/pinned_ssl_certificate.png"></p>
47
48         <p>SSL certificates can be pinned in Domain Settings.
49             Besides protecting against MITM attacks,
50             pinning a self-signed certificate for a device like a wireless router or access point will remove the error message that is normally presented every time its website is loaded.
51             Tapping on the active tab displays the current website SSL certificate.</p>
52     </body>
53 </html>