-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathP2P.html
More file actions
802 lines (766 loc) · 37.9 KB
/
P2P.html
File metadata and controls
802 lines (766 loc) · 37.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
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
<!DOCTYPE html>
<html lang="en">
<head>
<script>if(localStorage.getItem('theme')==='light')document.documentElement.classList.add('light');</script>
<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: Core Incursion is DMU Hackers' flagship student CTF on 30 May 2026, bridging technical challenge practice with industry sponsor visibility.">
<meta property="og:title" content="Pwn2Play CTF - DMU Hackers">
<meta property="og:description" content="A Jeopardy-style CTF for students to validate practical cyber skills and connect with industry sponsors.">
<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="A Jeopardy-style CTF for students to validate practical cyber skills and connect with industry sponsors.">
<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 id="p2p-event-schema" type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Event",
"name": "Pwn2Play: Core Incursion",
"description": "DMU Hackers' flagship student Capture The Flag competition, designed to validate practical cyber skills and give participants visibility with industry sponsors.",
"startDate": "2026-05-30T09:00:00+01:00",
"endDate": "2026-05-30T18:00:00+01:00",
"eventAttendanceMode": "https://schema.org/MixedEventAttendanceMode",
"eventStatus": "https://schema.org/EventScheduled",
"location": {
"@type": "Place",
"name": "Gateway House",
"address": {
"@type": "PostalAddress",
"streetAddress": "Gateway House, Floor 5, De Montfort University, The Gateway, Leicester LE1 9BH",
"addressLocality": "Leicester",
"postalCode": "LE1 9BH",
"addressCountry": "GB"
}
},
"virtualLocation": {
"@type": "VirtualLocation",
"url": "https://pwn2play.biterra.co"
},
"organizer": {
"@type": "Organization",
"name": "DMU Hackers",
"url": "https://dmuhackers.com",
"sameAs": [
"https://twitter.com/dmuhackers",
"https://github.com/DMUHackers",
"https://www.instagram.com/hackers.dmu",
"https://www.linkedin.com/company/dmu-hackers/",
"https://discord.gg/Vvrk4kK"
]
},
"offers": {
"@type": "Offer",
"url": "https://luma.com/embed/event/evt-9baefgwD4wSfcBc/simple",
"price": "0",
"priceCurrency": "GBP",
"availability": "https://schema.org/InStock"
},
"isAccessibleForFree": true
}
</script>
</head>
<body class="p2p-page">
<!-- Skip to content -->
<a href="#p2p-hero" 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="#categories" class="nav__link" data-section="categories">Categories</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>
</ul>
<div class="nav__actions">
<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 p2p-event-hero">
<canvas id="heroCanvas" class="hero__canvas" aria-hidden="true"></canvas>
<div class="hero__bg hero__bg--p2p"></div>
<div class="hero__content p2p-event-hero__content">
<div class="p2p-event-grid p2p-event-grid--hero">
<div class="p2p-event-primary">
<article class="p2p-event-tile p2p-event-tile--headline">
<span class="p2p-event-tile__eyebrow">Core Incursion</span>
<h1 class="hero__title">Pwn<span class="hero__accent">2</span>Play CTF</h1>
<!-- 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>
</article>
<div id="register" class="p2p-luma p2p-luma--hero">
<iframe
src="https://luma.com/embed/event/evt-9baefgwD4wSfcBc/simple"
width="600"
height="450"
frameborder="0"
allow="fullscreen; payment"
aria-hidden="false"
tabindex="0"
title="Register for Pwn2Play: Core Incursion on Luma"></iframe>
</div>
</div>
<div class="p2p-event-details">
<article class="p2p-event-tile p2p-event-tile--brief">
<span class="p2p-event-tile__eyebrow">Pwn2Play: Core Incursion</span>
<h3>Hybrid student CTF for teams of up to 6</h3>
<p>A rigorous Jeopardy-style competition built to validate practical skills and connect emerging cyber talent with industry sponsors.</p>
</article>
<article class="p2p-event-tile p2p-event-tile--stat p2p-event-tile--date">
<i class="fas fa-calendar-alt"></i>
<span>Date & Time</span>
<strong>Saturday 30th May 2026</strong>
<p>09:00 – 18:00</p>
</article>
<article class="p2p-event-tile p2p-event-tile--stat p2p-event-tile--location">
<i class="fas fa-map-marker-alt"></i>
<span>Location</span>
<strong>Virtual & DMU Campus</strong>
<p>In-person competitors will be based at Gateway House, Floor 5.</p>
</article>
<article class="p2p-event-tile p2p-event-tile--stat p2p-event-tile--format">
<i class="fas fa-users"></i>
<span>Format</span>
<strong>Up to 6 members</strong>
<p>Compete online or in person.</p>
</article>
</div>
<article class="p2p-event-tile p2p-event-tile--actions">
<span class="p2p-event-tile__eyebrow">Plan the day</span>
<div class="p2p-event-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%2Fluma.com%2Fembed%2Fevent%2Fevt-9baefgwD4wSfcBc%2Fsimple&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> .ics</a>
<a href="https://pwn2play.biterra.co" class="btn btn--ghost btn--sm" target="_blank" rel="noopener noreferrer"><i class="fas fa-flag"></i> Biterra</a>
<a href="map.html" class="btn btn--ghost btn--sm"><i class="fas fa-map-location-dot"></i> Map</a>
<a href="https://discord.gg/Vvrk4kK" class="btn btn--ghost btn--sm" target="_blank" rel="noopener noreferrer"><i class="fab fa-discord"></i> Discord</a>
</div>
</article>
</div>
</div>
</section>
<!-- Challenge Categories -->
<section id="categories" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">12 Categories, 50 Challenges</span>
<h2 class="section__title">Challenge Categories</h2>
<p class="section__subtitle">A broad challenge set weighted toward web exploitation, with room for reversing, forensics, OSINT, scripting, crypto and fundamentals.</p>
</div>
<div class="cards cards--four p2p-cat-cards" data-p2p-categories>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-globe"></i></div>
<span class="p2p-cat-card__count">15</span>
</div>
<h3 class="card__title">Web Exploitation</h3>
<p class="card__text">SQL injection, XSS, SSRF, authentication bypasses and web logic flaws.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-microchip"></i></div>
<span class="p2p-cat-card__count">7</span>
</div>
<h3 class="card__title">Reverse Engineering</h3>
<p class="card__text">Disassemble, decompile and decode binaries to uncover hidden logic.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-puzzle-piece"></i></div>
<span class="p2p-cat-card__count">7</span>
</div>
<h3 class="card__title">Miscellaneous</h3>
<p class="card__text">Unexpected formats, strange clues and challenge ideas that refuse one label.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-fingerprint"></i></div>
<span class="p2p-cat-card__count">5</span>
</div>
<h3 class="card__title">Forensics</h3>
<p class="card__text">Recover evidence from captures, filesystems, memory, logs and hidden artefacts.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-magnifying-glass"></i></div>
<span class="p2p-cat-card__count">4</span>
</div>
<h3 class="card__title">OSINT</h3>
<p class="card__text">Track down answers through public records, digital footprints and careful research.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-scroll"></i></div>
<span class="p2p-cat-card__count">3</span>
</div>
<h3 class="card__title">Scripting</h3>
<p class="card__text">Automate parsing, brute force paths and transform data under time pressure.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-lock"></i></div>
<span class="p2p-cat-card__count">3</span>
</div>
<h3 class="card__title">Cryptography</h3>
<p class="card__text">Break ciphers, exploit weak implementations and reason about flawed secrecy.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fab fa-linux"></i></div>
<span class="p2p-cat-card__count">2</span>
</div>
<h3 class="card__title">Linux</h3>
<p class="card__text">Navigate shells, permissions, processes and system clues like an operator.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-terminal"></i></div>
<span class="p2p-cat-card__count">1</span>
</div>
<h3 class="card__title">Binary Exploitation</h3>
<p class="card__text">Break compiled targets with memory corruption, control flow and exploit craft.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-skull-crossbones"></i></div>
<span class="p2p-cat-card__count">1</span>
</div>
<h3 class="card__title">Full-Pwn</h3>
<p class="card__text">Chain attack paths from initial access to deeper compromise.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-code"></i></div>
<span class="p2p-cat-card__count">1</span>
</div>
<h3 class="card__title">Code</h3>
<p class="card__text">Solve a focused programming problem with clean logic and fast execution.</p>
</div>
<div class="card p2p-cat-card">
<div class="p2p-cat-card__top">
<div class="card__icon"><i class="fas fa-flag-checkered"></i></div>
<span class="p2p-cat-card__count">1</span>
</div>
<h3 class="card__title">Intro</h3>
<p class="card__text">A first flag to get teams settled into the platform and event flow.</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" data-p2p-key-info>
<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;" data-p2p-action-links>
<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">In-Person Prizes</h2>
<p class="section__subtitle">Challenge Coins and TryHackMe Premium vouchers are reserved for the in-person podium.</p>
</div>
<div class="prizes-showcase" data-p2p-prizes>
<div class="prizes-showcase__intro">
<span class="prizes-showcase__kicker">In-person rewards</span>
<p>In-person podium teams receive formal recognition, a P2P Challenge Coin and TryHackMe Premium time for four team members.</p>
</div>
<div class="prize-podium" aria-label="Pwn2Play in-person prize rewards by placement">
<article class="prize-podium__place prize-podium__place--first">
<span class="prize-podium__rank">1st</span>
<h3>First Place</h3>
<ul class="prize-podium__rewards">
<li><i class="fas fa-certificate"></i> Faculty-signed Certificate</li>
<li><i class="fas fa-coins"></i> P2P Challenge Coin</li>
<li><i class="fas fa-user-shield"></i> 4x 6-month TryHackMe Premium vouchers</li>
</ul>
</article>
<article class="prize-podium__place prize-podium__place--second">
<span class="prize-podium__rank">2nd</span>
<h3>Second Place</h3>
<ul class="prize-podium__rewards">
<li><i class="fas fa-certificate"></i> Faculty-signed Certificate</li>
<li><i class="fas fa-coins"></i> P2P Challenge Coin</li>
<li><i class="fas fa-user-shield"></i> 4x 3-month TryHackMe Premium vouchers</li>
</ul>
</article>
<article class="prize-podium__place prize-podium__place--third">
<span class="prize-podium__rank">3rd</span>
<h3>Third Place</h3>
<ul class="prize-podium__rewards">
<li><i class="fas fa-certificate"></i> Faculty-signed Certificate</li>
<li><i class="fas fa-coins"></i> P2P Challenge Coin</li>
<li><i class="fas fa-user-shield"></i> 4x 1-month TryHackMe Premium vouchers</li>
</ul>
</article>
</div>
<p class="prize-note"><i class="fas fa-award"></i> Online and in-person winners receive a Certificate of Achievement signed by DMU Faculty for LinkedIn and professional portfolios. Challenge Coins and TryHackMe vouchers are awarded to in-person podium teams.</p>
</div>
</div>
</section>
<!-- Scoreboards -->
<section id="scoreboards" class="section section--alt">
<div class="container">
<div class="section__header">
<span class="section__tag">Tracks</span>
<h2 class="section__title">Scoreboard Rules</h2>
<p class="section__subtitle">Choose the right track before you start solving.</p>
</div>
<div class="scoreboard-tracks" data-p2p-scoreboards></div>
</div>
</section>
<!-- Server Rules -->
<section id="rules" class="section">
<div class="container">
<div class="section__header">
<span class="section__tag">Read the Rules</span>
<h2 class="section__title">CTF Server Rules</h2>
<p class="section__subtitle" data-p2p-last-updated></p>
<div class="calendar-actions">
<button class="btn btn--ghost btn--sm" type="button" data-print-rules><i class="fas fa-print"></i> Print Rules</button>
</div>
</div>
<div class="rules-stack" data-p2p-rules>
<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 rule--critical">
<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-triangle-exclamation rule__icon"></i>
<h3 class="rule__title">AI Usage Policy</h3>
</div>
<ul class="rule__list">
<li>AI usage is strictly forbidden in the main event.</li>
<li>Teams found using AI in the main event will be disqualified.</li>
<li>A separate AI-only scoreboard will be available on the Pwn2Play platform for teams who choose to use AI.</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-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">04</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">05</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">06</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">07</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>
</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-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">09</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">10</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>
<p class="section__subtitle">Prize providers and challenge creators supporting Pwn2Play: Core Incursion.</p>
</div>
<div class="sponsor-recruitment" data-p2p-sponsor-cta></div>
<div class="p2p-sponsor-showcase" data-p2p-sponsors>
<div class="p2p-sponsor-band">
<div class="p2p-sponsor-band__header">
<span class="p2p-sponsor-band__eyebrow">Prize Providers</span>
<p>Supporting the winners with prizes that make the competition worth chasing.</p>
</div>
<div class="p2p-sponsor-grid p2p-sponsor-grid--prizes">
<article class="p2p-sponsor-card p2p-sponsor-card--featured">
<a href="https://kit365.co.uk/" class="p2p-sponsor-card__logo" target="_blank" rel="noopener noreferrer">
<img src="img/branding/Kit365/kit365.png" alt="Kit365" loading="lazy">
</a>
<div class="p2p-sponsor-card__body">
<div class="p2p-sponsor-card__meta">
<span><i class="fas fa-trophy"></i> Main Sponsor</span>
<span><i class="fas fa-gift"></i> Prize Provider</span>
</div>
<h3>Kit365</h3>
<p>Kit365 is the primary sponsor of Pwn2Play, providing prizes for the winning teams. Their support helps make our flagship CTF a stronger event for cybersecurity talent.</p>
</div>
</article>
<article class="p2p-sponsor-card">
<a href="https://tryhackme.com/" class="p2p-sponsor-card__logo" target="_blank" rel="noopener noreferrer">
<img src="img/branding/THM/thm.png" alt="TryHackMe" loading="lazy">
</a>
<div class="p2p-sponsor-card__body">
<div class="p2p-sponsor-card__meta">
<span><i class="fas fa-gift"></i> Prize Provider</span>
</div>
<h3>TryHackMe</h3>
<p>TryHackMe is supporting Pwn2Play by providing prizes for our event, helping us reward standout performances and make the competition more exciting for participants.</p>
</div>
</article>
<article class="p2p-sponsor-card">
<a href="https://www.immersivelabs.com/" class="p2p-sponsor-card__logo" target="_blank" rel="noopener noreferrer">
<img src="img/branding/ImmersiveLabs/immersive-logo.svg" alt="Immersive Labs" loading="lazy">
</a>
<div class="p2p-sponsor-card__body">
<div class="p2p-sponsor-card__meta">
<span><i class="fas fa-gift"></i> Prize Provider</span>
</div>
<h3>Immersive Labs</h3>
<p>Immersive Labs is supporting Pwn2Play as a prize provider, helping us reward standout teams while backing practical cyber skills development through realistic, hands-on learning.</p>
</div>
</article>
</div>
</div>
<div class="p2p-sponsor-band p2p-sponsor-band--challenge">
<div class="p2p-sponsor-band__header">
<span class="p2p-sponsor-band__eyebrow">Challenge Creators</span>
<p>Building realistic problems and scenarios for competitors to solve under pressure.</p>
</div>
<div class="p2p-sponsor-grid p2p-sponsor-grid--challenge">
<article class="p2p-sponsor-card">
<a href="https://www.northquayholdings.com/" class="p2p-sponsor-card__logo" target="_blank" rel="noopener noreferrer">
<img src="img/branding/NQ/nq-logo-main.webp" alt="North Quay Holdings" loading="lazy">
</a>
<div class="p2p-sponsor-card__body">
<div class="p2p-sponsor-card__meta">
<span><i class="fas fa-flag"></i> Challenge Creator</span>
</div>
<h3>North Quay Holdings</h3>
<p>North Quay Holdings is a private sector company specialising in all-source intelligence and OSINT. They create challenges for Pwn2Play, helping deliver realistic and engaging CTF experiences.</p>
</div>
</article>
<article class="p2p-sponsor-card">
<a href="https://www.redcentricplc.com/" class="p2p-sponsor-card__logo" target="_blank" rel="noopener noreferrer">
<img src="img/branding/Redcentric/logo.png" alt="Redcentric" loading="lazy">
</a>
<div class="p2p-sponsor-card__body">
<div class="p2p-sponsor-card__meta">
<span><i class="fas fa-flag"></i> Challenge Creator</span>
</div>
<h3>Redcentric</h3>
<p>Redcentric is a managed IT services provider delivering network, cloud, and security solutions. They create challenges for Pwn2Play, bringing industry expertise and real-world scenarios.</p>
</div>
</article>
</div>
</div>
</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="data/site-content.js" defer></script>
<script src="js/main.js" defer></script>
</body>
</html>