-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathprivacy.html
More file actions
122 lines (111 loc) · 5.44 KB
/
Copy pathprivacy.html
File metadata and controls
122 lines (111 loc) · 5.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{% extends 'core.html' %}
{% load i18n %}
{% block title %}{% trans "Privacy Policy" %} — Ahmia{% endblock %}
{% block body %}
<div id="ahmiaDisclaimer">
<h3>{% trans "Privacy Policy" %}</h3>
<p>
{% blocktrans %}
Last updated: 25 May 2025
{% endblocktrans %}
</p>
<p>
{% blocktrans %}
Ahmia is a privacy-respecting search engine for publicly accessible Tor (.onion) websites.
We explain in this policy what limited information we collect, why we collect it, and how we use it—always protecting your anonymity.
This Privacy Policy applies to all users of Ahmia, including its Tor and clearnet versions.
For more details of functionality, refer to our <a href="/terms/">Terms of Service</a>.
{% endblocktrans %}
</p>
<h4>{% trans "1. Ahmia Does Not Process Personal Data" %}</h4>
<p>
{% blocktrans %}
Ahmia does not store personal data, as defined by EU Regulation 2016/679 (GDPR).
If a user unexpectedly inputs personal data into the search field, it is not used to identify or track individuals.
{% endblocktrans %}
</p>
<p>
{% blocktrans %}
Please do not enter personally identifiable information into search terms or send personal data via email unless absolutely necessary and only with your explicit consent.
{% endblocktrans %}
</p>
<h4>{% trans "2. No Tracking. No Profiling. No Cookies." %}</h4>
<ul>
<li>{% trans "No IP addresses are stored." %}</li>
<li>{% trans "No cookies are used." %}</li>
<li>{% trans "No browser fingerprinting or local storage is employed." %}</li>
<li>{% trans "No tracking pixels or analytics are used." %}</li>
<li>{% trans "No user profiles are created." %}</li>
<li>{% trans "No data is stored or accessed on your device." %}</li>
<li>{% trans "No login or registration is required." %}</li>
<li>{% trans "We never combine Ahmia usage data with other datasets to identify users." %}</li>
</ul>
<h4>{% trans "3. Right to Erasure (Right to Be Forgotten)" %}</h4>
<p>
{% blocktrans %}
Ahmia does not retain any identifiable user data. However, if you believe that a link indexed by Ahmia violates your privacy rights (e.g., links to harmful or defamatory content), you may submit a removal request under Article 17 of the GDPR.
{% endblocktrans %}
</p>
<p>
{% blocktrans %}
Once we receive a valid request, we may process limited personal data to assess and respond to the request. We evaluate each case individually and may delist or lower the visibility of `.onion` URLs when justified under Finnish or EU law.
{% endblocktrans %}
</p>
<h4>{% trans "4. What We Collect and Why" %}</h4>
<p>
{% blocktrans %}
Ahmia does not collect personally identifiable information. The following non-personal data is collected for academic research and service quality purposes:
{% endblocktrans %}
</p>
<ul>
<li>{% trans "Search terms submitted via the interface" %}</li>
<li>{% trans "Clicked links on Ahmia search results" %}</li>
<li>{% trans "Browser user agent" %}</li>
<li>{% trans "HTTP Referer header" %}</li>
<li>{% trans "Timestamps of requests" %}</li>
</ul>
<p>
{% blocktrans %}
These logs do not contain IP addresses or other identifying information. They are used solely for academic research, search engine maintenance, and filtering improvements.
{% endblocktrans %}
</p>
<h4>{% trans "5. How We Use This Data" %}</h4>
<ul>
<li>{% trans "Data is stored without IP addresses." %}</li>
<li>{% trans "Data is not sold or rented." %}</li>
<li>{% trans "Data is only shared with trusted academic collaborators under research agreements." %}</li>
<li>{% trans "Data is used for ethical and legally compliant academic research." %}</li>
<li>{% trans "Data is used to improve automatic filtering and public safety (e.g., content moderation)." %}</li>
</ul>
<p>
{% blocktrans %}
Ahmia supports peer-reviewed academic research.
For example, data from Ahmia contributed to the publication titled
“Investigating child sexual abuse material availability, searches, and users on the anonymous Tor network for a public health intervention strategy”,
see
{% endblocktrans %}
<a href="https://www.nature.com/articles/s41598-024-58346-7" target="_blank" rel="noopener noreferrer">
https://www.nature.com/articles/s41598-024-58346-7
</a>
{% blocktrans %}
{% endblocktrans %}
</p>
<h4>{% trans "6. Updates to This Policy" %}</h4>
<p>
{% blocktrans %}
This Privacy Policy may be updated as our research and technologies evolve.
The latest version will always be published on this page.
All updates are recorded in a public <a href="https://github.com/ahmia/ahmia-site/blob/master/ahmia/templates/privacy.html">GitHub changelog</a> for transparency.
Continued use of the service after changes implies acceptance of the updated policy.
{% endblocktrans %}
</p>
<h4>{% trans "Contact" %}</h4>
<p>
{% blocktrans %}
For privacy concerns, legal matters, or abuse reports, please contact Juha Nurmi at
<a href="mailto:juha.nurmi@ahmia.fi">juha.nurmi@ahmia.fi</a>.
Please do not include sensitive personal data unless necessary.
{% endblocktrans %}
</p>
</div>
{% endblock %}