-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy path2025.html
More file actions
1400 lines (1383 loc) · 91.9 KB
/
2025.html
File metadata and controls
1400 lines (1383 loc) · 91.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
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">
<title>Hack Glasgow | 2025 Archive</title>
<meta name="title" content="Hack Glasgow | 2025 Archive" />
<meta name="description" content="A hacker conference for the community, by the community based in Glasgow. Next scheduled for 25th April 2026.">
<meta property="og:type" content="website" />
<meta property="og:url" content="https://hackglasgow.live/" />
<meta property="og:title" content="Hack Glasgow | 2025 Archive" />
<meta property="og:description" content="A hacker conference for the community, by the community based in Glasgow. Next scheduled for 25th April 2026." />
<meta property="og:image" content="https://hackglasgow.live/img/metatag.png" />
<meta property="twitter:card" content="summary_large_image" />
<meta property="twitter:url" content="https://hackglasgow.live" />
<meta property="twitter:title" content="Hack Glasgow | 2025 Archive" />
<meta property="twitter:description" content="A hacker conference for the community, by the community based in Glasgow. Next scheduled for 25th April 2026." />
<meta property="twitter:image" content="https://hackglasgow.live/img/metatag.png" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" type="image/png" href="/favicon/favicon-96x96.png" sizes="96x96" />
<link rel="icon" type="image/svg+xml" href="/favicon/favicon.svg" />
<link rel="shortcut icon" href="/favicon/favicon.ico" />
<link rel="apple-touch-icon" sizes="180x180" href="/favicon/apple-touch-icon.png" />
<meta name="apple-mobile-web-app-title" content="HackGlasgow" />
<link rel="manifest" href="/favicon/site.webmanifest" />
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css" defer/>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link rel="preload" as="image" href="img/hg-logotxt.webp" fetchpriority="high" type="image/webp">
<link rel="preload" as="image" href="img/hg-hero-2025-bg.png" fetchpriority="high" type="image/png">
<link rel="preload" as="image" href="img/2025-archive.png" fetchpriority="high" type="image/png">
<link rel="preload" href="css/venobox.css" as="style" onload="this.onload=null;this.rel='stylesheet'">
<noscript><link rel="stylesheet" href="css/venobox.css"></noscript>
<link href="css/base.css" rel="stylesheet" type="text/css" media="all"/>
<link href="https://fonts.googleapis.com/css?family=Work+Sans:300,500,700&display=swap" rel="stylesheet">
<script src="https://kit.fontawesome.com/f07cc94742.js" crossorigin="anonymous"></script>
</head>
<body>
<div class="loader">
<div class="loader-inner">
<svg width="120" height="220" viewbox="0 0 100 100" class="loading-spinner" version="1.1" xmlns="http://www.w3.org/2000/svg">
<circle class="spinner" cx="50" cy="50" r="21" fill="#111111" stroke-width="1.5"/>
</svg>
</div>
</div>
<div class="wrapper">
<section class="hero overlay">
<div class="main-slider slider">
<ul class="slides">
<li>
<div class="inner-hero fade-out f0123" style="background-image: url('img/hg-hero-2025-bg.png');">
<div class="container hero-content">
<div class="row vertical-align tickets">
<img src="img/2025-archive.png" alt="welcome text reading welcome to hack glasgow">
</div>
</div>
</div>
</li>
</ul>
</div>
<header class="header">
<div class="container ">
<div class="row">
<div class="col-md-2">
<a class="scroll logo" href="#wrapper">
<img src="img/hg-logotxt.webp">
</a>
</div>
<div class="col-md-10 text-right">
<nav class="main-nav">
<div class="toggle-mobile-but">
<a href="#" class="mobile-but" >
<div class="lines"></div>
</a>
</div>
<ul>
<li><a href="/" name="navigation menu item home">Home</a></li>
<li><a href="/cfp" target="_blank" alt="navigation menu item speaker">CFP</a></li>
<li><a href="/sponsor" alt="navigation menu item sponsor">Sponsor</a></li>
<li><a href="/tickets" target="_blank" alt="navigation menu item tickets">Tickets</a></li>
<li><a href="/schedule" target="_blank" alt="navigation menu item schedule">Schedule</a></li>
<li><a href="/stats" alt="navigation menu item faq">Stats</a></li>
<li><a href="/2025" alt="navigation menu item 2025">2025</a></li>
</ul>
</nav>
</div>
</div>
</div>
</header>
</section>
<section id="2025-overview" class="about pt-20 pb-60">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-50 text-center">
<h1 class="title">Our (sell out) debut event</h1>
<p class="title-lead mt-20">After much success running the informal infosec meetup <a href="https://hackthurs.day" target="_blank" class="gradient-text link">Hack Thursday</a> we decided it was time to run a larger-scale conference in April 2025: "Hack Glasgow". With our organisers having benefited from attending, speaking at, organising, MCing, or volunteering at many BSides and other conferences in England, we felt it was time Scotland had its own community infosec conference - and we weren't wrong.</p>
<p class="title-lead mt-20">Thanks to the overwhelming positive feedback from attendees, sponsors, crew, speakers, and even the event staff, it's clear Hack Glasgow 2025 was not only a success, but a staple part of the infosec community for many years to come.</p>
<p class="title-lead mt-10">A full transparency report of the event is available to <a href="https://transparency.hackglasgow.live" class="gradient-text link" target="_blank"> view here</a>.</p>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-md-offset-3 col-md-3 col-sm-3">
<div class="block-info-1">
<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="35px" height="25px" viewBox="0 0 42 32" enable-background="new 0 0 42 32" xml:space="preserve">
<linearGradient id="SVGID_1_" gradientUnits="userSpaceOnUse" x1="5.1983" y1="28.1187" x2="43.4067" y2="11.702">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_1_)" d="M38,30.5v-19c0-0.276-0.224-0.5-0.5-0.5S37,11.224,37,11.5v19c0,0.276-0.224,0.5-0.5,0.5h-31
C5.224,31,5,30.776,5,30.5v-19C5,11.224,4.776,11,4.5,11S4,11.224,4,11.5v19C4,31.327,4.673,32,5.5,32h31
C37.327,32,38,31.327,38,30.5z"/>
<linearGradient id="SVGID_2_" gradientUnits="userSpaceOnUse" x1="4.7162" y1="26.9965" x2="42.9245" y2="10.5799">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_2_)" d="M8.5,23C8.224,23,8,23.224,8,23.5S8.224,24,8.5,24H10v3.5c0,0.276,0.224,0.5,0.5,0.5
s0.5-0.224,0.5-0.5V24h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24
h6v3.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V24h1.5c0.276,0,0.5-0.224,0.5-0.5S33.776,23,33.5,23H32v-5h1.5
c0.276,0,0.5-0.224,0.5-0.5S33.776,17,33.5,17H32v-4.5c0-0.276-0.224-0.5-0.5-0.5S31,12.224,31,12.5V17h-6v-4.5
c0-0.276-0.224-0.5-0.5-0.5S24,12.224,24,12.5V17h-6v-4.5c0-0.276-0.224-0.5-0.5-0.5S17,12.224,17,12.5V17h-6v-4.5
c0-0.276-0.224-0.5-0.5-0.5S10,12.224,10,12.5V17H8.5C8.224,17,8,17.224,8,17.5S8.224,18,8.5,18H10v5H8.5z M31,18v5h-6v-5H31z
M24,18v5h-6v-5H24z M11,18h6v5h-6V18z"/>
<linearGradient id="SVGID_3_" gradientUnits="userSpaceOnUse" x1="-0.4811" y1="14.9003" x2="37.7272" y2="-1.5164">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_3_)" d="M32.5,3h4.25C36.837,3,37,3,37,3.5V8H5V3.5C5,3.224,5.224,3,5.5,3h4C9.776,3,10,2.776,10,2.5
S9.776,2,9.5,2h-4C4.673,2,4,2.673,4,3.5v5C4,8.776,4.224,9,4.5,9h33C37.776,9,38,8.776,38,8.5v-5C38,2.394,37.354,2,36.75,2H32.5
C32.224,2,32,2.224,32,2.5S32.224,3,32.5,3z"/>
<linearGradient id="SVGID_4_" gradientUnits="userSpaceOnUse" x1="-1.6311" y1="12.2237" x2="36.5772" y2="-4.1929">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_4_)" d="M26.5,3C26.776,3,27,2.776,27,2.5S26.776,2,26.5,2h-11C15.224,2,15,2.224,15,2.5S15.224,3,15.5,3
H26.5z"/>
<linearGradient id="SVGID_5_" gradientUnits="userSpaceOnUse" x1="-2.9557" y1="9.1407" x2="35.2526" y2="-7.2759">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_5_)" d="M13,4.5v-4C13,0.224,12.776,0,12.5,0S12,0.224,12,0.5v4C12,4.776,12.224,5,12.5,5S13,4.776,13,4.5z"
/>
<linearGradient id="SVGID_6_" gradientUnits="userSpaceOnUse" x1="-0.3065" y1="15.3067" x2="37.9019" y2="-1.11">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_6_)" d="M29.5,5C29.776,5,30,4.776,30,4.5v-4C30,0.224,29.776,0,29.5,0S29,0.224,29,0.5v4
C29,4.776,29.224,5,29.5,5z"/>
</svg>
<p>
<strong>DATE</strong>
<span>Saturday 26th April 2025</span>
</p>
</div>
</div>
<div class=" col-md-3 col-sm-3">
<div class="block-info-1">
<svg version="1.1" id="Layer_7" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
width="35px" height="25px" viewBox="0 0 42 32" enable-background="new 0 0 42 32" xml:space="preserve">
<linearGradient id="SVGID_7_" gradientUnits="userSpaceOnUse" x1="4.511" y1="11.8158" x2="41.3229" y2="27.6695">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_7_)" d="M10.239,31.926c0.009,0.006,0.021,0.003,0.03,0.009C10.341,31.973,10.418,32,10.499,32
c0.044,0,0.088-0.006,0.132-0.018l10.868-2.966l10.868,2.966C32.411,31.994,32.455,32,32.499,32c0.082,0,0.158-0.027,0.23-0.065
c0.01-0.005,0.021-0.003,0.03-0.009l9-5.5c0.191-0.117,0.281-0.348,0.22-0.563l-4.984-17.5c-0.041-0.147-0.148-0.267-0.29-0.326
c-0.142-0.057-0.301-0.048-0.436,0.026l-4.962,2.784c-0.24,0.135-0.326,0.44-0.191,0.681c0.135,0.242,0.439,0.327,0.682,0.191
l4.409-2.475l4.707,16.526l-8.015,4.898l-1.904-15.231c-0.034-0.275-0.293-0.466-0.559-0.434c-0.273,0.034-0.468,0.284-0.434,0.558
l1.907,15.259L22,28.115v-2.73c0-0.276-0.224-0.5-0.5-0.5s-0.5,0.224-0.5,0.5v2.73l-9.911,2.705l1.907-15.259
c0.034-0.274-0.16-0.524-0.434-0.558c-0.272-0.032-0.524,0.159-0.559,0.434l-1.904,15.231L2.084,25.77L6.791,9.244l4.409,2.475
c0.242,0.134,0.546,0.049,0.682-0.191c0.135-0.241,0.049-0.545-0.191-0.681L6.729,8.063C6.595,7.988,6.436,7.979,6.293,8.037
c-0.142,0.059-0.249,0.178-0.29,0.326l-4.984,17.5c-0.062,0.216,0.028,0.446,0.22,0.563L10.239,31.926z"/>
<linearGradient id="SVGID_8_" gradientUnits="userSpaceOnUse" x1="12.6241" y1="7.5582" x2="28.5468" y2="14.4156">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_8_)" d="M21.161,23.367c0.096,0.088,0.217,0.132,0.339,0.132c0.12,0,0.24-0.043,0.336-0.129
C22.169,23.067,30,15.882,30,8.499c0-4.767-3.733-8.5-8.5-8.5S13,3.732,13,8.499C13,15.753,20.828,23.059,21.161,23.367z
M21.5,0.999c4.275,0,7.5,3.224,7.5,7.5c0,6.097-5.993,12.337-7.497,13.807C20.002,20.819,14,14.497,14,8.499
C14,4.223,17.225,0.999,21.5,0.999z"/>
<linearGradient id="SVGID_9_" gradientUnits="userSpaceOnUse" x1="17.3671" y1="6.7191" x2="25.6329" y2="10.2789">
<stop offset="0" style="stop-color:#399BFF"/>
<stop offset="1" style="stop-color:#EE71F9"/>
</linearGradient>
<path fill="url(#SVGID_9_)" d="M26,8.499c0-2.481-2.019-4.5-4.5-4.5S17,6.018,17,8.499s2.019,4.5,4.5,4.5S26,10.98,26,8.499z
M21.5,11.999c-1.93,0-3.5-1.57-3.5-3.5s1.57-3.5,3.5-3.5s3.5,1.57,3.5,3.5S23.43,11.999,21.5,11.999z"/>
</svg>
<p>
<strong>LOCATION</strong>
<span>Platform Glasgow, G2 8DL</span>
</p>
</div>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center mt-50">
<div class="col-md-2 col-sm-2 ">
<div class="block-sponsor">
<img src="img/2025-sponsor-idcyber.webp" alt="">
</div>
</div>
<div class="col-md-2 col-sm-2">
<div class="block-sponsor">
<img src="img/2025-sponsor-admiral.webp" alt="">
</div>
</div>
<div class="col-md-2 col-sm-2">
<div class="block-sponsor">
<img src="img/2025-sponsor-dgs.webp" alt="">
</div>
</div>
<div class="col-md-2 col-sm-2">
<div class="block-sponsor">
<img src="img/2025-sponsor-ps.webp" alt="">
</div>
</div>
<div class="col-md-2 col-sm-2">
<div class="block-sponsor">
<img src="img/2025-sponsor-cytix.webp" alt="">
</div>
</div>
<div class="col-md-2 col-sm-2">
<div class="block-sponsor">
<img src="img/2025-sponsor-ksec.webp" alt="">
</div>
</div>
</div>
</div>
</div>
</section>
<section id="speakers" class="speakers pt-120 brd-bottom">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<h1 class="title">Speakers</h1>
<p class="title-lead mt-10">Hack Glasgow was delighted to welcome 16 incredible speakers, delivering 15 talks at our 2025 event. Without them, Hack Glasgow 2025 wouldn't have been nearly as much of a success - thanks to all of them for speaking.</p>
</div>
</div>
</div>
<div class="block-content">
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-cary.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Cary Hendricks</strong>
</p>
<ul class="block-social">
<li><a href="https://www.linkedin.com/in/figjam/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-mark.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Mark Saunders</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/mark-saunders-9473a624/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-calum.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Calum Baird</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/calum-baird/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-jamesmcgoldrick.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>James McGoldrick</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/james-mcg/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-michael.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Michael Whitehead</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/michael-whitehead-0x0/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=iOEU-LScOFc&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=2" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-rosie.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Rosie Anderson</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/rosieladycyber/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-liam.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Liam Follin</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/liam-follin/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=i4IzoJQdPhM&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=3" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-santi.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Santi Abastante</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/sabastante/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-lennaert.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Lennaert Oudshoorn</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/lennaertoudshoorn/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=EqAE6Xxf2VA&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=4" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-maya.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>maya boeckh</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/maya-boeckh/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=prW_VDYZJZM&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=5" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-andrew.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Andrew Finlayson</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/andrew-finlayson-431b60184/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-jamesbore.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>James Bore</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/jbore/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=RcA5XW0GWm4&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=6" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-tom.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Tom Blue</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/tom-blue/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=Edok8PRKk3c&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=7" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-alana.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Alana Witten</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/alana-witten-b5753a225/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=Edok8PRKk3c&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=7" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-arohi.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Arohi Naik</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/arohi-naik/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=QorQwSH7mkk&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=8" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-speaker-ian.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Ian Thornton-Trump</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/ian-thornton-trump-cd-77473a26/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
<li><a href="https://www.youtube.com/watch?v=sT0j7VL14Ok&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq&index=9" target="_blank"><i class="fa-brands fa-youtube"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-4 col-xs-12 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-youtube-playlist.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Watch the full 2025 playlist <a href="https://www.youtube.com/watch?v=dJhmtF_ZX6U&list=PL5HAhh4PPAFfULxYGE7yO4wbNUtK_G5sq" class="gradient-text link" target="_blank">here</a></strong>
</p>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="crew" class="speakers pt-120 brd-bottom">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-100 text-center">
<h1 class="title">Crew</h1>
<p class="title-lead mt-10">Volunteers are the lifeblood of any community conference, and Hack Glasgow was no different. Each of these wonderful pink hi-vis wearing humans donated their time, skills, and passion to make Hack Glasgow 2025 a success and for that, they have our gratitude.</p>
</div>
</div>
</div>
<div class="block-content">
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-grom.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>grom</strong>
</p>
<ul class="block-social">
<li><a href="https://www.linkedin.com/in/grommoss/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-rosie.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Rosie</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/rosieladycyber/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-sam.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Sam</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/safesecs/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-roachy.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Roachy</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/paul-r-a0aa698/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-maya.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>maya</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/maya-boeckh/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-eilidh.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>eilidh</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/eilidh-h-ratcliffe-080035197/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-geo.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>geo</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/john-d-4326881a0/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-paul.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Paul</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/paul-stewart-tecc/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-mike.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Mike</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/michael-whitehead-0x0/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-mel.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Mel</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/melanie-scott-4a23bb198/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-zafrin.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Zafrin</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/zafrin-malek-mithila/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-colin.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Colin</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/colin-mckay-campbell-161479166/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-sarah.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Sarah</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/sarah-williams-anguasec/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-jon.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Jon</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/boredcyber/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-kit.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Kit</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/kitaljard/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-jason.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Jason</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/jasonhalley/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-jamie.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Jamie</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/j-dunbar/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
<div class="col-sm-2 col-xs-6 pd-0">
<div class="block-speaker">
<div class="block-img overlay soft">
<div class="background-img">
<img src="img/2025-crew-anthony.webp" alt="">
</div>
<div class="block-info-2">
<p>
<strong>Anthony</strong>
</p>
<ul class="block-social ">
<li><a href="https://www.linkedin.com/in/anthony-m-sanders/" target="_blank"><i class="fa-brands fa-linkedin"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</div>
</section>
<section id="schedule" class="schedule pt-120 pb-120">
<div class="container">
<div class="row">
<div class="col-sm-8 col-sm-offset-2 mb-20 text-center">
<h1 class="title">2025 Schedule</h1>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-12">
<h3 class="sub-title-0 mb-25"><span class="gradient-text">Conference Tracks</span></h3>
</div>
</div>
</div>
<div class="container">
<div class="row">
<div class="col-sm-4 ">
<ul class="block-tabs">
<li class="active"><strong>Platform 1</strong></li>
<li class=""><strong>Platform 2</strong></li>
</ul>
<a class="link mt-20 gradient-text link" href="https://drive.google.com/file/d/1Q2rQ9a3oHF9GknRUdah8ek-76LYcUdjv/view?usp=drive_link" target="_blank">View the 2025 programme</a>
</div>
<div class="col-sm-8 ">
<ul class="block-tab">
<li class="active ">
<div class="block-date"><strong>Platform 1</strong></div>
<div class="block-detail">
<span class="time">09:00 - 09:45</span>
<span class="topic">Doors Open & Registration</span>
</div>
<div class="block-detail">
<span class="time">09:45 - 10:00</span>
<span class="topic">Opening remarks</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">Hack Glasgow organisers</a> </span>
</div>
<div class="block-detail">
<span class="time">10:00 - 11:00</span>
<span class="topic">Hacking things with AI stuff</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">Cary Hendricks</a> </span>
<div class="block-text">
<p>Threat or treat? Can the boom in AI make security easier or much harder? Exploring how you can start in your decisions and see the wonderful world of hacking with AI.</p>
</div>
</div>
<div class="block-detail">
<span class="time">11:30 - 12:00</span>
<span class="topic">Securing Values: The Ethics of Cyber Security</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">Michael Whitehead</a> </span>
<div class="block-text">
<p>Security isn't a game and it's not about playing God - every action we take can have a human cost. This talk walks the ethical tightrope of cyber security: the dangers of bias, the lure of control, and the responsibility to act with integrity; let's talk about where to tread, and how to avoid the missteps that could tip us off-balance.</p>
</div>
</div>
<div class="block-detail">
<span class="time">12:00 - 13:00</span>
<span class="topic">Lunch</span>
</div>
<div class="block-detail">
<span class="time">13:00 - 14:00</span>
<span class="topic">How to get away with hacking</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">Liam Follin</a> </span>
<div class="block-text">
<p>You see it on LinkedIn all the time. "Here's how you break into cyber..." followed by a list of resources longer than the average Christmas shopping receipt. Half the resources on the list are questionable at best, and there is no structure whatsoever. Then, the few poor souls who do actually grind their way through this arduous mountain of content, end up in an interview and realise that they're missing large portions of key knowledge.</p>
<p>This talk follows the paths of multiple people into the pentesting industry, from traditional degrees, to marine biology, to apprenticeships, and everything in between. There's more than one way to skin a cat, and contrived one-size-fits-all approaches are out of date - over the course of 50 minutes we will follow 4 from zero to hero.</p>
<p>Attendees can expect an honest summary of the pentesting industry - and it's not all sunshine and rainbows. We'll go through an average day in the life, a summary of the professional qualifications you'll need (and the ones you won't), alongside the mentality you need to survive as a hacker for hire.</p>
</div>
</div>
<div class="block-detail">
<span class="time">14:00 - 14:30</span>
<span class="topic">Getting started in bug bounty, from picking a program to getting your first report triaged</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">Lennaert Oudshoorn</a> </span>
<div class="block-text">
<p>In this talk we will dive head first in to the first few steps as an aspiring bug bounty hunter, practical tips around selecting which programs to hack on, which approach to take to finding bugs, and how to write a clear report that sails through triage. The session contains many practical tips around the non-technical aspects of this but will also try to give some technical insights the listeners can directly apply to their bug hunting.</p>
</div>
</div>
<div class="block-detail">
<span class="time">14:30 - 15:00</span>
<span class="topic">Yelling at the people and/or the thinking sand isn't helping</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">maya boeckh</a> </span>
<div class="block-text">
<p>The story so far: In the 60's we taught sand how to think. This has made a lot of (very specific) people very angry and been widely (by very specific people) regarded as a bad move.</p>
<p>So humanity taught sand how to think, and now we're stuck fulfilling JIRA tickets. Not exactly what we expected, as we thought the computer would solve all our problems, not make more of them. Such is the irony of the torment nexus.</p>
<p>Memes aside, I wish to talk about the shift in technical literacy, the availability of "too many solutions", the erosion of knowledge, and how it affects the daily lives of people trying to solve the improbable and spectacular problems spawning at the magical intersection of computers and people.</p>
</div>
</div>
<div class="block-detail">
<span class="time">15:00 - 15:30</span>
<span class="topic">Break</span>
</div>
<div class="block-detail">
<span class="time">15:30 - 16:00</span>
<span class="topic">Blame the Parents</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">James Bore</a> </span>
<div class="block-text">
<p>Why does our whole industry even exist when we've known for decades how to build secure systems?</p>
<p>Why is there so much investment into the industry, and could this possibly be the cause?</p>
<p>Why is there so much marketing based on fear, uncertainty, and doubt?</p>
<p>Why do so many old timers in the industry seem so, so angry, bitter, or cynical all the time?</p>
<p>Find out all the answers in this talk. What's been going wrong for the last eighty years. Why there's no incentive to improve things. Why the Luddites had a really good point (and, of course, what happened to them and is likely to happen to anyone who challenges the way things are too loudly).</p>
</div>
</div>
<div class="block-detail">
<span class="time">16:00 - 16:30</span>
<span class="topic">Phishing Kits vs Financial Institutions - History, OSINT and Automation</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">Tom Blue & Alana Witten</a> </span>
<div class="block-text">
<p>Financial institutions are prime targets for cybercriminals, and phishing kits have become one of the most effective tools in their arsenal. These pre-packaged, ready-to-deploy kits enable even low-skilled attackers to launch convincing campaigns that steal banking credentials, drain accounts, and fuel the underground fraud economy.</p>
<p>In this talk, we’ll explore the evolution of phishing kits, from early crude scripts to today’s sophisticated, modular, and service-based models. We’ll discuss how these kits are discovered, dissected, and analysed, sharing key trends, unusual findings, and real-world anecdotes from recent investigations. Additionally, we’ll take a closer look at the business side of phishing kit distribution—examining how cybercriminals sell, trade, and refine these tools in underground forums.</p>
<p>Join us as we peel back the layers of the phishing kit industry and reveal the mechanics behind one of the most persistent threats to the financial sector.</p>
</div>
</div>
<div class="block-detail">
<span class="time">16:30 - 17:00</span>
<span class="topic">Femtech and Data Privacy: What’s at Stake?</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">Arohi Naik</a> </span>
<div class="block-text">
<p>The rise of femtech—technologies designed to support women’s health—is transforming the way we manage personal health data. From period trackers to fertility apps, these tools offer unprecedented convenience and insights. However, with the immense potential for positive impact comes a serious risk: the privacy and security of our most sensitive data.</p>
<p>This presentation examines the growing concerns surrounding data collection and usage in femtech apps. While these applications help us understand our bodies better, they also gather highly personal information that, if mishandled, can expose users to security breaches, surveillance, and exploitation. Why is this an urgent issue? Because unlike fitness trackers or social media platforms, femtech apps deal with some of the most intimate and vulnerable aspects of our lives—our health, emotions, and behaviours.</p>
<p>The discussion will explore the ethical implications of data practices in femtech, questioning whether the data collected is truly necessary or if it’s being over-mined for profit. Can we trust that our data is being protected, or is it being sold to third-party advertisers?</p>
<p>Additionally, the presentation will discuss solutions for building a privacy-first future in femtech, focusing on decentralised development. Imagine a world where your health data stays where it belongs—with you. This talk will challenge developers, regulators, and users to rethink how we approach digital privacy in femtech.</p>
<p>Ultimately, the discussion will address truly at stake: our health, autonomy, and trust. It's time to demand more from the apps we use—and ensure that privacy is not sacrificed in the name of convenience.</p>
</div>
</div>
<div class="block-detail">
<span class="time">17:00 - 18:00</span>
<span class="topic">Geopolitics, Climate Change & Cyber: Why Nation States Will Super Charge Espionage and Cyber Attacks</span>
<span class="speaker"><a href="#speakers" class="gradient-text ">Ian Thornton-Trump</a> </span>
<div class="block-text">
<p>We all know the "What to Do" about Cyber. But have we thought about the why? Did we create our own nightmare? Are we economically dependent on cyber criminals to actually reject or even consider reducing cyber crime? Despite all the efforts the danger dials are all pinned into red zone. Ian Thornton-Trump CD explores - with humour and jaded cynicism - why countries are doing what they are doing and why cyber criminals and nation state actors are creating "unholy alliances". The data and trends can give us a glimpse at what the future holds for the country, the cyber security industry and "the baddies".</p>
</div>