-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
133 lines (119 loc) · 8.03 KB
/
index.html
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
123
124
125
126
127
128
129
130
131
132
133
---
layout: none
---
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title>{{ site.title }}</title>
{% if site.description != null %}
<meta name="description" content="{{ site.description }}">
{% endif %}
{% capture style %}
{% include style.css %}
{% endcapture %}
<style>{{ style | scssify }}</style>
</head>
<body>
<div class="container">
<!-- "Antu tor-browser.svg" is licensed under CREATIVE COMMONS BY-SA 3.0 - https://commons.wikimedia.org/wiki/File:Antu_tor-browser.svg -->
<img src="data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB2aWV3Qm94PSIwIDAgNDggNDgiPjxkZWZzPjxsaW5lYXJHcmFkaWVudCB4bGluazpocmVmPSIjMSIgaWQ9IjAiIHgxPSI0MDcuMiIgeTE9IjU0OS42NyIgeDI9IjQwNi4zMiIgeTI9IjQ5OC40MiIgZ3JhZGllbnRVbml0cz0idXNlclNwYWNlT25Vc2UiLz48bGluZWFyR3JhZGllbnQgaWQ9IjEiPjxzdG9wIHN0b3AtY29sb3I9IiM2OTE1OWYiLz48c3RvcCBvZmZzZXQ9IjEiIHN0b3AtY29sb3I9IiNiOTJmZjUiLz48L2xpbmVhckdyYWRpZW50PjxsaW5lYXJHcmFkaWVudCB4bGluazpocmVmPSIjMSIgaWQ9IjIiIHgxPSItNTQ2LjgiIHkxPSI0MDUuODIiIHgyPSItNTAwLjE3IiB5Mj0iNDA3Ljk1IiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIvPjwvZGVmcz48ZyB0cmFuc2Zvcm09InRyYW5zbGF0ZSgtMzg0LjU3LTQ5OS44KSIgY29sb3ItcmVuZGVyaW5nPSJhdXRvIiBjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM9ImxpbmVhclJHQiIgc2hhcGUtcmVuZGVyaW5nPSJhdXRvIiBpbWFnZS1yZW5kZXJpbmc9ImF1dG8iIGNvbG9yLWludGVycG9sYXRpb249InNSR0IiIGNvbG9yPSIjMDAwIj48Y2lyY2xlIGN4PSI0MDguNTciIGN5PSI1MjMuOCIgcj0iMjQiIGZpbGw9InVybCgjMCkiLz48Y2lyY2xlIHI9IjIwIiBjeT0iNTIzLjgiIGN4PSI0MDguNTciIGZpbGw9IiNmZGZjZGYiLz48Y2lyY2xlIHI9IjE2IiBjeT0iNTIzLjgiIGN4PSI0MDguNTciIGZpbGw9IiNlYWVhY2UiLz48Y2lyY2xlIHI9IjEyIiBjeT0iNTIzLjgiIGN4PSI0MDguNTciIGZpbGw9IiNkMWQxYjgiLz48Y2lyY2xlIHI9IjgiIGN5PSI1MjMuOCIgY3g9IjQwOC41NyIgZmlsbD0iI2JmYmZhOSIvPjxwYXRoIHRyYW5zZm9ybT0ibWF0cml4KDAtMSAxIDAgMCAwKSIgZD0ibS00OTkuNzk3OTcgNDA4LjU3MTQ0YTI0IDI0IDAgMCAxIC0xMiAyMC43ODQ2MSAyNCAyNCAwIDAgMSAtMjQgMCAyNCAyNCAwIDAgMSAtMTIgLTIwLjc4NDYxIiBtaXgtYmxlbmQtbW9kZT0ibm9ybWFsIiBzb2xpZC1jb2xvcj0iIzAwMDAwMCIgaXNvbGF0aW9uPSJhdXRvIiBzb2xpZC1vcGFjaXR5PSIxIiBmaWxsPSJ1cmwoIzIpIi8+PC9nPjwvc3ZnPg==" height="64px" width="64px">
<h1>{{ site.title }}</h1>
<p>
You’re likely seeing this page because you had some issue with traffic originating from
{% if site.ips != null %}
{% if site.ips.size == 1 %}
this IP address (<span>{{ site.ips }}</span>).
{% else if site.ips.size >= 2 %}
one of these IP addresses:
</p>
<ul>
{%- for ip in site.ips -%}
<li>
<span>{{ ip }}</span>
</li>
{% endfor %}
</ul>
<p>
{% endif %}
{% else %}
this IP address.
{% endif %}
This router is part of the <a href="https://www.torproject.org">Tor Anonymity Network</a>, which is dedicated to
providing privacy to people who wants to use the internet anonymously. This router should be generating no other
traffic, unless it has been compromised.
</p>
<p>
As can be seen from the <a href="https://www.torproject.org/about/overview#thesolution">Tor overview page</a>, the
Tor network is designed to make tracing of users impossible. This is because the Tor network is a
censorship-resistant, privacy, and anonymity system used by <a href="https://www.torproject.org/about/torusers">
many important segments of the population</a>, including whistle blowers, journalists, Chinese dissidents skirting
the Great Firewall and oppressive censorship, abuse victims, stalker targets, the US military, and law enforcement,
just to name a few. While Tor is not designed for malicious computer users, it is true that they can use the network
for malicious ends. In reality however, the actual amount of <a href="https://www.torproject.org/docs/faq-abuse">
abuse</a> is quite low. This is largely because criminals and hackers have significantly better access to privacy
and anonymity than do the regular users whom they prey upon. Criminals can and do
<a href="http://voices.washingtonpost.com/securityfix/2008/08/web_fraud_20_tools.html">build, sell, and trade</a>
far larger and <a href="http://voices.washingtonpost.com/securityfix/2008/08/web_fraud_20_distributing_your.html">
more powerful networks</a> than Tor on a daily basis. Thus, in the mind of this operator, the social need for easily
accessible censorship-resistant private, anonymous communication trumps the risk of unskilled bad actors, who are
almost always more easily uncovered by traditional police work than by extensive monitoring and surveillance anyway.
</p>
<p>
In terms of applicable law, the best way to understand Tor is to consider it a network of routers operating as common
carriers, much like the Internet backbone. However, unlike the Internet backbone routers, Tor routers explicitly do
not contain identifiable routing information about the source of a packet, and no single Tor node can determine both
the origin and destination of a given transmission.
</p>
<p>
As such, there is little the operator of this router can do to help you track the connection further. This router
maintains no logs of any of the Tor traffic, so there is little that can be done to trace either legitimate or
illegitimate traffic (or to filter one from the other). Attempts to seize this router will accomplish nothing.
</p>
{% if site.sections.dmca == true %}
<p>
If you are a representative of a company who feels that this router is being used to violate the DMCA, please be
aware that this machine does not host or contain any illegal content. Also be aware that network infrastructure
maintainers are not liable for the type of content that passes over their equipment, in accordance with
<a href="https://www.law.cornell.edu/uscode/text/17/512">DMCA "safe harbor" provisions</a>. In other words, you
will have just as much luck sending a takedown notice to the Internet backbone providers. Please consult
<a href="https://www.torproject.org/eff/tor-dmca-response">EFF's prepared response</a> for more information on
this matter.
</p>
{% endif %}
<p align="center">
For more information, please consult the following documentation:
<br>
<a href="https://www.torproject.org/about/overview">Tor Overview</a> |
<a href="https://www.torproject.org/docs/faq-abuse">Tor Abuse FAQ</a> |
<a href="https://www.torproject.org/eff/tor-legal-faq">Tor Legal FAQ</a>
</p>
<hr>
<p>
If you still have a complaint about the router, you may contact <span>{{ site.name }}</span>, who runs this exit
router, at <span>{{ site.email }}</span>{% if site.pgp != null %} (<a href="{{ site.pgp }}">PGP Key</a>){% endif %}.
If complaints are related to a particular service that is being abused, I will consider removing that service from
my exit policy, which would prevent my router from allowing that traffic to exit through it. However, I can only do
this on an IP + destination port basis. Common P2P ports are already blocked.
</p>
<p>
You also have the option of blocking this IP address and others on the Tor network if you so desire. The Tor project
provides a <a href="https://check.torproject.org/cgi-bin/TorBulkExitList.py">web service</a> to fetch a list of all
IP addresses of Tor exit nodes that allow exiting to a specified IP:port combination, and an official
<a href="https://www.torproject.org/projects/tordnsel">DNSRBL</a> is also available to determine if a given IP
address is actually a Tor exit server. Please be considerate when using these options. It would be unfortunate to
deny all Tor users access to your website indefinitely simply because of a few bad apples.
</p>
</div>
{% if site.sections.credits == true %}
<div class="credits">
<p align="center">
Designed by: <a href="https://www.strappazzon.xyz">Strappazzon</a>
<br>
This Tor Exit Notice is open sourced under the <a href="https://github.com/Strappazzon/tor-exit-page/blob/master/LICENSE.txt">GPLv3</a> license.
</p>
</div>
{% endif %}
</body>
</html>