-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.html
1867 lines (1861 loc) · 131 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
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
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta property="og:type" content="website">
<meta property="og:title" content="Cyber Discovery" />
<meta property="og:image" content="static/logo.jpg" />
<meta property="og:site_name" content="Cyber Discovery Community" />
<meta property="og:type" content="object" />
<meta property="og:url" content="https://cyberdiscoverycommunity.uk" />
<meta property="og:description" content="We are a large community of students who took part in HMG's Cyber Discovery programme for the UK which ran from 2017-2021." />
<meta name="description" content="We are a large community of students who took part in HMG's Cyber Discovery programme for the UK which ran from 2017-2021.">
<meta name="keywords" content="Cyber Discovery,Discord,Community,GitHub,Projects">
<meta name="author" content="Sh3llcod3">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="theme-color" content="#1b1b21" />
<meta name="referrer" content="origin">
<link rel="stylesheet" href="dist/bundle.css">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Roboto&display=swap" rel="stylesheet">
<link rel="stylesheet" href="static/normalize.min.css" type="text/css">
<script src="dist/bundle.js" defer></script>
<title>Cyber Discovery Community | Home</title>
<link rel="icon" href="static/favicon.png">
<script>
function openLinkHandler(siteLink){
const newWindow = window.open(siteLink, '_blank');
newWindow.opener = null;
newWindow.location = siteLink;
newWindow.focus();
}
</script>
<style>
.justified-text {
text-align: justify;
text-justify: inter-word;
}
</style>
</head>
<body class="mdc-typography">
<header class="mdc-top-app-bar app-bar mdc-top-app-bar--fixed" id="app-bar">
<div class="mdc-top-app-bar__row">
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-start">
<button class="material-icons mdc-top-app-bar__navigation-icon mdc-icon-button">menu</button>
<span class="mdc-top-app-bar__title">Cyber Discovery Community</span>
</section>
<section class="mdc-top-app-bar__section mdc-top-app-bar__section--align-end" role="toolbar">
<button class="material-icons mdc-top-app-bar__action-item mdc-icon-button" id="join-server-btn" aria-label="Join Server">exit_to_app</button>
<div id="additional-menu-anchor" class="mdc-menu-surface--anchor">
<button class="material-icons mdc-top-app-bar__action-item mdc-icon-button" id="additional-menu-btn" aria-label="Options">more_vert</button>
<div class="mdc-menu mdc-menu-surface mdc-menu-surface--fixed" id="additional-menu">
<ul class="mdc-list" role="menu" aria-hidden="true" aria-orientation="vertical" tabindex="-1">
<li class="mdc-list-item" role="menuitem" id="aboutPageMenu">
<span class="mdc-list-item__graphic material-icons additional-menu-item" aria-hidden="true">emoji_people</span>
<span class="mdc-list-item__text">About Us</span>
</li>
<li class="mdc-list-item" role="menuitem" id="switchThemeMenu">
<span class="mdc-list-item__graphic material-icons additional-menu-item" aria-hidden="true">share</span>
<span class="mdc-list-item__text">Copy Link</span>
</li>
<li class="mdc-list-item phone-icon-links" role="menuitem" id="discordInvMenu">
<span class="mdc-list-item__graphic material-icons additional-menu-item" aria-hidden="true">exit_to_app</span>
<span class="mdc-list-item__text">Discord Invite</span>
</li>
</ul>
</div>
</div>
</section>
</div>
</header>
<aside class="mdc-drawer mdc-top-app-bar--fixed-adjust">
<div class="mdc-drawer__header">
<a href="https://discord.cyberdiscoverycommunity.uk">
<img src="https://discordapp.com/api/guilds/409851296116375565/embed.png?style=banner3" class="nav-img-main" alt="Infographic">
</a>
</div>
<div class="mdc-drawer__content">
<nav class="mdc-list">
<h6 class="mdc-list-group__subheader">Information</h6>
<a class="mdc-list-item mdc-list-item--activated" aria-current="page" aria-selected="true" tabindex="0" id="opt0">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">home</i>
<span class="mdc-list-item__text">Home</span>
</a>
<a class="mdc-list-item" id="opt1">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">queue_music</i>
<span class="mdc-list-item__text">Soundboard</span>
</a>
<a class="mdc-list-item" id="opt2">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">event_note</i>
<span class="mdc-list-item__text">Notable Events/Dates</span>
</a>
<a class="mdc-list-item" id="opt3">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">chrome_reader_mode</i>
<span class="mdc-list-item__text">Code Of Conduct</span>
</a>
<a class="mdc-list-item" id="opt4">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">library_books</i>
<span class="mdc-list-item__text">Resources</span>
</a>
<a class="mdc-list-item" id="opt7">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">label</i>
<span class="mdc-list-item__text">Server Roles</span>
</a>
<a class="mdc-list-item" id="opt8">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">help</i>
<span class="mdc-list-item__text">Frequently Asked</span>
</a>
<a class="mdc-list-item" id="opt9">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">description</i>
<span class="mdc-list-item__text">Disclaimer</span>
</a>
<hr class="mdc-list-divider">
<h6 class="mdc-list-group__subheader">Associated Links</h6>
<a class="mdc-list-item" href="https://discord.cyberdiscoverycommunity.uk/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">chat</i>
<span class="mdc-list-item__text">Join Server</span>
</a>
<a class="mdc-list-item" href="https://github.com/CyberDiscovery" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">memory</i>
<span class="mdc-list-item__text">GitHub Page</span>
</a>
<a class="mdc-list-item" href="https://github.com/CyberDiscovery/meta" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">track_changes</i>
<span class="mdc-list-item__text">Suggestions</span>
</a>
<a class="mdc-list-item" href="https://play.google.com/store/apps/details?id=com.danielmilnes.cyberdiscovery" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">cloud_download</i>
<span class="mdc-list-item__text">Download Our App</span>
</a>
<a class="mdc-list-item" href="https://github.com/CyberDiscovery/cyberdiscovery.github.io" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">folder_open</i>
<span class="mdc-list-item__text">Site Source</span>
</a>
<a class="mdc-list-item" href="https://www.redbubble.com/people/TheCultOfLyne/shop" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">local_mall</i>
<span class="mdc-list-item__text">Merchandise</span>
</a>
<hr class="mdc-list-divider">
<h6 class="mdc-list-group__subheader">Legacy Links</h6>
<a class="mdc-list-item" href="https://www.joincyberdiscovery.com/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">web</i>
<span class="mdc-list-item__text">Cyber Discovery</span>
</a>
<a class="mdc-list-item" href="https://www.cyberstartamerica.org/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">person_add</i>
<span class="mdc-list-item__text">CyberStart America</span>
</a>
<a class="mdc-list-item" href="https://cyber-fasttrack.org/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">dvr</i>
<span class="mdc-list-item__text">Cyber FastTrack</span>
</a>
<a class="mdc-list-item" href="https://go.joincyberstart.com/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">insert_chart_outlined</i>
<span class="mdc-list-item__text">CyberStart Go</span>
</a>
<a class="mdc-list-item" href="https://twitter.com/cyberdiscuk" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">insert_comment</i>
<span class="mdc-list-item__text">Twitter Page</span>
</a>
<a class="mdc-list-item" href="https://medium.com/cyber-discovery" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">rss_feed</i>
<span class="mdc-list-item__text">Medium Blog</span>
</a>
<a class="mdc-list-item" href="https://vimeo.com/cyberstart" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">ondemand_video</i>
<span class="mdc-list-item__text">Vimeo</span>
</a>
<hr class="mdc-list-divider">
<h6 class="mdc-list-group__subheader">Similar / Related</h6>
<a class="mdc-list-item" href="https://ractf.co.uk/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">flag</i>
<span class="mdc-list-item__text">RACTF</span>
</a>
<a class="mdc-list-item" href="https://www.ncsc.gov.uk/section/education-skills/11-19-year-olds" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">vertical_split</i>
<span class="mdc-list-item__text">CyberFirst Courses</span>
</a>
<a class="mdc-list-item" href="https://www.cybersecuritychallenge.org.uk/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">assessment</i>
<span class="mdc-list-item__text">Cyber-Challenge UK</span>
</a>
<a class="mdc-list-item" href="https://www.hackthebox.eu/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">computer</i>
<span class="mdc-list-item__text">HackTheBox</span>
</a>
<a class="mdc-list-item" href="https://tryhackme.com/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">security</i>
<span class="mdc-list-item__text">TryHackMe</span>
</a>
<a class="mdc-list-item" href="https://ecsc.eu/" target="_blank" rel="noopener noreferrer">
<i class="material-icons mdc-list-item__graphic" aria-hidden="true">public</i>
<span class="mdc-list-item__text">ECSC</span>
</a>
</nav>
</div>
</aside>
<div class="mdc-drawer-scrim"></div>
<div class="mdc-drawer-app-content mdc-top-app-bar--fixed-adjust">
<main class="main-content" id="main-content">
<div class="site-main-tab" id="site-home-tab">
<div class="mdc-layout-grid">
<div class="mdc-layout-grid__inner">
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline4">Welcome!</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body1">
<p class="first-para-top justified-text">
We are a community of around 4,000 participants who took part in HMG's Cyber Discovery programme which ran in the UK from 2017-2021.
The community is centered around our discord server, which consists of members from an highly talented, diverse range of backgrounds.
</p>
<p class="justified-text">
The focus of our server used to be centered around Cyber Discovery; however, over time the scope of our server evolved as the programme progressed though its lifecycle and was eventually sunset. Now our community hosts a more general student centric chat which leans towards a cyber security crowd but does not exclude other interest areas.
</p>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline4">Who Are We?</h2>
<!--Can't spell 'sus' without 'us' :) -->
</div>
<div class="main-card-body mdc-typography mdc-typography--body1">
<p class="first-para-top justified-text">
At the program's inception, we were high school or A-level students, forming a loosely organized yet cohesive community united by our passion for Cyber Discovery. Over time, our alumni transitioned to university and careers in cybersecurity, with our current active members aged 18-26, primarily based in the US or UK. Throughout its active period, our server hosted a variety of participants, including club leaders, teachers, parents, official staff, and SANS Institute instructors, each contributing to the program at different levels.
</p>
<p class="justified-text">
Our server primarily features former participants from the UK, with some from the US Cyberstart version.
</p>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">Open Source</h3>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline5">Discord Bot</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
This used to be the primary bot for our server. It was used to keep track of dates, challenges, quotes, etc.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" id="bot-repo-btn">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Repo</span>
</button>
</div>
<div class="mdc-card__action-icons">
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="bot-star-btn" title="View Stars">grade</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="bot-fork-btn" title="Fork Project">call_split</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="bot-issue-btn" title="View Issues">view_list</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline5">Main Site</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Cyberdiscoverycommunity.uk - Our main site which is built upon Google's web framework.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" id="site-repo-btn">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Repo</span>
</button>
</div>
<div class="mdc-card__action-icons">
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="site-star-btn" title="View Stars">grade</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="site-fork-btn" title="Fork Project">call_split</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="site-issue-btn" title="View Issues">view_list</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline5">Android App</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Relive the nostalgic memories from 2019 with the unofficial Android app and access the soundboard.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" id="app-repo-btn">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Repo</span>
</button>
</div>
<div class="mdc-card__action-icons">
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="app-star-btn" title="View Stars">grade</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="app-fork-btn" title="Fork Project">call_split</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="app-issue-btn" title="View Issues">view_list</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline5">Maths Bot</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
This discord bot used to get the current weekly maths challenge from the Kings College London.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" id="math-repo-btn">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Repo</span>
</button>
</div>
<div class="mdc-card__action-icons">
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="math-star-btn" title="View Stars">grade</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="math-fork-btn" title="Fork Project">call_split</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="math-issue-btn" title="View Issues">view_list</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline5">Elections Bot</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
When the server was relevant, this bot allowed us to elect moderators from within our members.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" id="elect-repo-btn">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Repo</span>
</button>
</div>
<div class="mdc-card__action-icons">
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="elect-star-btn" title="View Stars">grade</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="elect-fork-btn" title="Fork Project">call_split</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="elect-issue-btn" title="View Issues">view_list</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline5">Rich Presence</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Like all those anime trackers - not maintained anymore, but it used to track your Cyberstart progress.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" id="rich-repo-btn">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Repo</span>
</button>
</div>
<div class="mdc-card__action-icons">
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="rich-star-btn" title="View Stars">grade</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="rich-fork-btn" title="Fork Project">call_split</button>
<button class="material-icons mdc-icon-button mdc-card__action mdc-card__action--icon" id="rich-issue-btn" title="View Issues">view_list</button>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="site-main-tab site-tab-hidden" id="site-soundboard-tab">
<div class="mdc-layout-grid">
<div class="mdc-layout-grid__inner" id="soundboard-cell-inner">
</div>
</div>
</div>
<div class="site-main-tab site-tab-hidden" id="site-dates-tab">
<div class="mdc-layout-grid">
<div class="mdc-layout-grid__inner">
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">UK</h3>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-data-table full-width-element" id="event-dates-table-uk">
<table class="mdc-data-table__table" aria-label="Event Dates">
<thead>
<tr class="mdc-data-table__header-row">
<th class="mdc-data-table__header-cell" role="columnheader" scope="col">Event</th>
<th class="mdc-data-table__header-cell" role="columnheader" scope="col">Date</th>
<th class="mdc-data-table__header-cell" role="columnheader" scope="col">Status</th>
</tr>
</thead>
<tbody class="mdc-data-table__content">
<tr class="mdc-data-table__row">
<td class="mdc-data-table__cell">Cyber Discovery Year 1-4</td>
<td class="mdc-data-table__cell">Q4 2017 - Q2 2021</td>
<td class="mdc-data-table__cell">Finished</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">US</h3>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-data-table full-width-element" id="event-dates-table-us">
<table class="mdc-data-table__table" aria-label="Event Dates">
<thead>
<tr class="mdc-data-table__header-row">
<th class="mdc-data-table__header-cell" role="columnheader" scope="col">Event</th>
<th class="mdc-data-table__header-cell" role="columnheader" scope="col">Date</th>
<th class="mdc-data-table__header-cell" role="columnheader" scope="col">Status</th>
</tr>
</thead>
<tbody class="mdc-data-table__content">
<tr class="mdc-data-table__row">
<td class="mdc-data-table__cell">CyberStart America</td>
<td class="mdc-data-table__cell">2020 - 2023</td>
<td class="mdc-data-table__cell">Finished</td>
</tr>
<tr class="mdc-data-table__row">
<td class="mdc-data-table__cell">Cyber FastTrack America</td>
<td class="mdc-data-table__cell">2020 - 2023</td>
<td class="mdc-data-table__cell">Finished</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div>
</div>
<div class="site-main-tab site-tab-hidden" id="site-coc-tab">
<div class="mdc-layout-grid">
<div class="mdc-layout-grid__inner">
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">Rules</h3>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">No discriminatory or adult content</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Swearing is allowed, so long as it isn’t malicious. Racism, sexism, and any other form of harassment or offensive comment is not permitted and will be met with punishment.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">No Spam</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Spam clogs up the channels, and we will take action if you post a large number of messages in a short period of time or post long messages unnecessarily.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Keep spam or shitposting to #overflow</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
#overflow is still subject to other rules. However, spam, inappropriate discussions, etc to a reasonable extent should be moved here. Mention spam is not acceptable.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Appropriate channels should always be used</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
For example, memes belong in #memes not #general, and discussion of Cyber Discovery challenges belong in the appropriate CyberStart channels.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">No spoilers</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
This server is for Cyber Discovery, but not for spoiling Cyber Discovery. By giving someone else answers you’re ruining the experience for everyone.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">No harassment</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Be it sexual or verbal, harassment is not acceptable. This is any targeted action towards someone else with malicious intent.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">No unauthorised invite links</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
A list of authorised invite links can be found on the <a target="_blank" rel="noopener noreferrer" class="inline-href-link" href="https://github.com/CyberDiscovery/meta/blob/master/RULES.md#authorised-invite-links">meta</a> repository.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">No enticement of illegal activity</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
This is not limited to, but includes acts which may break the Computer Misuse Act.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">Sanctions</h3>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Adult Content/Doxing/Discrimination - Temporary (14 day) / Permanent ban</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
If the content is entirely unsuitable for the server, you will be banned. Doxing someone else is entirely unacceptable as well, as detailed in the doxing rules.
Discriminating someone on the basis of sex, race, etc. will also be met with a ban.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Harassment - Temporary (14 day) / Permanent Ban</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Forms of sexual and verbal harassment are entirely unacceptable. Harassing another member on the server and ruining their experience is wrong,
and, after being judged on a case-by-case basis, will be punished with a temporary or permanent ban.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Repeated Infractions, Consistent Spam - 3 hour mute</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
If you receive 3 such mutes, this will escalate to a temporary ban of duration 7 days. If you make another serious infraction soon after this, you will be permanently banned.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Spam, Reposting Deleted Content - Warning, followed by 1h mute if continued</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Three of these counts as one 3h mute, and further punishments will be given accordingly. The 1 hour duration can be increased to up to 3 hours depending on whether the offence has been repeated or not.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">Information</h3>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-5-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Be Respectful</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2 justified-text">
Other people are on the other side of a screen, and this server is aimed mostly at young people. Different people often feel differently about various remarks. As moderators, we reserve the right to take action if you're explicitly making someone's experience of the server difficult and miserable. We have a zero-tolerance policy on bullying or harassment, and targeting other members of the server with hurtful or offensive remarks is unacceptable, and will lead to mutes or bans.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-7-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Doxing</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2 justified-text">
Do not expose any personal information about other people without express permission.
Personal information is any info pertaining to their identity, e.g. locations, names, contact details - anything that is linked to that person.
Ask the person in question first. Do not do it if you’re not sure. Do not try and find information that can dox someone else either without their permission either.
Releasing your own information means it can be re-quoted. If you say something on the server, unless it is removed then anyone can re-quote it. If you want something deleted, ask a moderator.
Do not harass someone else based on their information. Even if it's publicly linked, ask them
first before posting it in a public channel.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-8-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Reporting a Moderator/Appealing Punishments</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2 justified-text">
If you have a serious complaint to make about a moderator, then DM an @Root in order to get this addressed. Please do not DM unless entirely required.
Do not harass a moderator about decisions they make - we reserve the right to make decisions not covered entirely by these rules if the situation requires it.
Moderators are @Root and @Sudo and are here to answer any queries you may have in DMs. We can also be DMed in order to appeal punishments.
Please note that we are not Cyber Discovery staff - any personal queries regarding the programme should be sent to <b>[email protected]</b>, not us.
If you have any enquiry to make around the above rules, or wish to discuss a punishment or deletion, we will be happy to discuss the exact reasoning in DMs.
Harassing moderators is not acceptable - we are people as well, and any sort of malicious activity towards us, will be met with appropriate punishment.
</div>
</div>
</div>
<div class="mdc-layout-grid__cell mdc-layout-grid__cell--span-4-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone full-width-element">
<div class="mdc-card mdc-card--outlined site-card-small full-width-element">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--subtitle1">Suggesting Changes to the Community</h2>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2 justified-text">
If you feel that something on the server could/should be improved, make an issue on the <a target="_blank" rel="noopener noreferrer" class="inline-href-link" href="https://github.com/CyberDiscovery/meta/">meta repository</a>. This is a platform for constructive discussion around the future of our community - however, this is not the place to appeal punishments or to report moderators so please see below.
Response times for meta issues may vary depending on the time of year and ongoing exams.
</div>
</div>
</div>
</div>
</div>
</div>
<div class="site-main-tab site-tab-hidden" id="site-resources-tab">
<div class="mdc-layout-grid">
<div class="mdc-layout-grid__inner">
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">Practice Challenges</h3>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">OverTheWire</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://overthewire.org</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Wargames offered by the OverTheWire community, which can help you to learn and practice security concepts in the form of fun-filled games.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://overthewire.org');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Hack The Box</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://www.hackthebox.eu</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
A rapidly growing, massively popular online platform with access to a large number of pen-testing labs and machines. Perfect for practical learning.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://www.hackthebox.eu');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">TryHackMe</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://tryhackme.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
TryHackMe is a freemium training platform for learning and teaching pre-built courses using virtual machines to practice various techniques.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://tryhackme.com');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">VulnHub</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://www.vulnhub.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Community generated vulnerable environments, allowing anyone to gain hands-on experience with digital security, computer applications and network administration tasks.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://www.vulnhub.com');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">SmashTheStack</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">http://smashthestack.org</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
An ethical hacking environment that supports the simulation of real world software vulnerabilities and allows the use of exploitation techniques.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('http://smashthestack.org/wargames.html');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Exploit Exercises</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://exploit.education/</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
A variety of challenges to learn about privilege escalation, vulnerability analysis, exploit development, debugging, reverse engineering and more.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://exploit.education/');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">Learn Concepts</h3>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Cybrary</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://www.cybrary.it</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Online cyber security training which you can learn anytime, anywhere with open-source, high quality training from top professionals and companies.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://www.cybrary.it');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Udacity</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://eu.udacity.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
A vast, comprehensive list of free online courses and Nanodegree programmes which range from mastering web design to business tech.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://www.udacity.com/');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">FutureLearn</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://www.futurelearn.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Online courses from top universities and specialist organisations on cyber security and many other topics at no cost.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://www.futurelearn.com');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Real Python</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://realpython.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Learn all things Python from the ground up. Everything from the absolute basics of Python, to web development and web scraping, to data visualization, and beyond.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://realpython.com');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Codecademy</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://www.codecademy.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
An online platform that offers free interactive programming lessons in various different programming languages. Great place to start Python, JS and more.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://www.codecademy.com');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">NSA's COMP3321</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://nsa.sfo2.digitaloceanspaces.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Dive into the deep end and learn Python the hard way by reading NSA's declassified COMP3321 course which covers Python from start to finish in massive depth and detail.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://nsa.sfo2.digitaloceanspaces.com/comp3321.pdf');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Techquickie</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://www.youtube.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Learn the fundamental concepts of computer science explained in a simplified infographic format as quickly as possible in a few minutes.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://www.youtube.com/user/Techquickie/videos');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Learn RE</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://www.begin.re</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
Learn the basics of x86 and get hands-on experience with reverse engineering from scratch. Conceptually useful for binary reversing CTFs.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://www.begin.re');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">CTF Competitions</h3>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">PicoCTF</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://picoctf.com</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
High-school CTF created by DEFCON CTF 4-time winning Carnegie Mellon team PPP where participants must reverse, break, hack and decrypt different challenges.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://picoctf.com');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">RACTF</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://ractf.co.uk</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
RACTF is a student-run, extensible, open-source, capture-the-flag event consisting of many different varieties and difficulty levels of challenges.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://ractf.co.uk');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Reply Challenges</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://challenges.reply.com/</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
A series of CTF challenges and competitions, where participants compete in teams, with frequent events and prizes.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://challenges.reply.com/tamtamy/home.action');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">CTFtime</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://ctftime.org</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
CTF-related info - current overall Capture The Flag team ratings, per-team statistics, upcoming CTFs, CTF writeups and more.
</div>
<div class="mdc-card__actions">
<div class="mdc-card__action-buttons">
<button class="mdc-button mdc-card__action mdc-card__action--button" onclick="openLinkHandler('https://ctftime.org');">
<div class="mdc-button__ripple"></div>
<span class="mdc-button__label">Visit</span>
</button>
</div>
</div>
</div>
</div>
<div class="mdc-layout-grid__cell site-top-section-subheader mdc-layout-grid__cell--span-12-desktop mdc-layout-grid__cell--span-8-tablet mdc-layout-grid__cell--span-4-phone">
<h3 class="mdc-list-group__subheader site-category-subheader">Useful Tools</h3>
</div>
<div class="mdc-layout-grid__cell full-width-element mdc-layout-grid__cell--span-6-desktop mdc-layout-grid__cell--span-4-tablet mdc-layout-grid__cell--span-4-phone">
<div class="mdc-card mdc-card--outlined">
<div class="site-card__primary">
<h2 class="main-card-title mdc-typography mdc-typography--headline6">Replit</h2>
<h3 class="resource-card-subtitle mdc-typography mdc-typography--subtitle2">https://repl.it</h3>
</div>
<div class="main-card-body mdc-typography mdc-typography--body2">
A free, powerful, and simple online compiler, IDE, interpreter, and REPL. Allows you to Code, compile, and run code in 30+ programming languages.
</div>
<div class="mdc-card__actions">