-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
183 lines (153 loc) · 7.93 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<!DOCTYPE html>
<html>
<head>
<title>IOTA Spam Fund v0.2</title>
<link rel="stylesheet" type="text/css" href="./css/style.css">
<link rel="shortcut icon" type="image/x-icon" href="./imgs/favicon.ico">
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/bootstrap.min.js"></script>
<script type="text/javascript" src="js/iota.min.js"></script>
<script type="text/javascript" src="js/curl.min.js"></script>
<script type="text/javascript" src="js/EventEmitter.min.js"></script>
<script type="text/javascript" src="js/spammer.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script type="text/javascript" src="js/spamfund.js"></script>
<script type="text/javascript" src="js/ajax.js"></script>
<script type="text/javascript" src="js/md5.js"></script>
</head>
<body>
<noscript>
You have to activate JavaScript in order to use this program.
</noscript>
<header>
<img src="./imgs/iota.png">
</header>
<div id="news" class="hidden">
<div id="news_box">
<h1>...</h1>
<p>...</p>
<div class="button" onclick="$('#news').addClass('hidden');">close</div>
</div>
</div>
<div id="pattern"></div>
<div id="content">
<div id="fullscreen_button" onclick="toggleFullscreen();">toggle full screen mode</div>
<div id="colorscheme_button" onclick="toggleColorScheme();">switch color scheme</div>
<div id="page1">
<h1>Project Licenses</h1>
<p>The foundation for this project was laid by Peter Ryszkiewicz. He developed the transaction spammer which was later customized by us (the IOTA Spam Fund) in order to make it better suited for our reward system.</p>
<pre id="lic1">MIT License
Copyright (c) 2017 Peter Ryszkiewicz
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</pre>
<pre id="lic2">MIT License
Copyright (c) 2017 iotaspam.com
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.</pre>
<div class="button" onclick="nextPageButtonClicked();">I have read and agree.</div>
</div>
<div id="page2" class="hidden">
<h1>Your Login Data</h1>
<p>If you haven't signed up yet, visit the <a href="http://iotaspam.com/signup" target="_blank">project website</a> to do so. All rewards will be credited to your account first - so you can later request to be paid out to your IOTA wallet.</p>
<hr/>
<input type="text" id="email" placeholder="email address" value="">
<input type="text" id="password" placeholder="password" value="">
<div class="button" onclick="nextPageButtonClicked();">Start Spamming Session!</div>
<hr/>
<label><input type="checkbox" id="use_own_node_list"> use your own node list instead of the one provided by us. <br/></label>
<textarea id="own_node_list" placeholder="http://node1.example.com:12345, http://node2.example.com:14625"></textarea>
<p>Make sure to add at least one node of the protocol you are going to use (<label id="protocol">http or https</label>).</p>
<hr/>
<p>Not every browser supports this spammer. If you encounter problems, chances are that you cannot even run
<a href="https://prizz.github.io/iota-transaction-spammer-webapp/" target="_blank"> the original spammer by Peter Ryszkiewicz</a>. If you can, please contact us!</p>
</div>
<div id="page3" class="hidden">
<div id="stats">
<div class="statbox"><b id="timeSpentSpamming">0</b><label>time spent spamming</label></div>
<div class="statbox"><b id="spamcount">0</b> txs <label>spam created (session)</label></div>
<div class="statbox"><b id="transactionsPerMinuteCount">0</b> txs/min <label>transactions per minute</label></div><br/>
<div class="statbox"><b id="rewarded_txs">N/A</b> txs <label>rewarded transactions</label></div>
<div class="statbox"><b id="confirmed_balance">N/A</b> Ki <label>account balance</label></div>
<div class="statbox"><b id="current_reward">N/A</b> iota/tx<label>current reward</label></div>
</div>
<div class="button" id="stopbutton" onclick="nextPageButtonClicked();">Stop Spamming</div>
<img src="imgs/loading.gif" id="loader" class="hidden" width="40px" height="40px"/>
<label id="waitmsg" class="hidden">Spamming will be stopped right after next PoW is complete.<br/>This will take some seconds, sometimes more than a minute.</label>
<hr/>
<h3>Spamming Log:</h3>
<div id="log"></div>
<!--
<hr/>
<h3>Request Pay-out:</h3>
<input type="text" id="amount" placeholder="amount (in Ki)">
<input type="text" id="address" placeholder="receiving IOTA address">
<div class="button" onclick="">request pay-out</div> -->
</div>
<div id="page4" class="hidden">
<h1>Spamming finished!</h1>
<p>We will keep watching your latest pending transactions for a few more minutes and reward further confirmations. Once you have earned enough IOTAs, can withdraw <a href="http://iotaspam.com/withdraw" target="_blank">here</a>.</p>
<div class="button" onclick="i = 2; $('#page4').addClass('hidden'); nextPageButtonClicked();">New Spamming Session</div>
<hr/>
<h3>Transaction Log:</h3>
<div id="txlog"></div>
</div>
</div>
<div id="pattern_reverse"></div>
<footer>
<p>
<a href="http://iotaspam.com/" target="_blank">→ official project website</a> |
<a href="https://prizz.github.io/iota-transaction-spammer-webapp/" target="_blank">→ original spammer by Peter Ryszkiewicz</a>
</p>
<hr/>
<p>Donate (personal donation, <b>not</b> a Spam Fund donation):</p>
<table>
<tr>
<td> </td>
<td>IOTA</td>
<td> </td>
<td>♥</td>
<td> </td>
<td class="mono">NYMWFUPALGSTLCVNEYTISXNCRPVWEGAHVKEZFSFKSKJXOIRJBDKCYPFKJ9FXIOIXBINEZBZJXCJNMJKT9JQGMSODQZ</td>
</tr>
<tr></tr>
<tr>
<td> </td>
<td>BTC</td>
<td> </td>
<td>♥</td>
<td> </td>
<td class="mono">18JBorM1J99Cr1M488HPLyaN1jxFUrfnMq</td>
</tr>
</table>
<hr/>
<p>Contact us on <b>[email protected]</b></p>
</footer>
<script type="text/javascript" src="js/init.js"></script>
</body>
</html>