-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
419 lines (340 loc) · 15.1 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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
<!DOCTYPE html>
<html>
<head>
<title>Spacehuhn</title>
<meta charset="UTF-8">
<meta name="theme-color" content="#0F141D">
<meta name="viewport" content="width=device-width, initial-scale=0.75, user-scalable=no, minimal-ui">
<meta name="description" content="The one and only Spacehuhn">
<link rel="shortcut icon" type="image/x-icon" href="img/favicon.png">
<link href='css/normalize.css' rel='stylesheet' type='text/css'>
<link href='css/style.css' rel='stylesheet' type='text/css'>
</head>
<body>
<canvas id="sky"></canvas>
<script>
/* Borrowed from here https://codepen.io/AlienPiglet/pen/hvekG */
var c = document.getElementById('sky');
var ctx = c.getContext('2d');
var xMax = c.width = window.screen.availWidth;
var yMax = c.height = window.screen.availHeight;
var hmTimes = Math.round(xMax + yMax);
for (var i = 0; i <= hmTimes; i++) {
var randomX = Math.floor((Math.random() * xMax) + 1);
var randomY = Math.floor((Math.random() * yMax) + 1);
var randomSize = Math.floor((Math.random() * 2) + 1);
var randomOpacityOne = Math.floor((Math.random() * 9) + 1);
var randomOpacityTwo = Math.floor((Math.random() * 9) + 1);
var randomHue = Math.floor((Math.random() * 360) + 1);
if (randomSize > 1) {
ctx.shadowBlur = Math.floor((Math.random() * 15) + 5);
ctx.shadowColor = "white";
}
ctx.fillStyle = "hsla(" + randomHue + ", 30%, 80%, ." + randomOpacityOne + randomOpacityTwo + ")";
ctx.fillRect(randomX, randomY, randomSize, randomSize);
}
</script>
<div id="content">
<!-- ========== HOMEPAGE ========== -->
<div class="page" id="home">
<div id='spacehuhnimage'>
<img src="img/spacehuhn.png" alt="Spacehuhn">
</div>
<h1 id='title'>Spacehuhn</h1>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn"><img src="img/github.png"></a>
<a target="_blank" href="https://www.youtube.com/spacehuhn"><img src="img/youtube.png"></a>
<a target="_blank" href="https://twitter.com/spacehuhn"><img src="img/twitter.png"></a>
<a target="_blank" href="https://discord.gg/7Ay378G"><img src="img/discord.png"></a>
<a target="_blank" href="http://insecurespace.com/"><img src="img/podcast.png"></a>
</div>
<div class='links'>
<a href="#about">About</a>
<a href="#projects">Projects</a>
<a href="#support">Support</a>
</div>
</div>
<hr>
<!-- ========== ABOUT ========== -->
<a href="#home" id="backbutton">Back</a>
<div class="page" id="about">
<div id="profilepic">
<img src="img/gallery/0.jpg" id="spacehuhngallery" alt="Spacehuhn profile picture">
</div>
<p>
Studying computer science.<br>
Hacking around with Arduino and WiFi stuff,<br>
also organizing the Hacker- & Makerspace <a href="https://binhacken.de" target="_blank">/bin/hacken</a>
</p>
<p>
<b>Name: </b><span class="light">Stefan Kremser</span><br>
<b>Email: </b><span class="light"><a href="mailto:[email protected]">[email protected]</a></span><br>
<b>Location: </b><span class="light">Outer space</span><br>
<b>Age: </b><span class=" light">21</span><br>
<b>Languages: </b><span class="light">German, English, C, C++, Java</span><br>
<br>
I'm really bad at answering emails, so unless it's really important or personal,<br>
you're probably better off joining my <a target="_blank" href="https://discord.gg/7Ay378G">Discord community</a> instead<br>
</p>
</div>
<hr>
<!-- ========== PROJECTS ========== -->
<div class="page" id="projects">
<!-- [ ===== HackermanWTF ===== ] -->
<div class="project">
<img class="logo" src="img/hackermanwtf.png" alt="hackermanwtf logo">
<p class="header">Hackman Quote Generator</p>
<p class="description">
Generate your own hackerman quotes<br>
<span class="light"></span>
<br>2019
</p>
<div class='socialmedia'>
<a target="_blank" href="https://hackerman.wtf/"><img src="img/web.png"></a>
<a target="_blank" href="https://twitter.com/hackermanwtf"><img src="img/twitter.png"></a>
<a target="_blank" href="https://github.com/GlOwl/hackerman"><img src="img/github.png"></a>
</div>
</div>
<!-- [ ===== Smart Light ===== ] -->
<div class="project">
<img class="logo" src="img/smartlight.png" alt="deauther logo">
<p class="header">Hacking Smart Light Bulbs</p>
<p class="description">
How to hack ESP8266 based smart light bulbs<br>
<span class="light"></span>
<br>2019
</p>
<div class='socialmedia'>
<a target="_blank" href="https://www.youtube.com/watch?v=_2yjB6T9uC8"><img src="img/youtube.png"></a>
</div>
</div>
<!-- [ ===== SimpleCLI ===== ] -->
<div class="project">
<img class="logo" src="img/simplecli_bright.gif" alt="deauther logo">
<p class="header">Arduino SimpleCLI</p>
<p class="description">
A Command Line Interface Library for Arduino!<br>
<span class="light">
Add commands to your project without hassle.
</span>
<br>2018-2019
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/SimpleCLI"><img src="img/github.png"></a>
<a target="_blank" href="https://www.youtube.com/watch?v=UyW-wICdnKo"><img src="img/youtube.png"></a>
</div>
</div>
<!-- [ ===== WiFi Satellite ===== ] -->
<div class="project">
<img class="logo" src="img/satellite.png" alt="wifisatellite logo">
<p class="header">
WiFi Satellite
</p>
<p class="description">
Monitoring and logging the traffic of all 14 2.4GHz channels.<br>
<span class="light">
14 ESP32 boards, each with an OLED screen and SD card slot<br>
to display and log the 2.4GHz traffic.
</span>
<br>2017-2019
</p>
<div class='socialmedia'>
<a target="_blank" href="https://hackaday.io/project/28831-wifi-satellite-34c3"><img src="img/hackaday.png"></a>
<a target="_blank" href="https://www.youtube.com/watch?v=-q0YnqP5mfk"><img src="img/youtube.png"></a>
</div>
</div>
<!-- [ ===== Deauther ===== ] -->
<div class="project">
<img class="logo" src="img/deauther.png" alt="deauther logo">
<p class="header">ESP8266 Deauther</p>
<p class="description">
Deauthentication attacks and other 'hacks' using an ESP8266.<br>
<span class="light">
Disconnect/Deauths selected WiFi connections continuously.<br>
Other attacks have also been implemented, such as beacon and probe request flooding.
</span>
<br>2017-2019
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/esp8266_deauther"><img src="img/github.png"></a>
<a target="_blank" href="https://www.youtube.com/playlist?list=PLqBJwWDE3G0L7CFkoum4KV6vX-NY8oMXD"><img src="img/youtube.png"></a>
</div>
</div>
<!-- [ ===== PacketMonitor ===== ] -->
<div class="project">
<img class="logo" src="img/packetmonitor.png" alt="PacketMonitor logo">
<p class="header">
PacketMonitor
</p>
<p class="description">
ESP8266 + OLED = WiFi Packet Monitor.<br>
<span class="light">
Did you ever wonder how many data packets are flying around you right now?<br>
This little project tells you how many Wi-Fi packets are send every second on the selected channel.
</span>
<br>2018
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/PacketMonitor"><img src="img/github.png"></a>
<a target="_blank" href="https://youtu.be/RGkqemAGbjU"><img src="img/youtube.png"></a>
</div>
</div>
<!-- [ ===== PacketMonitor32 ===== ] -->
<div class="project">
<img class="logo" src="img/packetmonitor32.png" alt="PacketMonitor32 logo">
<p class="header">
PacketMonitor32
</p>
<p class="description">
ESP32 PacketMonitor + SD card!<br>
<span class="light">
Enhanced PacketMonitor for the ESP32.<br>
It shows you the packets per second on the selected WiFi channel and saves them.
</span>
<br>2017
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/PacketMonitor32"><img src="img/github.png"></a>
<a target="_blank" href="https://youtu.be/7WYakpagPXk"><img src="img/youtube.png"></a>
</div>
</div>
<!-- [ ===== DeauthDetector ===== ] -->
<div class="project">
<img class="logo" src="img/deauthdetector.png" alt="DeauthDetector logo">
<p class="header">
Deauth Detector
</p>
<p class="description">
Detect deauthentication frames using an ESP8266<br>
<span class="light">
Will blink when it detects deauthentication or disassociation frames.<br>
That's all ¯\_(ツ)_/¯.
</span>
<br>2017, 2019
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/DeauthDetector"><img src="img/github.png"></a>
</div>
</div>
<!-- [ ===== WiFi Ducky ===== ] -->
<div class="project">
<img class="logo" src="img/wifiducky.png" alt="WiFi Ducky logo">
<p class="header">WiFi Ducky</p>
<p class="description">
Upload, save and run keystroke injection attacks with an ESP8266 + ATMEGA32U4.<br>
<span class="light">
Wi-Fi controlled 'BadUSB' device to remotely execute Ducky Scripts.
</span>
<br>2017
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/wifi_ducky"><img src="img/github.png"></a>
</div>
</div>
<!-- [ ===== ESP8266 Beacon Spam ===== ] -->
<div class="project">
<img class="logo" src="img/beaconspam.png" alt="esp8266_beaconSpam logo">
<p class="header">ESP8266 Beacon Spam</p>
<p class="description">
Creates up to a thousand fake WiFi access points with custom SSIDs.<br>
<span class="light"></span>
<br>2017
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/esp8266_beaconSpam"><img src="img/github.png"></a>
</div>
</div>
<!-- [ ===== ArduinoPcap ===== ] -->
<div class="project">
<img class="logo" src="img/arduinopcap.png" alt="arduinopcap logo">
<p class="header">Arduino Pcap</p>
<p class="description">
Create and send .pcap files using ESP8266/ESP32 and Arduino.<br>
<span class="light">
Proof of concept library for Arduino to communicate with Wireshark over UART.
</span>
<br>2017
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/ArduinoPcap"><img src="img/github.png"></a>
<a target="_blank" href="https://youtu.be/3Ac6X6ZBQ0g"><img src="img/youtube.png"></a>
</div>
</div>
<!-- [ ===== WiFiKeylogger ===== ] -->
<div class="project">
<img class="logo" src="img/wifikeylogger.png" alt="WiFiKeylogger logo">
<p class="header">WiFi Keylogger</p>
<p class="description">
Arduino Keylogger with Wi-Fi!<br>
<span class="light">
An ATmega32u4 to emulate a keyboard, an USB host shield for getting the keystrokes<br>
and an ESP8266 for storing and retrieving the recorded logs.
</span>
<br>2017
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/wifi_keylogger"><img src="img/github.png"></a>
</div>
<!-- [ ===== WiFiKeylogger ===== ] -->
<div class="project">
<img class="logo" src="img/arpspoof.png" alt="ARP Spoofer logo">
<p class="header">Arduino ARP Spoof</p>
<p class="description">
Kicks out everyone in your LAN!<br>
<span class="light">
Using an Arduino with an ethernet controller, this device will perform an
ARP spoofing attack to block the communication from any client device in your LAN to the gateway.
</span>
<br>2017
</p>
<div class='socialmedia'>
<a target="_blank" href="https://github.com/spacehuhn/ArduinoARPspoof"><img src="img/github.png"></a>
</div>
</div>
</div>
<hr>
<!-- ========== SUPPORT ========= -->
<div class="page" id="support">
<div id="profilepic">
<img src="img/gallery/24.jpg">
</div>
<p id="donationlinks">
<b>Donations</b>
<div class='links'>
<a target="_blank" href="https://liberapay.com/Spacehuhn">liberapay</a>
<a target="_blank" href="https://www.patreon.com/spacehuhn">patreon</a>
<a target="_blank" href="https://paypal.me/spacechicken">Paypal</a>
</div>
Bitcoin: <span class="light" id="btc">1BQJxTfUushL8XrB85E9U75Dpp5EauLm5Y</span><button onclick="copyToClipboard('btc')">copy</button><br>
Litecoin: <span class="light" id="ltc">LhhWdzD4v5ancLZGh7H6YspM1umAnPJCQY</span><button onclick="copyToClipboard('ltc')">copy</button><br>
Ethereum: <span class="light" id="eth">0xd68a76d95C6E8d414fAAcB64E4383485c29CCcCd</span><button onclick="copyToClipboard('eth')">copy</button><br>
<br>
<br>
<b>Deauther Boards - Each purchase supports me</b>
<div class='links'>
<a target="_blank" href="https://www.tindie.com/stores/lspoplove/">Tindie</a>
<a target="_blank" href="https://maltronics.com/">Maltronics</a>
<a target="_blank" href="https://www.aliexpress.com/store/2996024">AliExpress</a>
<a target="_blank" href="https://dstike.com/">DSTIKE</a>
<a target="_blank" href="https://shop135375846.taobao.com">Taobao</a>
</div>
<br>
<br>
<b>Nonprofit Spacehuhn Merchandise</b>
<div class='links'>
<a target="_blank" href="https://www.tindie.com/products/Spacehuhn/spacehuhn-stickers/">Sticker</a>
<a target="_blank" href="https://www.tindie.com/products/davedarko/spacehuhn-blinky-led-badge-kit/">Badge</a>
</div>
<br>
<br>
<b>Affiliate Links</b>
<div class='links'>
<a target="_blank" href="https://amzn.to/2uOGjR8">Amazon US</a>
<a target="_blank" href="https://amzn.to/2JzrffG">Amazon DE</a>
</div>
</p>
</div>
</div>
</body>
<script src="js/space.js"></script>
</html>