-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
91 lines (77 loc) · 3.27 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>hackint - communication network for the hacker community</title>
<meta charset="utf-8">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/hackint.css">
</head>
<body>
<div class="box">
<pre>
__ __
/ /_ ____ ______/ /__
/ __ \/ __ `/ ___/ //_/
/ / / / /_/ / /__/ ,< __
/_/ /_/\__,_/\___/_/|_| (*)___ / /_
/ / __ \/ __/
/ / / / / /_
https://www.hackint.org / / / / / /_
https://www.hackint.eu /_/_/ /_/\__/
</pre>
</div>
<h2>Hashcash - Anonymous Registration</h2>
<div class="box">
<p><strong>Note: You need to have session cookies enabled for this to work! If you do not have session cookies
enabled, change your settings and reload this page!</strong></p>
<p id="content">
G'day! We wish your stay at hackint to be a pleasant
one. Unfortunately, completely anonymous access can be and is
being abused regularily. Ironically, in order to preserve
anonymous access, we have to introduce a <strong>cost</strong>
that each user wishing to stay anonymous has to pay before they
can access hackint. This cost is paid for by means
of <strong>computation time</strong>. All you have to do
is <strong>keep this website open for a few hours</strong> and
once the calculations are finished, you will be able to create a
nickserv user on hackint using a web form. You can then use
this account to connect to hackint through SASL authentication.
</p>
<div id="error" style="display:none;">
<h3 style="color:darkred !important;">Error</h3>
<p id="errmsg"></p>
</div>
<div id="monitor" style="display:none;">
<h3>Generating proof-of-work...</h3>
<div id="workers"></div>
</div>
<div id="registration" style="display:none;">
<h3>Registration</h3>
<p>
Thank you very much for your patience. You may now register an
account on hackint. Please pick an accountname and a password.
</p>
<div style="max-width: 200px;">
<form id="frmRegister">
<input type="hidden" name="proof" value="Patience, young padawan" id="proof"/>
<div class="form-group">
<label for="txtAccountName">Accountname:</label>
<input type="text" class="form-control disabled" name="accountname" value="" id="txtAccountName"
disabled/>
</div>
<div class="form-group">
<label for="txtPassword">Password:</label>
<input type="password" class="form-control disabled" name="password" value="" id="txtPassword"
disabled/>
</div>
<div>
<button type="button" class="btn btn-success" id="btnRegister" disabled>Register</button>
</div>
</form>
</div>
</div>
</div>
<script src="js/jquery-2.1.3.min.js"></script>
<script src="js/app.js"></script>
</body>
</html>