-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathresources.html
More file actions
444 lines (429 loc) · 28.1 KB
/
resources.html
File metadata and controls
444 lines (429 loc) · 28.1 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
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
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
<!DOCTYPE html>
<html lang="en">
<script>if(localStorage.getItem('theme')==='light')document.documentElement.classList.add('light');</script>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Resources - DMU Hackers</title>
<meta name="description" content="Curated cyber security resources, CTF platforms, tools and learning material from DMU Hackers.">
<meta property="og:title" content="Resources - DMU Hackers">
<meta property="og:description" content="Curated cyber security resources, CTF platforms, tools and learning material.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://dmuhackers.com/resources.html">
<meta property="og:image" content="https://dmuhackers.com/img/site-content/logo/1200x630.png">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:image" content="https://dmuhackers.com/img/site-content/logo/1200x628.png">
<meta name="twitter:site" content="@dmuhackers">
<link rel="canonical" href="https://dmuhackers.com/resources.html">
<link rel="icon" href="favicon.ico" type="image/x-icon">
<link rel="apple-touch-icon" sizes="180x180" href="img/site-content/logo/180x180.png">
<link rel="manifest" href="manifest.json">
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preconnect" href="https://cdnjs.cloudflare.com" crossorigin>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css" integrity="sha384-t1nt8BQoYMLFN5p42tRAtuAAFQaCQODekUVeKKZrEnEyp4H2R0RHFz0KWpmj7i8g" crossorigin="anonymous">
<link rel="stylesheet" href="css/main.css">
<link rel="stylesheet" href="css/resources.css">
<link rel="stylesheet" href="css/theme-toggle.css">
</head>
<body>
<a href="#platforms" class="skip-link">Skip to content</a>
<!-- Navigation -->
<nav class="nav" id="navbar">
<div class="nav__inner">
<a href="index.html" class="nav__logo">
<span class="nav__logo-text">DMU Hackers</span>
</a>
<ul class="nav__links" id="navLinks">
<li><a href="index.html" class="nav__link">Home</a></li>
<li><a href="index.html#about" class="nav__link">About</a></li>
<li><a href="P2P.html" class="nav__link">Pwn2Play</a></li>
<li><a href="committee.html" class="nav__link">Committee</a></li>
<li class="nav__mobile-cta"><a href="https://discord.gg/Vvrk4kK" class="nav__link nav__link--cta" target="_blank" rel="noopener noreferrer"><i class="fab fa-discord"></i> Join Us</a></li>
</ul>
<div class="nav__actions">
<a href="https://discord.gg/Vvrk4kK" class="nav__link nav__link--cta" target="_blank" rel="noopener noreferrer"><i class="fab fa-discord"></i> Join Us</a>
<button class="nav__theme-toggle" id="themeToggle" aria-label="Toggle light mode" type="button"><i class="fas fa-sun"></i><i class="fas fa-moon"></i></button>
<button class="nav__toggle" id="navToggle" aria-label="Toggle navigation">
<span></span><span></span><span></span>
</button>
</div>
</div>
</nav>
<!-- Hero -->
<section id="hero" class="hero hero--compact hero--resources">
<canvas id="heroCanvas" class="hero__canvas" aria-hidden="true"></canvas>
<div class="hero__bg"></div>
<div class="hero__content">
<span class="section__tag">Learn</span>
<h1 class="hero__title">Resources</h1>
<p class="hero__sub">Everything you need to start your cyber security journey. Curated platforms, tools and learning material from our members.</p>
</div>
<div class="hero__scroll">
<span>Scroll</span>
<div class="hero__scroll-line"></div>
</div>
</section>
<!-- CTF Platforms -->
<section id="platforms" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">Practice</span>
<h2 class="section__title">CTF Platforms</h2>
<p class="section__subtitle">The best places to practice your skills, from beginner-friendly guided challenges to competitive ranked arenas.</p>
</div>
<div class="resource-grid">
<a href="https://tryhackme.com/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-graduation-cap"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">TryHackMe</h3>
<p class="resource-card__desc">Guided learning paths with browser-based VMs. Perfect for beginners. Start with the "Pre-Security" and "Complete Beginner" paths.</p>
<span class="resource-card__tag">Beginner Friendly</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.hackthebox.com/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-cube"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">Hack The Box</h3>
<p class="resource-card__desc">Realistic penetration testing labs and challenges. The "Starting Point" machines are great for beginners, then move to ranked boxes.</p>
<span class="resource-card__tag">Intermediate</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://picoctf.org/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-flag"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">PicoCTF</h3>
<p class="resource-card__desc">Free CTF platform by Carnegie Mellon. Excellent jeopardy-style challenges covering crypto, forensics, web, binary and more.</p>
<span class="resource-card__tag">Beginner Friendly</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://overthewire.org/wargames/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-terminal"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">OverTheWire</h3>
<p class="resource-card__desc">SSH-based wargames that teach Linux, networking and security fundamentals. Start with "Bandit" to learn the command line.</p>
<span class="resource-card__tag">Beginner Friendly</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://ctftime.org/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-trophy"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">CTFtime</h3>
<p class="resource-card__desc">The global CTF event calendar. Find upcoming competitions, team rankings and writeups from past events.</p>
<span class="resource-card__tag">All Levels</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://portswigger.net/web-security" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-globe"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">PortSwigger Web Academy</h3>
<p class="resource-card__desc">Free interactive labs for web security. Covers SQL injection, XSS, CSRF, SSRF and more. Industry-standard training from the makers of Burp Suite.</p>
<span class="resource-card__tag">Web Security</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.vulnhub.com/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-server"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">VulnHub</h3>
<p class="resource-card__desc">Downloadable vulnerable VMs to practice on your own machine. Great for offline practice and building your home lab.</p>
<span class="resource-card__tag">Intermediate</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://pwn.college/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-microchip"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">pwn.college</h3>
<p class="resource-card__desc">Free education platform from Arizona State University. Structured courses on binary exploitation, reverse engineering and program security.</p>
<span class="resource-card__tag">Binary Exploitation</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
</div>
</div>
</section>
<!-- Tools -->
<section id="tools" class="section section--alt">
<div class="container">
<div class="section__header">
<span class="section__tag">Toolkit</span>
<h2 class="section__title">Essential Tools</h2>
<p class="section__subtitle">The tools we use in sessions and competitions. All free and open source.</p>
</div>
<div class="tools-grid">
<div class="tool-card">
<h3 class="tool-card__name"><i class="fab fa-linux"></i> Kali Linux</h3>
<p class="tool-card__desc">Debian-based distro pre-loaded with hundreds of security tools. The industry standard for penetration testing.</p>
<a href="https://www.kali.org/" class="tool-card__link" target="_blank" rel="noopener noreferrer">kali.org <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-spider"></i> Burp Suite</h3>
<p class="tool-card__desc">Web application security testing toolkit. Intercept, modify and replay HTTP requests. Community edition is free.</p>
<a href="https://portswigger.net/burp" class="tool-card__link" target="_blank" rel="noopener noreferrer">portswigger.net <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-network-wired"></i> Wireshark</h3>
<p class="tool-card__desc">Network protocol analyser. Capture and inspect traffic in real time. Essential for network forensics challenges.</p>
<a href="https://www.wireshark.org/" class="tool-card__link" target="_blank" rel="noopener noreferrer">wireshark.org <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-bug"></i> Ghidra</h3>
<p class="tool-card__desc">NSA's open-source reverse engineering framework. Decompile binaries, analyse malware, solve RE challenges.</p>
<a href="https://ghidra-sre.org/" class="tool-card__link" target="_blank" rel="noopener noreferrer">ghidra-sre.org <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-key"></i> John the Ripper</h3>
<p class="tool-card__desc">Password cracking tool supporting hundreds of hash formats. Pair with wordlists like rockyou.txt for CTF challenges.</p>
<a href="https://www.openwall.com/john/" class="tool-card__link" target="_blank" rel="noopener noreferrer">openwall.com/john <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-database"></i> CyberChef</h3>
<p class="tool-card__desc">GCHQ's "Cyber Swiss Army Knife". Encode, decode, encrypt, hash and analyse data in the browser. A CTF essential.</p>
<a href="https://gchq.github.io/CyberChef/" class="tool-card__link" target="_blank" rel="noopener noreferrer">CyberChef <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-satellite-dish"></i> Nmap</h3>
<p class="tool-card__desc">The gold standard network scanner. Discover hosts, open ports and running services. The first step in almost every pentest.</p>
<a href="https://nmap.org/" class="tool-card__link" target="_blank" rel="noopener noreferrer">nmap.org <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-crosshairs"></i> Metasploit</h3>
<p class="tool-card__desc">The world's most used penetration testing framework. Exploit development, post-exploitation, and payload generation in one toolkit.</p>
<a href="https://www.metasploit.com/" class="tool-card__link" target="_blank" rel="noopener noreferrer">metasploit.com <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-bolt"></i> Hashcat</h3>
<p class="tool-card__desc">GPU-accelerated password recovery tool. Supports 300+ hash types with advanced rule-based and mask attacks.</p>
<a href="https://hashcat.net/hashcat/" class="tool-card__link" target="_blank" rel="noopener noreferrer">hashcat.net <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-magnifying-glass"></i> Gobuster</h3>
<p class="tool-card__desc">Fast directory and DNS brute-forcing tool written in Go. Essential for web enumeration and finding hidden paths on targets.</p>
<a href="https://github.com/OJ/gobuster" class="tool-card__link" target="_blank" rel="noopener noreferrer">GitHub <i class="fas fa-external-link-alt"></i></a>
</div>
<div class="tool-card">
<h3 class="tool-card__name"><i class="fas fa-code"></i> pwntools</h3>
<p class="tool-card__desc">Python library for writing exploits. Makes binary exploitation, shellcode crafting and CTF scripting much easier.</p>
<a href="https://docs.pwntools.com/" class="tool-card__link" target="_blank" rel="noopener noreferrer">docs.pwntools.com <i class="fas fa-external-link-alt"></i></a>
</div>
</div>
</div>
</section>
<!-- Learning Material -->
<section id="learning" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">Study</span>
<h2 class="section__title">Learning Material</h2>
<p class="section__subtitle">Videos, courses and reading material to build your foundations.</p>
</div>
<div class="resource-grid">
<a href="https://www.youtube.com/@_JohnHammond" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fab fa-youtube"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">John Hammond</h3>
<p class="resource-card__desc">CTF walkthroughs, malware analysis and security tutorials. One of the best cyber security YouTubers for hands-on learning.</p>
<span class="resource-card__tag">YouTube</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.youtube.com/@LiveOverflow" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fab fa-youtube"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">LiveOverflow</h3>
<p class="resource-card__desc">Deep dives into binary exploitation, web security and CTF techniques. Excellent for understanding the "why" behind vulnerabilities.</p>
<span class="resource-card__tag">YouTube</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://owasp.org/www-project-top-ten/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-shield-halved"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">OWASP Top 10</h3>
<p class="resource-card__desc">The definitive list of the most critical web application security risks. Essential reading for anyone interested in web security.</p>
<span class="resource-card__tag">Reference</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.youtube.com/@NetworkChuck" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fab fa-youtube"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">NetworkChuck</h3>
<p class="resource-card__desc">Engaging tutorials on networking, Linux, hacking and IT careers. Great for beginners wanting an energetic introduction to cyber security.</p>
<span class="resource-card__tag">YouTube</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://book.hacktricks.wiki/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-book"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">HackTricks</h3>
<p class="resource-card__desc">Comprehensive pentesting wiki. Cheat sheets and methodology for privilege escalation, AD attacks, web exploits and more. Bookmark this one.</p>
<span class="resource-card__tag">Reference</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.youtube.com/@DavidBombal" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fab fa-youtube"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">David Bombal</h3>
<p class="resource-card__desc">Networking and ethical hacking tutorials. Covers Cisco, Python for networking, and interviews with industry professionals.</p>
<span class="resource-card__tag">YouTube</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
</div>
</div>
</section>
<!-- Certifications -->
<section id="certs" class="section section--alt">
<div class="container">
<div class="section__header">
<span class="section__tag">Career</span>
<h2 class="section__title">Certifications</h2>
<p class="section__subtitle">Industry-recognised certifications to boost your career. Many offer student discounts.</p>
</div>
<div class="resource-grid">
<a href="https://www.zeropointsecurity.co.uk/course/red-team-ops" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-crosshairs"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">Red Team Ops (CRTO)</h3>
<p class="resource-card__desc">Hands-on red team certification from Zero Point Security. Covers Cobalt Strike, Active Directory attacks, evasion and C2 infrastructure. Highly practical.</p>
<span class="resource-card__tag">Advanced</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://academy.hackthebox.com/preview/certifications/htb-certified-penetration-testing-specialist" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-cube"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">HTB CPTS</h3>
<p class="resource-card__desc">Hack The Box Certified Penetration Testing Specialist. Hands-on exam covering the full pentest lifecycle from recon to reporting. Respected practical certification.</p>
<span class="resource-card__tag">Advanced</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://learn.microsoft.com/en-us/credentials/certifications/security-operations-analyst/" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fab fa-microsoft"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">Microsoft SC-200</h3>
<p class="resource-card__desc">Security Operations Analyst certification. Covers Microsoft Sentinel, Defender and threat hunting. Great for SOC analyst roles and blue team careers.</p>
<span class="resource-card__tag">Intermediate</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.securityblue.team/certifications/blue-team-level-1" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-eye"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">BTL1 - Blue Team Level 1</h3>
<p class="resource-card__desc">Practical blue team certification covering SIEM, incident response, threat intelligence and digital forensics. Great for defensive security roles.</p>
<span class="resource-card__tag">Intermediate</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.isc2.org/certifications/cc" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-id-badge"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">ISC2 CC</h3>
<p class="resource-card__desc">Free entry-level certification from ISC2. Covers security principles, network security, and incident response. Free training and exam for the first million candidates.</p>
<span class="resource-card__tag">Free / Entry Level</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.ibm.com/training/badge/cybersecurity-fundamentals" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-shield-halved"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">IBM Cybersecurity Fundamentals</h3>
<p class="resource-card__desc">Free foundational badge from IBM covering security concepts, threats, incident response and compliance. A solid starting point for your CV.</p>
<span class="resource-card__tag">Free / Entry Level</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
<a href="https://www.cisco.com/site/us/en/learn/training-certifications/certifications/ethical-hacker/index.html" class="resource-card" target="_blank" rel="noopener noreferrer">
<div class="resource-card__icon"><i class="fas fa-network-wired"></i></div>
<div class="resource-card__body">
<h3 class="resource-card__name">Cisco Ethical Hacker</h3>
<p class="resource-card__desc">Cisco's free ethical hacking certification covering penetration testing methodology, network exploitation and vulnerability assessment with industry-recognised credentials.</p>
<span class="resource-card__tag">Free / Intermediate</span>
</div>
<i class="fas fa-arrow-right resource-card__arrow" aria-hidden="true"></i>
</a>
</div>
</div>
</section>
<!-- Our GitHub -->
<section id="github" class="section section--alt">
<div class="container">
<div class="section__header">
<span class="section__tag">Open Source</span>
<h2 class="section__title">Our GitHub</h2>
</div>
<div class="section-cta">
<p>Past session materials, CTF writeups, challenge files and tools built by our members. Everything is open source.</p>
<a href="https://github.com/DMUHackers" class="btn btn--primary" target="_blank" rel="noopener noreferrer"><i class="fab fa-github"></i> Visit DMUHackers on GitHub</a>
</div>
</div>
</section>
<!-- Footer -->
<footer class="footer">
<div class="container">
<div class="footer__top">
<div class="footer__col">
<div class="footer__brand">
<img src="img/site-content/logo.png" alt="DMU Hackers logo" class="footer__logo" loading="lazy">
<span>DMU Hackers</span>
</div>
<p class="footer__desc">De Montfort University's cyber security society. Hacking, learning, and competing since 2015.</p>
<div class="footer__socials">
<a href="https://twitter.com/dmuhackers" target="_blank" rel="noopener noreferrer" aria-label="Twitter"><i class="fab fa-x-twitter"></i></a>
<a href="https://github.com/DMUHackers" target="_blank" rel="noopener noreferrer" aria-label="GitHub"><i class="fab fa-github"></i></a>
<a href="https://www.instagram.com/hackers.dmu" target="_blank" rel="noopener noreferrer" aria-label="Instagram"><i class="fab fa-instagram"></i></a>
<a href="https://www.linkedin.com/company/dmu-hackers/" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn"><i class="fab fa-linkedin-in"></i></a>
<a href="https://discord.gg/Vvrk4kK" target="_blank" rel="noopener noreferrer" aria-label="Discord"><i class="fab fa-discord"></i></a>
</div>
</div>
<div class="footer__col">
<h4 class="footer__heading">Navigate</h4>
<nav class="footer__nav" aria-label="Footer navigation">
<a href="index.html">Home</a>
<a href="index.html#about">About</a>
<a href="index.html#getting-started">Get Started</a>
<a href="committee.html">Committee</a>
<a href="resources.html">Resources</a>
</nav>
</div>
<div class="footer__col">
<h4 class="footer__heading">Events</h4>
<nav class="footer__nav" aria-label="Events navigation">
<a href="P2P.html">Pwn2Play CTF</a>
<a href="index.html#pwn2play">About P2P</a>
<a href="index.html#facilities">Facilities</a>
</nav>
</div>
<div class="footer__col">
<h4 class="footer__heading">Join</h4>
<nav class="footer__nav" aria-label="Join navigation">
<a href="https://discord.gg/Vvrk4kK" target="_blank" rel="noopener noreferrer">Discord Server</a>
<a href="https://www.demontfortsu.com/organisation/dmuhackers/" target="_blank" rel="noopener noreferrer">DSU Page</a>
<a href="sponsors.html">Sponsors</a>
<a href="partners.html">Partners</a>
</nav>
</div>
</div>
<div class="footer__bottom">
<p class="footer__copy">© 2015–<span id="footerYear"></span> DMU Hackers | Pwning since 2015</p>
<p class="footer__copy footer__copy--subtle">Made with <span class="footer__heart"><3</span> by the committee</p>
</div>
</div>
</footer>
<button class="back-to-top" id="backToTop" aria-label="Back to top">
<i class="fas fa-chevron-up"></i>
</button>
<script src="js/main.js" defer></script>
</body>
</html>