-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
104 lines (92 loc) · 4.89 KB
/
index.html
File metadata and controls
104 lines (92 loc) · 4.89 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Anonoblog</title>
<!-- Bootstrap -->
<link href="bower_components/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="blog.css" rel="stylesheet">
</head>
<body>
<header class="navbar navbar-static-top bs-docs-nav">
<div class="container">
<div class="navbar-header">
<a href="index.html" class="navbar-brand">Anonoblog</a>
</div>
<div class="navbar navbar-static-top bs-docs-nav">
<ul class="nav navbar-nav">
<li class="active"> <a href="index.html">Home</a> </li>
<li> <a href="hidden-service.html">Set up a hidden service</a> </li>
<li> <a href="fancy-dot-onion.html">Get a fancy .onion name</a> </li>
<li> <a href="anonymous-server.html">Manage a server anonymously</a></li>
<li> <a href="scan-for-leaks.html">Scan for leaks</a></li>
</ul>
</div>
</div>
</header>
<div class="bs-docs-header">
<div class="container">
<h1>Hello, Tor!</h1>
<div>Creating and running a Tor hidden service anonymously</div>
</div>
</div>
<div class="main-content">
<div class="container">
<h2>What am I doing?</h2>
<p>
There are 4 sections to this workshop. You can either work through them in order, or choose whatever looks fun. This will work better if you form a group and discuss. If you need any help, or have questions, get the attention of one of the friendly workshop assistants -- Rob, Eru, or Robin.
<ol>
<li>"Set up a hidden service" gets a Tor hidden service up and running on your laptop</li>
<li>"Get a fancy .onion name" shows how to get a nice-looking .onion name by brute force. You need to complete section 1 or 3 first.</li>
<li>"Manage a server anonymously" shows how to get a virtual private server up and running your hidden service without revealing your identity</li>
<li>"Scan for leaks" invites you to play with OnionScan, a leak detector for hidden services</li>
</ol>
</p>
<h2>Why would I do that?</h2>
<p>
Remember the internet of the 90's and early 2000's, when you could type whatever you wanted into Altavista without fear of ending up "on a list"?
</p>
<p>
Well those days are gone. We can safely assume we're being watched. How can we speak our minds, explore ideas, or follow our true interests with Big Brother looking over our shoulders?
</p>
<p>
The anonymous internet that we remember is still all around us; it's just not as visible as it used to be. It's our job to bring that internet back and make it mainstream again.
</p>
<p>
To make this happen, we need to build stuff -- awesome sites and services that are available anonymously.
</p>
<h2>What do I need?</h2>
<ul>
<li>A computer with an internet connection (wi-fi, or preferably your own mobile internet)
<ul>
<li>if downloading is too slow or expensive, and you are happy to plug in a USB drive containing Tor and Tor Browser instead, please ask for one.</li>
</ul>
</li>
<li>
Preferably a computer running Linux or Mac OS X. You can probably get things working in Windows but the instructions won't help much.
</li>
<li>A little bit of background knowledge
<ul>
<li>What Tor is (<a href="https://tor.eff.org/about/overview.html.en">this covers it</a>)</li>
<li>Basic *nix command line</li>
</ul>
</li>
</ul>
<h2>Disclaimers</h2>
<p>This is a learning exercise, designed to demystify Tor hidden services, and should be taken with a grain of salt. Don't expect to be untraceable at the end of this hour. For in-depth configuration suggestions see <a href="https://www.bentasker.co.uk/documentation/linux/307-building-a-tor-hidden-service-from-scratch-part-1">this 3-part tutorial.</a></p>
<h2>Now</h2>
<p>
<a href="hidden-service.html">Set up a hidden service</a>
</p>
<br/><hr/><br/>
<p class="center"><a href="https://github.com/anonoBlog/anonoBlog.github.io">Anonoblog</a> | Robin Doherty | <a href="https://robindoherty.com">robindoherty.com</a> | <a href="https://twitter.com/rdoh">@rdoh</a> | <a href="mailto:rdoherty@gmail.com">rdoherty@gmail.com</a> | <a href="https://keybase.io/rdoh">PGP</a> </p>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="bower_components/jquery/dist/jquery.min.js"></script>
<!-- Include all compiled plugins (below), or include individual files as needed -->
<script src="bower_components/bootstrap/dist/js/bootstrap.min.js"></script>
</body>
</html>