-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathP2P.html
More file actions
662 lines (635 loc) · 30.9 KB
/
P2P.html
File metadata and controls
662 lines (635 loc) · 30.9 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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
<!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>Pwn2Play CTF - DMU Hackers Capture The Flag Competition</title>
<meta name="description" content="Pwn2Play is DMU Hackers' flagship Capture The Flag competition. Web exploitation, cryptography, reverse engineering and more. Open to everyone.">
<meta property="og:title" content="Pwn2Play CTF - DMU Hackers">
<meta property="og:description" content="DMU Hackers' flagship CTF competition. Exploit, decrypt, reverse-engineer. Prove you've got what it takes.">
<meta property="og:type" content="website">
<meta property="og:url" content="https://dmuhackers.com/P2P.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">
<meta name="twitter:title" content="Pwn2Play CTF - DMU Hackers">
<meta name="twitter:description" content="DMU Hackers' flagship CTF competition. Exploit, decrypt, reverse-engineer. Prove you've got what it takes.">
<link rel="canonical" href="https://dmuhackers.com/P2P.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/P2P.css">
<link rel="stylesheet" href="css/theme-toggle.css">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "Pwn2Play — Core Incursion",
"description": "DMU Hackers' flagship Capture The Flag competition. Web exploitation, cryptography, reverse engineering and more.",
"startDate": "2026-05-30T09:00:00+01:00",
"eventAttendanceMode": "https://schema.org/MixedEventAttendanceMode",
"eventStatus": "https://schema.org/EventScheduled",
"location": {
"@type": "Place",
"name": "De Montfort University — Gateway House",
"address": { "@type": "PostalAddress", "addressLocality": "Leicester", "addressCountry": "GB" }
},
"organizer": {
"@type": "Organization",
"name": "DMU Hackers",
"url": "https://dmuhackers.com"
},
"isAccessibleForFree": true
}
</script>
</head>
<body>
<!-- Skip to content -->
<a href="#event" 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="#p2p-hero" class="nav__link active" data-section="p2p-hero">Pwn2Play</a></li>
<li><a href="#register" class="nav__link" data-section="register">Register</a></li>
<li><a href="#categories" class="nav__link" data-section="categories">Categories</a></li>
<li><a href="map.html" class="nav__link">Map</a></li>
<li><a href="#prizes" class="nav__link" data-section="prizes">Prizes</a></li>
<li><a href="#rules" class="nav__link" data-section="rules">Rules</a></li>
<li><a href="#sponsors" class="nav__link" data-section="sponsors">Sponsors</a></li>
<li class="nav__mobile-cta"><a href="register.html" class="nav__link nav__link--cta"><i class="fas fa-user-plus"></i> Register</a></li>
</ul>
<div class="nav__actions">
<a href="register.html" class="nav__link nav__link--cta"><i class="fas fa-user-plus"></i> Register</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="p2p-hero" class="hero">
<canvas id="heroCanvas" class="hero__canvas" aria-hidden="true"></canvas>
<div class="hero__bg hero__bg--p2p"></div>
<div class="hero__content">
<p class="hero__tag">DMU Hackers presents</p>
<h1 class="hero__title">Pwn<span class="hero__accent">2</span>Play</h1>
<p class="hero__sub">Our flagship Capture The Flag competition. Open to everyone with teams of up to 6. Exploit, decrypt, reverse-engineer. Prove you've got what it takes.</p>
<!-- Countdown -->
<div class="hero-countdown" id="countdown">
<p class="hero-countdown__until">Core Incursion begins in</p>
<div class="hero-countdown__timer">
<div class="hero-countdown__unit">
<span class="hero-countdown__num" id="cdDays">--</span>
<span class="hero-countdown__label">Days</span>
</div>
<span class="hero-countdown__sep"></span>
<div class="hero-countdown__unit">
<span class="hero-countdown__num" id="cdHours">--</span>
<span class="hero-countdown__label">Hours</span>
</div>
<span class="hero-countdown__sep"></span>
<div class="hero-countdown__unit">
<span class="hero-countdown__num" id="cdMins">--</span>
<span class="hero-countdown__label">Mins</span>
</div>
<span class="hero-countdown__sep"></span>
<div class="hero-countdown__unit">
<span class="hero-countdown__num" id="cdSecs">--</span>
<span class="hero-countdown__label">Secs</span>
</div>
</div>
</div>
<div class="hero__actions">
<a href="register.html" class="btn btn--primary"><i class="fas fa-user-plus"></i> Register Now</a>
<a href="https://discord.gg/ZUqTWNy7c9" class="btn btn--ghost" target="_blank" rel="noopener noreferrer"><i class="fab fa-discord"></i> Discord</a>
<a href="sponsors.html" class="btn btn--ghost"><i class="fas fa-handshake"></i> Become a Sponsor</a>
</div>
</div>
<div class="hero__scroll">
<span>Scroll</span>
<div class="hero__scroll-line"></div>
</div>
</section>
<!-- Event Overview -->
<section id="event" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">The Event</span>
<h2 class="section__title">Pwn2Play: Core Incursion</h2>
</div>
<div class="cards cards--three p2p-meta-cards">
<div class="card p2p-meta-card">
<div class="card__icon"><i class="fas fa-calendar-alt"></i></div>
<h3 class="card__title">Date</h3>
<p class="card__text">Saturday 30th May 2026</p>
</div>
<div class="card p2p-meta-card">
<div class="card__icon"><i class="fas fa-clock"></i></div>
<h3 class="card__title">Time</h3>
<p class="card__text">09:00 – 18:00</p>
</div>
<div class="card p2p-meta-card">
<div class="card__icon"><i class="fas fa-map-marker-alt"></i></div>
<h3 class="card__title">Location</h3>
<p class="card__text">Virtual & DMU Campus</p>
</div>
</div>
<div class="calendar-actions">
<a href="https://www.google.com/calendar/render?action=TEMPLATE&text=Pwn2Play%3A+Core+Incursion+-+DMU+Hackers+CTF&dates=20260530T080000Z/20260530T170000Z&details=DMU+Hackers%27+flagship+Capture+The+Flag+competition.+Register%3A+https%3A%2F%2Fpwn2play.biterra.co&location=Gateway+House+Floor+5%2C+De+Montfort+University%2C+The+Gateway%2C+Leicester+LE1+9BH" class="btn btn--ghost btn--sm" target="_blank" rel="noopener noreferrer"><i class="fab fa-google"></i> Google Calendar</a>
<a href="data/p2p-core-incursion.ics" class="btn btn--ghost btn--sm" download><i class="fas fa-calendar-plus"></i> Download .ics</a>
<a href="map.html" class="btn btn--ghost btn--sm"><i class="fas fa-map-location-dot"></i> Campus Map</a>
</div>
<div class="p2p-connect">
<h3 class="p2p-connect__title">Connect with us</h3>
<div class="p2p-connect__links">
<a href="https://discord.gg/Vvrk4kK" class="p2p-connect__btn" target="_blank" rel="noopener noreferrer">
<i class="fab fa-discord"></i>
<span>Discord</span>
</a>
<a href="register.html" class="p2p-connect__btn">
<i class="fas fa-user-plus"></i>
<span>Register</span>
</a>
</div>
</div>
</div>
</section>
<!-- How to Register -->
<section id="register" class="section section--alt">
<div class="container">
<div class="section__header">
<span class="section__tag">Sign Up</span>
<h2 class="section__title">How to Register</h2>
<p class="section__subtitle">Pwn2Play: Core Incursion is open to everyone, including students, professionals, and hobbyists. Teams can have up to 6 members. Follow our step-by-step guide to create your account, join the event, and form or join a team.</p>
</div>
<div class="cards cards--three p2p-meta-cards">
<div class="card p2p-meta-card">
<div class="card__icon"><i class="fas fa-user-plus"></i></div>
<h3 class="card__title">Register</h3>
<p class="card__text">Create a free account on Biterra</p>
</div>
<div class="card p2p-meta-card">
<div class="card__icon"><i class="fas fa-people-group"></i></div>
<h3 class="card__title">Team Up</h3>
<p class="card__text">Create or join a team of up to 6</p>
</div>
<div class="card p2p-meta-card">
<div class="card__icon"><i class="fas fa-flag-checkered"></i></div>
<h3 class="card__title">Compete</h3>
<p class="card__text">Hack your way to the top</p>
</div>
</div>
<div class="calendar-actions" style="margin-top: 36px;">
<a href="register.html" class="btn btn--primary"><i class="fas fa-arrow-right"></i> View Registration Guide</a>
<a href="https://pwn2play.biterra.co" class="btn btn--ghost" target="_blank" rel="noopener noreferrer"><i class="fas fa-arrow-up-right-from-square"></i> Go to Biterra</a>
</div>
</div>
</section>
<!-- Challenge Categories -->
<section id="categories" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">8 Categories</span>
<h2 class="section__title">Challenge Categories</h2>
<p class="section__subtitle">Something for every skill set. From binary exploitation to open-source intelligence.</p>
</div>
<div class="cards cards--four p2p-cat-cards">
<div class="card p2p-cat-card">
<div class="card__icon"><i class="fas fa-skull-crossbones"></i></div>
<h3 class="card__title">Full Pwn</h3>
<p class="card__text">Complete system takeover. Combine multiple attack vectors to go from zero to root.</p>
</div>
<div class="card p2p-cat-card">
<div class="card__icon"><i class="fas fa-terminal"></i></div>
<h3 class="card__title">Pwn</h3>
<p class="card__text">Binary exploitation. Buffer overflows, format strings, ROP chains - break the binary, get the flag.</p>
</div>
<div class="card p2p-cat-card">
<div class="card__icon"><i class="fas fa-microchip"></i></div>
<h3 class="card__title">Rev</h3>
<p class="card__text">Reverse engineering. Disassemble, decompile, and decode binaries to uncover hidden logic.</p>
</div>
<div class="card p2p-cat-card">
<div class="card__icon"><i class="fas fa-puzzle-piece"></i></div>
<h3 class="card__title">Misc</h3>
<p class="card__text">Anything goes. Steganography, forensics, encoding schemes, or something completely unexpected.</p>
</div>
<div class="card p2p-cat-card">
<div class="card__icon"><i class="fas fa-magnifying-glass"></i></div>
<h3 class="card__title">OSINT</h3>
<p class="card__text">Open-source intelligence. Track down information using publicly available data and digital footprints.</p>
</div>
<div class="card p2p-cat-card">
<div class="card__icon"><i class="fas fa-code"></i></div>
<h3 class="card__title">Code</h3>
<p class="card__text">Programming challenges. Solve algorithmic problems or write scripts under time pressure.</p>
</div>
<div class="card p2p-cat-card">
<div class="card__icon"><i class="fas fa-globe"></i></div>
<h3 class="card__title">Web</h3>
<p class="card__text">Web exploitation. SQL injection, XSS, SSRF, authentication bypasses - hack the web app.</p>
</div>
<div class="card p2p-cat-card">
<div class="card__icon"><i class="fas fa-lock"></i></div>
<h3 class="card__title">Crypto</h3>
<p class="card__text">Cryptography. Break ciphers, exploit weak implementations, and crack the code.</p>
</div>
</div>
</div>
</section>
<!-- Key Info -->
<section id="key-info" class="section section--alt">
<div class="container">
<div class="section__header">
<span class="section__tag">Important</span>
<h2 class="section__title">Key Information</h2>
</div>
<div class="cards cards--two">
<div class="card card--horizontal">
<div class="card__icon"><i class="fas fa-shield-halved"></i></div>
<div>
<h3 class="card__title">Core Incursion // CTF Venue</h3>
<p class="card__text">Gateway House Floor 5<br>De Montfort University<br>The Gateway, Leicester LE1 9BH</p>
</div>
</div>
<div class="card card--horizontal">
<div class="card__icon"><i class="fas fa-wifi"></i></div>
<div>
<h3 class="card__title">WiFi</h3>
<p class="card__text">Student & Guest WiFi will be available. Please bring your own machine. Computers will not be provided.</p>
</div>
</div>
<div class="card card--horizontal">
<div class="card__icon"><i class="fas fa-trophy"></i></div>
<div>
<h3 class="card__title">Awards Event Venue</h3>
<p class="card__text">De Montfort Students' Union<br>Campus Centre Building<br>Mill Ln, Leicester LE2 7DR</p>
</div>
</div>
<div class="card card--horizontal">
<div class="card__icon"><i class="fas fa-utensils"></i></div>
<div>
<h3 class="card__title">Food & Drink</h3>
<p class="card__text">The bar opens after the event from 18:00 onwards for you to purchase drinks.</p>
</div>
</div>
</div>
<div class="calendar-actions" style="margin-top: 32px;">
<a href="map.html" class="btn btn--ghost"><i class="fas fa-map-location-dot"></i> View Campus Map</a>
</div>
</div>
</section>
<!-- Prizes -->
<section id="prizes" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">Rewards</span>
<h2 class="section__title">Prizes</h2>
<p class="section__subtitle">Top three teams in both tracks receive prizes, with extra rewards available for the in-person podium.</p>
</div>
<div class="prizes-layout">
<article class="prize-track">
<div class="prize-track__header">
<div class="prize-track__icon"><i class="fas fa-laptop-code"></i></div>
<div>
<h3 class="prize-track__title">Online</h3>
<p class="prize-track__intro">Remote teams on the podium each receive certificates for every team member.</p>
</div>
</div>
<div class="prize-tier">
<span class="prize-tier__place">1st Place</span>
<ul class="prize-tier__perks">
<li>Certificate for each team member</li>
</ul>
</div>
<div class="prize-tier">
<span class="prize-tier__place">2nd Place</span>
<ul class="prize-tier__perks">
<li>Certificate for each team member</li>
</ul>
</div>
<div class="prize-tier">
<span class="prize-tier__place">3rd Place</span>
<ul class="prize-tier__perks">
<li>Certificate for each team member</li>
</ul>
</div>
</article>
<article class="prize-track prize-track--featured">
<div class="prize-track__header">
<div class="prize-track__icon"><i class="fas fa-building-columns"></i></div>
<div>
<h3 class="prize-track__title">In-Person</h3>
<p class="prize-track__intro">On-campus winners receive certificates, custom challenge coins, and TryHackMe Premium vouchers.</p>
</div>
</div>
<div class="prize-tier">
<span class="prize-tier__place">1st Place</span>
<ul class="prize-tier__perks">
<li>Certificate for each team member</li>
<li>Custom challenge coin for each team member</li>
<li>4x 6-month TryHackMe Premium vouchers</li>
</ul>
</div>
<div class="prize-tier">
<span class="prize-tier__place">2nd Place</span>
<ul class="prize-tier__perks">
<li>Certificate for each team member</li>
<li>Custom challenge coin for each team member</li>
<li>4x 3-month TryHackMe Premium vouchers</li>
</ul>
</div>
<div class="prize-tier">
<span class="prize-tier__place">3rd Place</span>
<ul class="prize-tier__perks">
<li>Certificate for each team member</li>
<li>Custom challenge coin for each team member</li>
<li>4x 1-month TryHackMe Premium vouchers</li>
</ul>
</div>
</article>
</div>
</div>
</section>
<!-- Server Rules -->
<section id="rules" class="section section--alt">
<div class="container">
<div class="section__header">
<span class="section__tag">Read the Rules</span>
<h2 class="section__title">CTF Server Rules</h2>
</div>
<div class="rules-stack">
<div class="rule">
<div class="rule__marker">
<span class="rule__num">01</span>
<div class="rule__line"></div>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fas fa-handshake rule__icon"></i>
<h3 class="rule__title">General Conduct</h3>
</div>
<ul class="rule__list">
<li>Respect all participants, organisers, and the integrity of the competition.</li>
<li>No harassment, discrimination, or toxic behaviour will be tolerated.</li>
<li>Follow all university IT policies and legal regulations.</li>
</ul>
</div>
</div>
<div class="rule">
<div class="rule__marker">
<span class="rule__num">02</span>
<div class="rule__line"></div>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fas fa-server rule__icon"></i>
<h3 class="rule__title">Server & Network Use</h3>
</div>
<ul class="rule__list">
<li>Only interact with CTF challenges and infrastructure — do not target other participants or university systems.</li>
<li>Denial of Service (DoS/DDoS) attacks against the server, network, or participants are strictly prohibited.</li>
<li>Scanning outside the designated CTF scope is forbidden.</li>
</ul>
</div>
</div>
<div class="rule">
<div class="rule__marker">
<span class="rule__num">03</span>
<div class="rule__line"></div>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fas fa-scale-balanced rule__icon"></i>
<h3 class="rule__title">Fair Play & Ethics</h3>
</div>
<ul class="rule__list">
<li>No brute-forcing challenge platforms, flag submission forms, or administrative panels unless explicitly part of a challenge.</li>
<li>Do not share, trade, or leak flags, solutions, or hints to other participants.</li>
<li>No automated tools/scripts that degrade server performance (e.g., aggressive scanning, spamming requests).</li>
</ul>
</div>
</div>
<div class="rule">
<div class="rule__marker">
<span class="rule__num">04</span>
<div class="rule__line"></div>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fas fa-laptop rule__icon"></i>
<h3 class="rule__title">Virtual Participants</h3>
</div>
<ul class="rule__list">
<li>Maintain a stable internet connection and avoid using VPNs/proxies unless required for a challenge.</li>
<li>Keep your credentials secure — do not share your access keys or login information.</li>
<li>Follow organiser instructions in the event of technical issues.</li>
</ul>
</div>
</div>
<div class="rule">
<div class="rule__marker">
<span class="rule__num">05</span>
<div class="rule__line"></div>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fas fa-flag rule__icon"></i>
<h3 class="rule__title">Challenge & Flag Submission</h3>
</div>
<ul class="rule__list">
<li>Flags must be submitted exactly as retrieved, in the expected format.</li>
<li>If a challenge is broken, report it to an admin instead of exploiting it.</li>
<li>The organisers' decisions on challenge validity, scoring, and disputes are final.</li>
</ul>
</div>
</div>
<div class="rule">
<div class="rule__marker">
<span class="rule__num">06</span>
<div class="rule__line"></div>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fas fa-ban rule__icon"></i>
<h3 class="rule__title">Prohibited Actions</h3>
</div>
<ul class="rule__list">
<li>No social engineering, phishing, or attacking other teams' setups.</li>
<li>No modifying, deleting, or tampering with challenge infrastructure.</li>
<li>No use of AI-generated solutions unless explicitly allowed.</li>
</ul>
</div>
</div>
<div class="rule">
<div class="rule__marker">
<span class="rule__num">07</span>
<div class="rule__line"></div>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fas fa-gavel rule__icon"></i>
<h3 class="rule__title">Penalties & Disqualification</h3>
</div>
<ul class="rule__list">
<li>Violating these rules may result in a warning, score reduction, or disqualification.</li>
<li>Severe infractions (e.g., damaging university systems, disrupting the event) may be reported to university authorities.</li>
</ul>
</div>
</div>
<div class="rule">
<div class="rule__marker">
<span class="rule__num">08</span>
<div class="rule__line"></div>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fas fa-life-ring rule__icon"></i>
<h3 class="rule__title">Support & Reporting Issues</h3>
</div>
<ul class="rule__list">
<li>Contact event staff on the designated CTF Discord/Slack channel or help-desk for any issues.</li>
<li>If you encounter a security issue affecting the event, report it responsibly to the organisers.</li>
</ul>
</div>
</div>
<div class="rule">
<div class="rule__marker">
<span class="rule__num">09</span>
</div>
<div class="rule__body">
<div class="rule__header">
<i class="fab fa-discord rule__icon"></i>
<h3 class="rule__title">Discord ToS</h3>
</div>
<ul class="rule__list">
<li>Follow the Discord Terms of Service (ToS) at all times when using the CTF Discord server.</li>
</ul>
</div>
</div>
</div>
</div>
</section>
<!-- After Party -->
<section id="afterparty" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">Keep the night going</span>
<h2 class="section__title">After Party</h2>
</div>
<div class="afterparty">
<div class="afterparty__icon"><i class="fas fa-champagne-glasses"></i></div>
<h3 class="afterparty__heading">Social Route Around Leicester</h3>
<p class="afterparty__text">Following the awards ceremony, join us for a social route around Leicester with a combination of DMU societies. Whether you competed or just want to celebrate, everyone is welcome.</p>
<div class="afterparty__details">
<div class="afterparty__detail">
<i class="fas fa-clock"></i>
<span>After awards ceremony</span>
</div>
<div class="afterparty__detail">
<i class="fas fa-map-pin"></i>
<span>Various venues across Leicester</span>
</div>
<div class="afterparty__detail">
<i class="fas fa-users"></i>
<span>All are invited</span>
</div>
</div>
</div>
</div>
</section>
<!-- Sponsors -->
<section id="sponsors" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">Partners</span>
<h2 class="section__title">Sponsors</h2>
</div>
<div class="sponsors-cta">
<p>Want to sponsor Pwn2Play or get involved?</p>
<a href="sponsors.html" class="btn btn--primary"><i class="fas fa-handshake"></i> Become a Sponsor</a>
</div>
</div>
</section>
<!-- Past Results -->
<section id="podium" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag" id="podiumTag">Results</span>
<h2 class="section__title" id="podiumTitle">Pwn2Play Results</h2>
</div>
<nav class="podium-nav" id="podiumNav" aria-label="Event results navigation"></nav>
<div class="podium" id="podiumContainer"></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="#p2p-hero">Pwn2Play</a>
<a href="#key-info">Key Info</a>
<a href="#prizes">Prizes</a>
</nav>
</div>
<div class="footer__col">
<h4 class="footer__heading">Events</h4>
<nav class="footer__nav" aria-label="Events navigation">
<a href="#podium">Results</a>
<a href="#sponsors">Sponsors</a>
<a href="#afterparty">After Party</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="resources.html">Resources</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>
<!-- Back to top -->
<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>