]> gitweb.stoutner.com Git - PrivacyBrowserAndroid.git/blob - app/src/main/assets/it/guide_local_storage_light.html
9c7859e14740d47121a63a7d02fdfcd543d4d132
[PrivacyBrowserAndroid.git] / app / src / main / assets / it / guide_local_storage_light.html
1 <!--
2   Copyright © 2017-2018 Soren Stoutner <soren@stoutner.com>.
3
4   Translation 2017-2018 Francesco Buratti.  Copyright assigned to Soren Stoutner <soren@stoutner.com>.
5
6   This file is part of Privacy Browser <https://www.stoutner.com/privacy-browser>.
7
8   Privacy Browser is free software: you can redistribute it and/or modify
9   it under the terms of the GNU General Public License as published by
10   the Free Software Foundation, either version 3 of the License, or
11   (at your option) any later version.
12
13   Privacy Browser is distributed in the hope that it will be useful,
14   but WITHOUT ANY WARRANTY; without even the implied warranty of
15   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16   GNU General Public License for more details.
17
18   You should have received a copy of the GNU General Public License
19   along with Privacy Browser.  If not, see <http://www.gnu.org/licenses/>. -->
20
21 <html>
22     <head>
23         <meta charset="UTF-8">
24
25         <link rel="stylesheet" href="../css/light_theme.css">
26     </head>
27
28     <body>
29         <h3><img class="title" src="../shared_images/cookie_blue_light.png"> Cookies proprietari</h3>
30
31         <p>I cookies proprietari sono definiti dal sito web nella barra della URL all'inizio della pagina.</p>
32
33         <p>From the early days of the internet, it became obvious that it would be advantageous for websites to be able to store information on a computer for future access.
34             For example, a website that displays weather information could ask the user for a zip code, and then store it in a cookie.
35             The next time the user visited the website, weather information would automatically load for that zip code, without the user having to enter it again.</p>
36
37         <p>Like everything else on the web, clever people figured out all types of ways to abuse cookies to do things that users would not approve of if they knew they were happening.
38             For example, a website can set a cookie with a unique serial number on a device.
39             Then, every time a user visits the website on that device, it can be linked to a unique profile the server maintains for that serial number,
40             even if the device connects from different IP addresses.</p>
41
42         <p>Almost all websites with logins require first-party cookies to be enabled for a user to log in.
43             That is how they make sure it is still you as you move from page to page on the site, and is, in my opinion, one of the few legitimate uses for cookies.</p>
44
45         <p>Se sono stati abilitati i cookies proprietari ma è stato disabilitato JavaScript,
46             l'icona della privacy sarà gialla <img class="inline" src="../shared_images/warning.png"> con lo scopo di avvertire l'utente.</p>
47
48
49         <h3><img class="title" src="../shared_images/cookie_blue_light.png"> Cookies di terze parti</h3>
50
51         <p>I cookies di terze parti sono impostati da alcune porzioni dei siti web che sono caricate da server differenti rispetto alla URL all'inizio della pagina.
52             Ad esempio, molti siti web con annunci pubblicitari caricano gli annunci da ad-broker distinti, come ad esempio Google <a href="https://www.google.com/adsense/start/">Ad Sense</a>.
53             Ogni volta che il sito viene caricato richiede all'ad-broker di mostrare un annuncio pubblicitario.
54             A questo punto l'ad-broker analizza tutte le informazioni possedute relative all'utente, compara le tariffe che saranno pagate dalle agenzie per i diversi annunci,
55             e quindi seleziona quello da mostrare. La sezione di un sito web dedicata alla visualizzazione degli annunci pubblicitari viene caricata dal server del broker invece che da quello principale.</p>
56
57         <p>Dal momento che la maggior parte della pubblicità su internet è gestita da pochi broker,
58             non c'è voluto molto tempo perchè si rendessero conto di poter posizionare un cookie tracciante sui dispositivi per conoscere i luoghi in cui si trovano gli utenti.
59             Ogni volta che si carica un annuncio la primissima cosa che il broker fa è quella di verificare se il dispositivo ha già il suo numero seriale univoco in un cookie.
60             A questo punto cerca il profilo relativo a quel numero seriale e memorizza il nuovo sito.
61             Questo è il motivo per cui un utente può effettuare una ricerca su un sito per un prodotto che solitamente non cerca, ad esempio le noci,
62             e da quel momento improvvisamente inizia a vedere annunci di noci su ogni sito web visitato.</p>
63
64         <p>Oltre agli ad-broker, anche i social media hanno scoperto come entrare in azione.
65             Alcuni anni fa i principali siti social come Facebook e Twitter hanno convinto un gran numero di siti web che
66             sarebbe stato loro molto utile inserire alcune piccole icone dei social media sulle loro pagine. Queste però non sono semplici immagini.
67             Esse contengono del <a href="https://developers.facebook.com/docs/plugins/like-button/">codice incorporato</a> che collega al sito del social media ma non solo, oltre ad altre cose,
68             carica un cookie di terze parti sul dispositivo. Questi cookie sono caricati anche se l'utente non possiede nemmeno un account su quel particolare social media.
69             Nel corso del tempo le aziende come Facebook (che gestisce anche una rete di annunci) hanno costruito un numero enorme di profili dettagliati di persone che
70             <a href="http://www.theverge.com/2016/5/27/11795248/facebook-ad-network-non-users-cookies-plug-ins">non hanno nemmeno mai creato un account sul loro sito</a>.</p>
71
72         <p>There is no good reason to ever enable third-party cookies. On devices with Android KitKat or older (version <= 4.4.4 or API <= 20), WebView does not
73             <a href="https://developer.android.com/reference/android/webkit/CookieManager.html#setAcceptThirdPartyCookies(android.webkit.WebView, boolean)">differentiate
74             between first-party and third-party cookies</a>. Thus, enabling first-party cookies will also enable third-party cookies.</p>
75
76
77         <h3><img class="title" src="../shared_images/web_blue_light.png"> DOM Storage</h3>
78
79         <p>Document Object Model storage, also known as web storage, is like cookies on steroids.
80             Whereas the maximum combined storage size for all cookies from a single URL is 4 kilobytes,
81             DOM storage can hold <a href="https://en.wikipedia.org/wiki/Web_storage#Storage_size">megabytes per site</a>.
82             Because DOM storage uses JavaScript to read and write data, it cannot be enabled unless JavaScript is also enabled.</p>
83
84
85         <h3><img class="title" src="../shared_images/subtitles_blue_light.png"> Dati dei moduli</h3>
86
87         <p>Form data contains information typed into web forms, like user names, addresses, phone numbers, etc., and lists them in a drop-down box on future visits.
88             Unlike the other forms of local storage, form data is not sent to the web server without specific user interaction.
89             Beginning in Android Oreo (8.0), WebView’s form data was replaced by the <a href="https://medium.com/@bherbst/getting-androids-autofill-to-work-for-you-21435debea1">Autofill service</a>.
90             As such, controls for form data no longer appear on newer Android devices.</p>
91     </body>
92 </html>