-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
1195 lines (1065 loc) · 81.1 KB
/
Copy pathindex.html
File metadata and controls
1195 lines (1065 loc) · 81.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
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
<html>
<head>
<title>ndouglas Resumé</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- Add icon library -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="icon" type="image/x-icon" href="https://companieslogo.com/img/orig/cloudsmith-bd7400ba.png?t=1720244494">
<style>
body {
background-color: #000000;
color: #00ff00;
font-family: 'Courier New', Consolas, monospace;
margin: 0;
padding: 20px;
}
.btn {
background-color: DodgerBlue;
border: none;
color: white;
padding: 12px 30px;
cursor: pointer;
font-size: 20px;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: RoyalBlue;
}
/* Wrap each certification item inside this container */
.cert-block {
display: flex;
justify-content: space-between;
align-items: center; /* Vertically aligns text and image */
background-color: #1a1a1a; /* Matching your dark aesthetic */
padding: 1rem;
margin-bottom: 1rem;
border-left: 4px solid #33ff33;
}
/* Container for your text layout on the left */
.cert-text {
flex: 1; /* Takes up all available space on left */
padding-right: 20px;
}
/* Styling for the badge/image on the right */
.cert-badge {
width: 80px; /* Adjust size as needed */
height: 80px;
object-fit: contain;
border-radius: 4px;
}
h1 {
color: #00ff00;
text-shadow: 0 0 5px #00ff00;
margin-top: 50px;
}
@media (max-width: 600px) {
#linkSearch {
width: 80%;
padding: 12px;
font-size: 12px;
}
#darkModeToggle {
padding: 12px 16px;
font-size: 16px;
}
center[style] {
flex-direction: column;
gap: 10px;
}
}
.flicker {
opacity: 0.1;
transition: opacity 0.1s ease-in-out;
text-shadow: 0 0 2px #00ff00, 0 0 5px #00ff00;
}
body.dim b {
opacity: 0.25;
transition: opacity 0.12s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
body.dim b { transition: none; opacity: 1 !important; }
}
/* --- LIGHT MODE BASE STYLES --- */
body.light-mode {
background-color: white !important;
color: black !important;
}
body.light-mode h1 {
color: black;
text-shadow: none;
}
body.light-mode a {
color: #0066cc;
text-shadow: none;
background: none !important; /* Forces background to clear default states */
}
/* --- LIGHT MODE HIGHLIGHTER HOVER EFFECT --- */
body.light-mode a:hover {
background: linear-gradient(120deg, #ffeb3b 0%, #ffeb3b 100%) !important;
background-repeat: no-repeat !important;
background-size: 100% 40% !important;
background-position: 0 88% !important;
color: #000000 !important;
text-decoration: none !important;
}
/* --- INTERFACE ELEMENTS --- */
body.light-mode input,
body.light-mode button {
background-color: white !important;
color: black !important;
border: 1px solid black !important;
text-shadow: none !important;
box-shadow: none !important;
}
body.light-mode .video-block {
background-color: white !important;
border: 1px solid black !important;
box-shadow: none !important;
}
body.light-mode .video-block a {
color: black !important;
}
body.light-mode .video-block a:hover {
color: black !important;
}
/* --- CV SPECIAL CONTENT --- */
body.light-mode #cvContent {
background-color: white !important;
color: black !important;
}
body.light-mode #cvContent h1,
body.light-mode #cvContent h2,
body.light-mode #cvContent h3 {
border-bottom: 1px solid black !important;
}
body.light-mode #cvContent .recommendation,
body.light-mode #cvContent .cert-block {
background-color: #f0f0f0 !important;
border-left: 4px solid black !important;
}
body.light-mode a:hover {
background: linear-gradient(120deg, #ffeb3b 0%, #ffeb3b 100%);
background-repeat: no-repeat;
background-size: 100% 40%; /* Adjust 40% to make the highlight thicker or thinner */
background-position: 0 88%; /* Positions it perfectly under the text */
color: #000000;
text-decoration: none;
}
body.light-mode #cvContent h1,
body.light-mode #cvContent h2,
body.light-mode #cvContent h3 {
border-bottom: 1px solid black !important;
}
body.light-mode #cvContent .recommendation,
body.light-mode #cvContent .cert-block {
background-color: #f0f0f0 !important;
border-left: 4px solid black !important;
}
.fade-out {
opacity: 0;
transform: translateY(20px);
transition: opacity 1.1s ease, transform 1.1s ease;
}
.fade-in {
opacity: 1;
transform: translateY(0);
transition: opacity 0.6s ease, transform 0.6s ease;
}
.video-container {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: 30px;
padding: 0 40px;
margin-bottom: 40px;
}
.video-block {
text-align: center;
border: 1px solid #00ff00;
padding: 10px;
box-shadow: 0 0 10px #00ff00;
background-color: #000;
}
.video-block iframe {
width: 100%;
height: 200px;
}
.video-block a {
display: block;
margin-top: 8px;
text-decoration: none;
color: #00ff00;
font-weight: bold;
text-shadow: 0 0 3px #00ff00;
}
.video-block a:hover {
color: #33ff33;
text-decoration: underline;
}
a {
color: #00ff00;
text-decoration: none;
text-shadow: 0 0 3px #00ff00;
font-size: 13px;
}
a:hover {
color: #33ff33;
text-decoration: underline;
}
center {
display: block;
margin-bottom: 10px;
}
h1::before {
content: "> ";
animation: blink 1s steps(2, start) infinite;
margin-left: 5px;
}
@keyframes blink {
0%, 50% { opacity: 1; }
50.01%, 100% { opacity: 0; }
}
/* Resume view styles */
#cvContent {
display: none;
background-color: #000000;
color: #33ff33;
font-family: 'Courier New', Courier, monospace;
padding: 2rem;
}
#cvContent h1, #cvContent h2, #cvContent h3 {
border-bottom: 1px solid #33ff33;
padding-bottom: 0.3rem;
}
#cvContent a { color: #33ccff; text-decoration: none; }
#cvContent a:hover { text-decoration: underline; }
#cvContent .section { margin-bottom: 2rem; }
#cvContent .contact { margin-bottom: 1rem; }
#cvContent .recommendation {
background-color: #1a1a1a;
padding: 1rem;
margin-top: 1rem;
border-left: 4px solid #33ff33;
}
#cvContent ul { margin-top: 0.5rem; }
#cvContent li { margin-bottom: 0.3rem; }
/* 1. Set the initial state for the badges */
.cert-badge {
/* Smooth transition over 1.5s when both hovering AND leaving */
transition: transform 1.5s ease-out, box-shadow 1.5s ease-out;
/* Keeps the transform smooth and prevents blurry scaling */
will-change: transform;
/* Optional: initial subtle shadow so the transition isn't harsh */
box-shadow: 0 0px 0px rgba(0, 0, 0, 0);
/* Ensure it plays nice if tucked inside an <a> tag */
display: inline-block;
}
/* 2. Define what happens on hover */
.cert-badge:hover {
/* Scale up by 15% (Adjust 1.15 to your liking, e.g., 1.1 for 10%) */
transform: scale(1.15);
/* Add a beautiful, smooth drop shadow */
box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
</style>
</head>
<body>
<!-- Search Bar + Dark Mode Toggle + Clear Button -->
<center style="display: flex; justify-content: center; align-items: center; gap: 0; margin-bottom:20px;">
<button id="darkModeToggle"
style="padding: 8px 12px; font-size: 14px; background-color: #000; color: #00ff00; border: 1px solid #00ff00; text-shadow: 0 0 5px #00ff00; box-shadow: 0 0 10px #00ff00; font-family: 'Courier New', Consolas, monospace; cursor: pointer; border-right: none;">
☾
</button>
<input type="text" id="linkSearch" placeholder="Search links..."
style="width:60%; padding:8px; font-size:14px; background-color:#000; color:#00ff00; border:1px solid #00ff00; border-left: none; border-right: none; text-shadow:0 0 5px #00ff00; box-shadow:0 0 10px #00ff00; font-family:'Courier New', Consolas, monospace; outline:none;">
<button id="clearSearch"
style="padding: 8px 12px; font-size: 14px; background-color: #000; color: #00ff00; border: 1px solid #00ff00; text-shadow: 0 0 5px #00ff00; box-shadow: 0 0 10px #00ff00; font-family: 'Courier New', Consolas, monospace; cursor: pointer; border-left: none;">
✕
</button>
</center>
<!-- MAIN CONTENT -->
<div id="mainContent">
<div>
<center><h1>Kubernetes Release Notes</h1></center>
<center><a href="https://www.sysdig.com/blog/whats-new-in-kubernetes-1-30" target="_blank" data-tags="kubernetes, release, sysdig">Kubernetes 1.30 – What’s new?</a></center>
<center><a href="https://www.sysdig.com/blog/whats-new-kubernetes-1-31" target="_blank" data-tags="kubernetes, release, sysdig">Kubernetes 1.31 – What’s new?</a></center>
<center><a href="https://www.sysdig.com/blog/kubernetes-1-32-whats-new" target="_blank" data-tags="kubernetes, release, sysdig">Kubernetes 1.32 – What’s new?</a></center>
<center><a href="https://cloudsmith.com/blog/kubernetes-1-33-what-you-need-to-know" target="_blank" data-tags="kubernetes, release, cloudsmith">Kubernetes 1.33 – What you need to know</a></center>
<center><a href="https://cloudsmith.com/blog/kubernetes-1-34-what-you-need-to-know" target="_blank" data-tags="kubernetes, release, cloudsmith">Kubernetes 1.34 – What you need to know</a></center>
<center><a href="https://cloudsmith.com/blog/kubernetes-1-35-what-you-need-to-know" target="_blank" data-tags="kubernetes, release, cloudsmith">Kubernetes 1.35 – What you need to know</a></center>
<center><a href="https://cloudsmith.com/blog/kubernetes-1-36-what-you-need-to-know" target="_blank" data-tags="kubernetes, release, cloudsmith">Kubernetes 1.36 – What you need to know</a></center>
<center><h1>Community</h1></center>
<center><a href="https://www.linkedin.com/posts/zoerab_fosdem-stratoshark-wireshark-activity-7291505953902915584-q0H9/" target="_blank" data-tags="sysdig">Main Stage at FOSDEM</a></center>
<center><a href="https://www.linkedin.com/feed/update/urn:li:activity:7362038060600938496/" target="_blank" data-tags="cloudsmith">Forbes Vibe Coding post</a> </center>
<b><center><a href="https://www.reddit.com/r/kubernetes/comments/1jv1w5h/kubernetes_133_release/" target="_blank" data-tags="cloudsmith">Kubernetes 1.33 - Reddit</a></center></b>
<center><a href="https://www.reddit.com/r/kubernetes/comments/1mc6si3/kubernetes_134_release/" target="_blank" data-tags="cloudsmith">Kubernetes 1.34 - Reddit</a></center>
<center><a href="https://cloudnativenow.com/features/what-to-expect-from-kubernetes-1-36/" target="_blank" data-tags="cloudsmith">Kubernetes 1.36 - CN Now</a></center>
<center><a href="https://www.linkedin.com/posts/nigel-douglas-devrel_kubernetes-132-whats-new-activity-7270548006326747137-Aaa9" target="_blank" data-tags="sysdig">Kubernetes 1.32 - LinkedIn</a></center>
<center><a href="https://www.linkedin.com/posts/shurupov_kubernetes-133-what-you-need-to-know-activity-7315975648957677570--8ws/" target="_blank" data-tags="cloudsmith">Kubernetes 1.33 - LinkedIn</a></center>
<center><a href="https://www.linkedin.com/posts/shurupov_kubernetes-134-what-you-need-to-know-activity-7356200114287210496-loyn" target="_blank" data-tags="cloudsmith">Kubernetes 1.34 - LinkedIn</a></center>
<center><a href="https://github.com/cloudsmith-io/rego-recipes" target="_blank" data-tags="github, rego, cloudsmith">OPA Rego Cookbook repository</a></center>
<center><a href="https://www.linkedin.com/posts/saim-safder_platformcon-cloudnatievfm-cloudtherapist-activity-7346896118506475522-Lolv" target="_blank" data-tags="platform engineering, cloudsmith">Recap from Platform con EU'25</a></center>
<center><a href="https://www.linkedin.com/posts/hackervalleystudio_cybersecurity-ai-kubernetes-activity-7292255535289024512-YNh0" target="_blank" data-tags="sysdig">Hacker Valley Media on LinkedIn</a></center>
<center><a href="https://www.linkedin.com/posts/cloudsmith_letter-why-software-developers-hate-the-activity-7346558366959214592-Bssj/" target="_blank" data-tags="ft, sysdig">Financial Times post on Vibe Coding</a></center>
<center><a href="https://www.linkedin.com/posts/nigel-douglas-devrel_kubernetes-134-10-new-alpha-features-activity-7361314489712926720-QPIQ" target="_blank" data-tags="platform engineering, cloudsmith">
Kubernetes 1.34 - Beta Functionalities</a></center>
<center><a href="https://showcase.itcarlow.ie/cybermsc2024.html" target="_blank">Masters in Cybersecurity Project Showcase</a></center>
<b><center><a href="https://www.linkedin.com/posts/vanzantvliet_vibecoding-securebydesign-softwaresupplychain-activity-7342770385278427136-7vIk" target="_blank" data-tags="financial times, cloudsmith">
Dutch Railways CISO response to the FT letter</a></center></b>
<center><a href="https://www.linkedin.com/posts/grweinstein_cve-2025-3248-serious-vulnerability-found-activity-7340763459346722818-Hibm/" target="_blank">Glenn's post on the CVE-2025-3248 vulnerability</a></center>
<center><a href="https://github.com/nigeldouglas-itcarlow/pentesting-xss?tab=readme-ov-file" target="_blank">Address Resolution Protocol (ARP) Spoofing Attacks</a> </center>
<center><a href="https://github.com/nigeldouglas-itcarlow/pentesting-xss?tab=readme-ov-file" target="_blank">Penetration Testing Samples - Cross Site Scripting (XSS)</a> </center>
<center><a href="https://github.com/nigeldouglas-itcarlow/pentesting-mainproject" target="_blank">Penetration Testing - Main Project for Masters Degree at SETU</a> </center>
<center><a href="https://github.com/nigeldouglas-itcarlow/decentralised-vault-manager" target="_blank">Decentralised Smart Contract manager for distributing native tokens</a> </center>
<center><a href="https://cloudsmith.instruqt.com/pages/platformcon-2026" target="_blank">PlatformCon 2026 - Interactive on-demand workshops via Instruqt platform</a> </center>
<center><h1>Profiles</h1></center>
<center><a href="https://www.sans.org/profiles/nigel-douglas" target="_blank">SANS</a></center>
<center><a href="https://dzone.com/users/4887406/n1g3ld0ugla5.html" target="_blank">DZone</a></center>
<center><a href="https://fosdem.org/2025/schedule/speaker/nigel_douglas/" target="_blank">FOSDEM</a></center>
<center><a href="https://devm.io/experts/nigeldouglas" target="_blank">Devm.io</a></center>
<center><a href="https://www.raconteur.net/contributors/nigel-douglas" target="_blank">Raconteur</a></center>
<center><a href="https://www.techstrongevents.com/cloud-native-now-2023/speaker/823969/nigel-douglas" target="_blank">Techstrong</a></center>
<center><a href="https://sessionize.com/nigel-douglas/" target="_blank">Sessionize</a></center>
<center><a href="https://www.darkreading.com/author/nigel-douglas" target="_blank" data-tags="dark reading, sysdig, cloudsmith">DarkReading</a></center>
<center><a href="https://cyberwisecon.eu/conference-hosts/#:~:text=Chief%20Executive%20Officer-,Nigel%20Douglas,-Sysdig%2C%20Ireland" target="_blank" data-tags="cyber wise convention, sysdig">CyberWiseCon</a></center>
<b><center><a href="https://www.devopsdigest.com/cloudsmith-joins-the-vendor-forum" target="_blank">DevOps Digest</a></center> </b>
<center><a href="https://thenewstack.io/author/nigel-douglas/" target="_blank" data-tags="thenewstack, the new stack, sysdig">The News Stack</a></center>
<center><a href="https://allthingsopen.org/authors/nigel-douglas" target="_blank" data-tags="allthingsopen, cloudsmith, sysdig">All Things Open</a></center>
<center><a href="https://platformcon.com/speakers?8b71b977_page=2" target="_blank" data-tags="platform engineering, cloudsmith">PlatformCon 2025</a></center>
<center><a href="https://www.securityinsights.co.uk/tag/nigel-douglas" target="_blank">Security Insights</a></center>
<b><center><a href="https://platformengineering.org/authors/nigel-douglas" target="_blank" data-tags="platform engineering, cloudsmith">Platform Engineers</a></center></b>
<center><a href="https://www.theofficialboard.fr/biographie/nigel-douglas-d1931" target="_blank">The Officials Board</a></center>
<center><a href="https://cfp.cloud-native.rejekts.io/cloud-native-rejekts-europe-london-2025/speaker/WDMANM/" target="_blank" data-tags="cloud-native, kubecon">Cloud Native Rejekts</a></center>
<center><a href="https://osseu2025.sched.com/speaker/mossydouglas" target="_blank" data-tags="oss, cloudsmith">Open Source Summit EU</a></center>
<center><a href="https://community.sysdig.com/u/nigeldouglas/activity" target="_blank" data-tags="cloud-native, kubernetes">Sysdig's OSS Community</a></center>
<center><a href="https://cyberireland.ie/ci-event/corksec-148/" target="_blank" data-tags="oss, cloudsmith">CyberIreland - Cork|Sec</a></center>
<center><h1>Blogs</h1></center>
<center><a href="https://falco.org/blog/falco-talon-v0-1-0/#:~:text=Talon%20with%20him-,Nigel%20Douglas,-who%20tests%20and" target="_blank" data-tags="sysdig, cybersecurity, falco, Kubernetes">
Falco Talon v0.1.0 release</a></center>
<center><a href="https://dzone.com/articles/owasp-kubernetes-top-10" target="_blank" data-tags="sysdig, cybersecurity">
OWASP Top 10 for Kubernetes</a></center>
<center><a href="https://www.sysdig.com/blog/ephemeral-containers-and-apts" target="_blank" data-tags="sysdig, cybersecurity">
Ephemeral Containers and APTs</a></center>
<center><a href="https://www.sysdig.com/blog/why-falco-works-the-best-in-distributed-architectures" target="_blank" data-tags="sysdig, cybersecurity">
Intro to Falco Feeds by Sysdig</a></center>
<center><a href="https://cloudsecurityalliance.org/blog/2023/08/22/cloud-defense-in-depth-lessons-from-the-kinsing-malware/" target="_blank">
Lessons from the Kinsing Malware</a></center>
<center><a href="https://www.sysdig.com/blog/terraform-security-best-practices" target="_blank">
Terraform Security Best Practices</a></center>
<center><a href="https://cloudsecurityalliance.org/blog/2024/05/06/resource-constraints-in-kubernetes-and-security" target="_blank" data-tags="sysdig, csa, cloud security alliance">
Resource Constraints in Kubernetes</a></center>
<center><a href="https://www.sysdig.com/blog/owasp-top-10-for-llms" target="_blank">
Harden your LLM security with OWASP</a></center>
<center><a href="https://www.cncf.io/blog/2024/11/12/managing-threat-intelligence-in-falco/" target="_blank" data-tags="sysdig, cncf">
Managing threat intelligence in Falco</a></center>
<center><a href="https://www.sysdig.com/blog/understand-ai-threats-with-mitre-atlas" target="_blank" data-tags="sysdig, compliance, llm">
Understand AI Threats with MITRE ATLAS</a></center>
<b><center><a href="https://platformengineering.org/blog/kubernetes-1-34-10-new-alpha-features" target="_blank" data-tags="platform engineering, cloudsmith">
Kubernetes 1.34: 10 new Alpha features</a></center></b>
<center><a href="https://www.sysdig.com/blog/optimizing-wireshark-in-kubernetes" target="_blank" data-tags="sysdig, falco, tshark">
Run Wireshark captures within Kubernetes</a></center>
<center><a href="https://falco.org/blog/falco-atomic-red/" target="_blank" data-tags="sysdig, falco, art">
Install and Test Atomic Red in Kubernetes</a></center>
<center><a href="https://dzone.com/articles/deploying-llms-securely-with-owasp-top-10" target="_blank" data-tags="sysdig, ai, dzone">
Deploying LLMs Securely With OWASP Top 10</a></center>
<center><a href="https://www.cncf.io/blog/2024/04/26/the-hidden-economy-of-open-source-software/" target="_blank" data-tags="sysdig, cncf">
The Hidden Economy of Open Source Software</a></center>
<center><a href="https://www.sysdig.com/blog/cspm-least-privilege-principle" target="_blank" data-tags="sysdig, cspm, cloud security posture management">
The least privilege principle in practice</a></center>
<center><a href="https://www.sysdig.com/blog/a-cisos-grimoire-for-outsmarting-attackers" target="_blank">
A CISO’s grimoire for outsmarting attackers</a></center>
<center><a href="https://www.sysdig.com/blog/forging-the-proverbial-bulletproof-container" target="_blank">
Forging the proverbial bulletproof container</a></center>
<center><a href="https://www.cncf.io/blog/2025/05/01/enforcing-artifact-security-with-trivy-and-opa/" target="_blank">
Enforce Artifact Security with Trivy and OPA</a></center>
<b><center><a href="https://cloudsecurityalliance.org/blog/2024/01/02/scarleteel-2-0-and-the-mitre-att-ck-framework" target="_blank">
Scarleteel 2.0 and the MITRE ATT&CK Framework</a></center></b>
<center><a href="https://allthingsopen.org/articles/introduction-to-falco" target="_blank">
Introduction to Falco and how to set up rules</a></center>
<center><a href="https://www.darkreading.com/vulnerabilities-threats/quiet-revolution-kubernetes-security" target="_blank" data-tags="openssf">
The Quiet Revolution in Kubernetes Security</a></center>
<center><a href="https://www.sysdig.com/blog/the-race-for-artificial-intelligence-governance" target="_blank">
A Race for Artificial Intelligence Governance</a></center>
<center><a href="https://dzone.com/articles/k8s-network-policy-automation-in-falco-talon" target="_blank">
Kubernetes Network Policy Automation with Talon</a></center>
<center><a href="https://www.sysdig.com/blog/why-the-sysdig-windows-agent-matters-in-the-cloud" target="_blank">
Why Sysdig's Windows agent matters in the cloud</a></center>
<center><a href="https://cloudsmith.com/blog/managing-open-source-vulnerabilities-epm" target="_blank" data-tags="osv.dev, cloudsmith">
Managing Malicious Packages with Cloudsmith EPM</a></center>
<center><a href="https://dzone.com/articles/preventing-advanced-persistent-threats-in-kubernetes" target="_blank">
Prevent Advanced Persistent Threats in Kubernetes</a></center>
<center><a href="https://falco.org/blog/wireshark-to-falco/" target="_blank">
Linux Introspection from BPF to Wireshark to Falco</a></center>
<b><center><a href="https://openssf.org/blog/2024/06/21/an-open-source-approach-to-threat-mitigation-in-aws/" target="_blank" data-tags="openssf">
An Open Source Approach to Threat Mitigations in AWS</a></center> </b>
<center><a href="https://www.sysdig.com/blog/traditional-edr-solutions-cloud" target="_blank">
Why Traditional EDRs Fail at Server D&R in the Cloud</a></center>
<center><a href="https://grcoutlook.com/falco-talons-proposed-donation-to-cncfs-falco/" target="_blank">
Falco Talon donation to the falcosecurity repository</a></center>
<center><a href="https://dzone.com/articles/understanding-kernel-monitoring-in-windows-and-lin" target="_blank">
Understanding Kernel Monitoring in Windows and Linux</a></center>
<center><a href="https://cloudsmith.com/blog/open-container-initiative-oci-support-in-cloudsmith" target="_blank">
Open Container Initiative (OCI) Support in Cloudsmith</a></center>
<center><a href="https://falco.org/blog/falco-okta-identity/" target="_blank">
Using Falco to Create Custom Okta Identity Detections</a></center>
<center><a href="https://www.sysdig.com/blog/how-falco-and-wireshark-paved-the-way-for-stratoshark" target="_blank">
How Falco and Wireshark paved the way for Stratoshark</a></center>
<center><a href="https://devm.io/reader/reading/devops-magazine/Volume%2018/d5d48b4bbe1732da54b69296" target="_blank">
What Do You Need to Know About SBOMs and Supply Chains</a></center>
<b><center><a href="https://www.sysdig.com/blog/detect-cve-2025-22224-with-falco" target="_blank">
CVE-2025-22224: A critical TOCTOU code execution attack</a></center> </b>
<center><a href="https://www.sysdig.com/blog/detect-impersonation-attacks-okta-idp" target="_blank">
How Sysdig can detect Impersonation Attacks in Okta IdP</a></center>
<center><a href="https://cloudsmith.com/blog/managing-open-source-vulnerabilities-epm" target="_blank">
Managing Open Source Vulnerabilities With Cloudsmith EPM</a></center>
<center><a href="https://cloudsmith.com/blog/ai-is-now-writing-code-at-scale-but-whos-checking-it" target="_blank">
AI is now writing code at scale - but who’s checking it?</a></center>
<center><a href="https://www.darkreading.com/cyberattacks-data-breaches/how-the-okta-cross-tenant-impersonation-attacks-succeeded" target="_blank">
How the Okta Cross-Tenant Impersonation Attacks Succeeded</a></center>
<center><a href="https://www.sysdig.com/blog/detect-cve-2020-8554-using-falco" target="_blank">
CVE-2020-8554: Unpatched MITM vulnerability in Kubernetes</a></center>
<center><a href="https://cloudsmith.com/blog/data-and-tech-informing-epm" target="_blank">
Pulling back the hood on the data & tech that informs EPM</a></center>
<center><a href="https://cloudsmith.com/blog/owasp-ci-cd-part-9-improper-artifact-integrity-validation" target="_blank">
OWASP CI/CD Part 9: Improper Artifact Integrity Validation</a></center>
<center><a href="https://www.sysdig.com/blog/sysdigs-ai-workload-security-the-risks-of-rapid-ai-adoption" target="_blank" data-tags="sysdig, artificial intelligence">
AI in Kubernetes: The risks of rapid LLM workload adoption</a></center>
<center><a href="https://www.sysdig.com/blog/dropbox-breach-falco-plugin" target="_blank">
Responding to the Dropbox Breach with a Falco GitHub Plugin</a></center>
<center><a href="https://allthingsopen.org/articles/docker-content-trust-sigstore-vs-notation" target="_blank">
Docker is retiring Content Trust and here's what that means</a></center>
<center><a href="https://platformengineering.org/blog/identifying-vulnerabilities-in-public-kubernetes-helm-charts" target="_blank">
Identifying vulnerabilities in public Kubernetes Helm charts</a></center>
<center><a href="https://thenewstack.io/falco-plugin-for-okta-adds-context-to-quickly-thwart-threats/" target="_blank">
Falco Plugin for Okta Adds Context to Quickly Thwart Threats</a></center>
<center><a href="https://cloudsmith.com/blog/responding-to-questions-from-our-recent-helm-security-webinar" target="_blank" data-tags="cloudsmith, kubernetes">
Responding to questions from our recent Helm security webinar</a></center>
<center><a href="https://www.sysdig.com/blog/real-time-security" target="_blank">
Prevent suspicious cloud behaviours with end-to-end detections</a></center>
<center><a href="https://grcoutlook.com/fibratus-a-compelling-alternative-for-windows-endpoint-security/" target="_blank" data-tags="grc outlook">
Fibratus: A Compelling Alternative for Windows Endpoint Security</a></center>
<center><a href="https://cloudsmith.com/blog/cloudsmith-introduces-epss-scoring-in-enterprise-policy-management-epm" target="_blank" data-tags="Exploit Prediction Scoring System, cvss, cve">
Cloudsmith introduces EPSS Scoring in Enterprise Policy Management</a></center>
<center><a href="https://www.sysdig.com/blog/vulnerability-management-in-the-microservice-era-from-zero-to-hero" target="_blank" data-tags="sysdig, docker, kubernetes, cve">
Vulnerability management in the microservice era: From zero to hero</a></center>
<center><a href="https://www.sysdig.com/blog/how-businesses-can-comply-with-the-eus-artificial-intelligence-act" target="_blank" data-tags="sysdig, AI, LLM">
How Businesses Can Comply with the EU’s Artificial Intelligence Act</a></center>
<center><a href="https://www.wireshark.org/blog/2023-09-27-the-evolution-of-system-introspection-from-bpf-to-wireshark-to-falco" target="_blank" data-tags="sysdig, network">
The evolution of system introspection from BPF to Wireshark to Falco</a></center>
<center><a href="https://devm.io/reader/reading/devops-magazine/Volume%2018/8aafa18cd0b827d73b4dec4f" target="_blank" data-tags="sysdig, devmio">
What Do You Need To Know About Policy-as-Code and Compliance-as-Code</a></center>
<center><a href="https://allthingsopen.org/articles/vulnerability-prioritization-beyond-cvss" target="_blank" data-tags="cloudsmith, epss, allthingsopen, oss">
Beyond CVSS: A more practical approach to vulnerability prioritization</a></center>
<center><a href="https://cloudsmith.com/blog/cve-2025-3248-serious-vulnerability-found-in-popular-python-ai-package" target="_blank" data-tags="cloudsmith, cybersecurity">
CVE-2025-3248: Serious vulnerability found in popular Python AI package</a></center>
<b><center><a href="https://www.blackhillsinfosec.com/real-time-threat-detection-for-kubernetes-with-atomic-red-tests-and-falco/" target="_blank" data-tags="sysdig, art, stg, black hill">
Real Time Threat Detection for Kubernetes with Atomic Red Tests and Falco</a></center></b>
<center><a href="https://www.wireshark.org/blog/2024-01-29-from-network-packets-to-log-data-how-logray-built-upon-falcos-foundation" target="_blank" data-tags="sysdig, wireshark, stratoshark">
From Network Packets to Log Data: How Logray builds upon Falco’s foundation</a></center>
<center><a href="https://betanews.com/2024/05/01/what-the-eu-ai-act-means-for-cybersecurity-teams-and-organizational-leaders/" target="_blank" data-tags="sysdig, compliance, government">
What the EU's AI act means for cybersecurity teams and organizational leaders</a></center>
<b><center><a href="https://devops.com/signed-attested-and-malicious-the-software-supply-chain-has-a-deepfake-problem/" target="_blank" data-tags="cloudsmith, shai-hulud, malware, security">
Signed, Attested, and Malicious: The Software Supply Chain Has a Deepfake Problem</a></center></b>
<center><a href="https://www.cncf.io/blog/2024/06/04/kubernetes-turns-10-triumphs-trials-and-the-ongoing-battle-for-security/" target="_blank" data-tags="sysdig, cloud-native, cncf, cilium">
Kubernetes is turning 10: The triumphs, trials, and the ongoing battle for security</a></center>
<b><center><a href="https://www.cncf.io/blog/2024/11/06/why-falcos-new-response-engine-is-a-game-changer-for-open-source-cloud-native-security/" target="_blank" data-tags="sysdig, cloud-native, cncf, talon">
Why Falco’s new response engine is a game changer for open source cloud native security</a></center></b>
<center><a href="https://www.cncf.io/blog/2025/01/22/from-pcap-to-scap-how-falcos-libraries-registries-and-plugins-enable-cloud-native-insights/" target="_blank" data-tags="sysdig, cloud-native, wireshark">
From PCAP to SCAP: how Falco’s libraries, registries, and plugins enable cloud native insights</a></center>
<center><a href="https://www.suse.com/c/test-and-configure-active-security-for-containers-and-kubernetes-on-rancher-desktop-via-calico-cloud/" target="_blank" data-tags="tigera, kubernetes, project calico">
Test & Configure Active Security for Containers and Kubernetes on Rancher Desktop via Calico Cloud</a></center>
<center><h1>Newsjacking</h1></center>
<center><a href="https://learnkube.com/issues/35" target="_blank" data-tags="learn, kubernetes, cybersecurity">
OWASP Kubernetes Top 10</a></center>
<center><a href="https://craigbox.substack.com/p/well-that-escalated-quickly" target="_blank" data-tags="craig box, kubernetes, cybersecurity">
Well, that escalated quickly</a></center>
<center><a href="https://open.spotify.com/episode/3STY2od87hMgyqhmJ23o0S" target="_blank" data-tags="podcast, kubernetes, spotify">
Security, skills & open-source</a></center>
<center><a href="https://learnkube.com/issues/86#:~:text=Wireshark%20in%20Kubernetes-,Nigel%20Douglas,-Believe%20it%20or" target="_blank" data-tags="sysdig, newsletter, learnk8s">
Optimise Wireshark in Kubernetes</a></center>
<b><center><a href="https://thenewstack.io/kubernetes-is-getting-a-better-yaml/" target="_blank" data-tags="cloudsmith, tns, the new stack">
Kubernetes Is Getting a Better YAML</a></center></b>
<center><a href="https://www.cybersecurityintelligence.com/blog/a-guide-to-taming-agentic-ai-risks-8590.html" target="_blank" data-tags="cloudsmith, artificial itelligence, llm">
A guide to taming your agentic AI risks</a></center>
<center><a href="https://cloudnativenow.com/topics/cloudnativedevelopment/what-to-expect-from-kubernetes-1-31/" target="_blank" data-tags="sysdig, cloud native now">
What to expect in Kubernetes 1.31 release</a></center>
<b><center><a href="https://www.forbes.com/sites/kolawolesamueladebayo/2025/08/04/how-vibe-coding-is-creating-a-new-ai-economy" target="_blank" data-tags="cloudsmith, forbes">
How vibe coding is creating a new AI economy</a></center></b>
<center><a href="https://a.tldrnewsletter.com/web-version?ep=1&lc=c38f44d4-ed37-11ef-aa7a-8d1ed4f02174&p=dd15a214-77f6-11f0-b57c-1f104a61afe9&pt=campaign&t=1755083948&s=881e7b8a12a4b981eeb626aee9682d85cb55611d16e773b92322d7ddc337c5bc#:~:text=6%20minute%20read)-,Kubernetes%201.34,-introduces%20several%20alpha" target="_blank">
LDR Newsletter: Kubernetes 1.34 Alpha Features</a></center>
<center><a href="https://cloudnativefolks.substack.com/p/january-2024-edition-cloudnativefolks" target="_blank">
January 2024 Edition: CloudNativeFolks Community</a></center>
<center><a href="https://www.linkedin.com/posts/stackpublishing_what-is-npm-doing-to-protect-the-javascript-activity-7472946707287429121-FP6g/" target="_blank" data-tags="cloudsmith, mary, branscombe, thestack, stack">
What is the npm registry doing to protect JavaScript</a></center>
<center><a href="https://www.techtarget.com/searchitoperations/news/366640683/CNCF-Ingress-Nginx-retirement-could-leave-some-users-at-risk" target="_blank" data-tags="beth, pariseau, kubernetes 1.36">
Ingress-Nginx retirement could leave some user at risk</a></center>
<center><a href="https://lucaberton.com/blog/cloudsmith-nigel-douglas-managing-ai-agents-platform-scale-2026/" target="_blank" data-tags="PlatformCon">
Managing AI Agents at Platform Scale: Cloudsmith's Take</a></center>
<center><a href="https://www.ft.com/content/cc74a851-7ecb-4dec-83e3-4829dd9fdf46" target="_blank">
Vibe code letter published to the Financial Times</a></center>
<b><center><a href="https://www.lemagit.fr/actualites/366623829/Sysdig-confie-Stratoshark-a-la-fondation-Wireshark" target="_blank">
Sysdig confie Stratoshark à la fondation Wireshark</a></center> </b>
<center><a href="https://cyberinsights.iainfraser.net/index.php/2025/05/14/software-supply-chain-risk/" target="_blank">
Software supply chain risks leave UK SMEs vulnerable</a></center>
<center><a href="https://hackread.com/fake-npm-website-used-push-malware-via-stolen-token/" target="_blank">
Fake NPM website used to push malware via stolen token</a></center>
<center><a href="https://www.webpronews.com/kubernetes-1-34-debuts-kyaml-to-resolve-yaml-challenges/" target="_blank">
Kubernetes 1.34 Debuts KYAML to Resolve YAML Challenges</a></center>
<center><a href="https://netzpalaver.de/2023/08/22/containerdays-2023-in-hamburg-sysdig-ist-mit-an-board/" target="_blank">
Container Days 2023 in Hamburg - Sysdig ist mit an Board</a></center>
<b><center><a href="https://www.devopsdigest.com/to-prevent-slopsquatting-dont-let-genai-skip-the-queue" target="_blank">
To Prevent Slopsquatting, Don't Let Gen AI Skip the Queue</a></center></b>
<center><a href="https://thenewstack.io/vibing-dangerously-the-hidden-risks-of-ai-generated-code/" target="_blank">
Vibing Dangerously: The hidden risks of AI-generated coding</a></center>
<center><a href="https://packetpushers.net/podcasts/kubernetes-unpacked/ku049-security-frameworks-tools-and-strategies-for-kubernetes/" target="_blank">
Security frameworks, the tools, and strategies for Kubernetes</a></center>
<center><a href="https://www.techzine.eu/blogs/applications/131342/dropping-the-sbom-why-software-supply-chains-are-too-flaky/" target="_blank">
Dropping the SBOM. Why your software supply chains are too flaky</a></center>
<center><a href="https://cloudsmith.com/blog/typosquatting-the-ghcr-registry" target="_blank" data-tags="github, cloudsmith">
Typosquatting a package? How about typosquatting the whole registry</a></center>
<center><a href="https://itbrief.news/story/most-organisations-lack-visibility-into-software-supply-chains" target="_blank">
Most businesses are lacking visibility into their software supply chain</a></center>
<center><a href="https://channellife.co.uk/story/fewer-than-40-of-firms-have-full-visibility-over-software-supply" target="_blank">
Fewer than 40% of firms have full visibility over the software supply chain</a></center>
<b><center><a href="https://www.lemondeinformatique.fr/actualites/lire-avec-stratoshark-sysdig-etend-l-observabilite-reseau-aux-environnements-clouds-95844.html" target="_blank" data-tags="le monde, french, news">
Avec Stratoshark, Sysdig étend l'observabilité réseau aux environnements clouds</a></center></b>
<center><a href="https://www.sysdig.com/press-releases/sysdig-unveils-stratoshark-extending-wireshark-to-cloud" target="_blank" data-tags="sysdig, syscall">
Stratoshark enables network engineers to bring their security experience to the cloud</a></center>
<center><a href="https://www.cysecurity.news/2025/08/from-vibes-to-ventures-how-ai-first.html" target="_blank" data-tags="cloudsmith, llm">
Vibes to Ventures: How AI Startups Like Giggles Are Redefining Rules of Entrepreneurship</a></center>
<center><a href="https://www.itpro.com/software/development/uk-government-ai-coding-assistant-trial-developer-time-savings" target="_blank" data-tags="cloudsmith, llm, itpro">
The UK government prgrammers trialed AI coding assistants from Microsoft, Github, and Google</a></center>
<center><a href="https://www.systemshardening.com/articles/kubernetes/llm-kubernetes-threat-model/" target="_blank" data-tags="cloudsmith, llm, itpro">
LLMs on Kubernetes: Understanding the Threat Model and Deploying an LLM Gateway (OWASP Top 10)</a></center>
<center><h1>Public Speaking</h1></center>
<center><a href="https://www.techstrongevents.com/cloud-native-now-2023" target="_blank">
The Many Faces of Cloud Native</a></center>
<center><a href="https://webinars.cloudnativenow.com/cloud-native-data-protection-1" target="_blank">
The Cloud Native Data Protection Demo</a></center>
<center><a href="https://go.sysdig.com/EMEACloud-NativeApplicationSecurityTop10.html" target="_blank">
The OWASP Cloud-Native App Security Top 10</a></center>
<center><a href="https://cloudsmith.com/events/webinars/identifying-vulnerabilities-in-public-kubernetes-helm-charts" target="_blank">
Identifying vulnerabilities in public Helm charts</a></center>
<b><center><a href="https://go.sysdig.com/Securing_AI_Workloads_Sept_2025_Reg.html" target="_blank">
Securing AI Workloads: From Secure Registry to Runtime</a></center></b>
<center><a href="https://cloudsmith.com/events/webinars/from-ai-to-scalability-2025-trends-in-artifact-management" target="_blank">
AI to Scalability: 2025 Trends within Artifact Management</a></center>
<center><a href="https://community.cncf.io/events/details/cncf-cncf-online-programs-presents-cncf-on-demand-webinar-understanding-the-open-source-cloud-native-security-landscape/" target="_blank">
Understand your open source cloud native security ecosystem</a></center>
<center><a href="https://entwickler.de/kurse/cloud-infrastructure-with-terraform/" target="_blank">
Terraform for Cloud Infrastructure Automation and Scalability</a></center>
<center><a href="https://community.cncf.io/events/details/cncf-cloud-native-dublin-presents-bunnie-junee/" target="_blank">
Cloud Native Dublin talk on identifying vulnerabilities in Helm</a></center>
<center><a href="https://www.crowdcast.io/c/kmc-security-tigera_1" target="_blank" data-tags="tigera, calico, rancher">
Kubernetes Networking Class in container security and observability</a></center>
<center><a href="https://securitysenses.com/events/sysdig-cloud-native-security-redefined" target="_blank">
Rethink your approach to threat detection and response in Cloud Native</a></center>
<center><a href="https://www.sysdig.com/resources/webinars/owasp-kubernetes-top-10-projects-what-risks-you-need-to-prioritize-in-2023" target="_blank">
OWASP Kubernetes Top 10 Projects: What Risks You Need to Prioritise in 2023</a></center>
<center><a href="https://showcase.itcarlow.ie/C00292053.pdf" target="_blank">
Mitigate OWASP Top 10 Risks for Kubernetes with a Cloud-Native Response Engine</a></center>
<center><a href="https://tech-for-dev.vercel.app/articles/3859488" target="_blank" data-tags="techcrunch, miasma, worm">
Microsoft's npm Packages Got Backdoored. Again. And AI Agents Pulled the Trigger</a></center>
<center><a href="https://techcrunch.com/2026/06/08/microsofts-open-source-tools-were-hacked-to-steal-passwords-of-ai-developers/" target="_blank" data-tags="techcrunch, miasma, worm">
Microsoft’s open source tools were hacked to steal passwords of AI developers</a></center>
<center><a href="https://arstechnica.com/security/2026/06/for-the-2nd-time-in-weeks-microsoft-packages-laced-with-credential-stealer/" target="_blank" data-tags="techcrunch, arstechnica, miasma, worm">
For the 2nd time in weeks, Microsoft packages laced with credential stealer</a></center>
<center><a href="https://www.itpro.com/security/malware/miasma-malware-developer-warning-github-compromise" target="_blank" data-tags="techcrunch, miasma, itpro, worm">
Developers urged to remain vigilant amid continued Miasma malware risks</a></center>
<center><a href="https://www.sysdig.com/resources/webinars/address-insider-threats-with-sysdigs-cloud-detection-response-cdr" target="_blank">
Address Insider Threats with Sysdig’s Cloud Detection & Response (CDR)</a></center>
<center><a href="https://www.sysdig.com/content-library/webinars-od?commid=638887" target="_blank">
Stratoshark: Revolutionizing Cloud System Call and Log Analysis</a></center>
<center><a href="https://loop1.com/webinar/detect-troubleshoot-server-application-performance-issues-faster-with-solarwinds/" target="_blank" data-tags="solarwinds, appoptics, loggly, pingdom">
Troubleshoot Server & Application performance issues faster</a></center>
<center><a href="https://www.sysdig.com/content-library/webinars-od?commid=638887" target="_blank">
OWASP Top 10: Control Measures for Kubernetes Security</a></center>
<center><a href="https://go.sysdig.com/Streamlining-FalcoMgmt-Falcoctl" target="_blank">
Streamlining Falco Management: Introducing Falcoctl</a></center>
<center><a href="https://wireunwired.com/microsoft-pulls-70-github-repos-after-malware-breach/" target="_blank" data-tags="techcrunch, miasma, worm">
Microsoft pulls 70+ GH repos after malware breach</a></center>
<center><a href="https://lilting.ch/en/articles/microsoft-miasma-ai-agent-repo-stealer" target="_blank" data-tags="techcrunch, miasma, worm">
Miasma: AI agent startup, not npm install</a></center>
<center><a href="https://thecyberwire.com/newsletters/daily-briefing/15/109" target="_blank" data-tags="techcrunch, miasma, worm">
CyberWire Daily Briefing for 06.09.26</a></center>
<center><a href="https://cloudsmith.com/blog/cloud-native-digest-may-2026" target="_blank" data-tags="newsletter, kubernetes, worm">
Cloud Native Digest - May 2026</a></center>
<center><a href="https://cloudsmith.com/blog/cloud-native-digest-june-2026" target="_blank" data-tags="newsletter, kubernetes, worm">
Cloud Native Digest - June 2026</a></center>
<b><center><a href="https://www.meetup.com/corksec/events/303031694/" target="_blank">
How can we abuse AI hallucinations to feed the already bloated software supply chain</a></center></b>
<center><a href="https://www.setu.ie/Craft/assets/downloads/Industry_Showcase_Brochure_2024.pdf" target="_blank">
Masters of Science (Cybersecurity, Privacy & Trust) - Industry Showcase Brochure for 2024</a></center>
<center><a href="https://cyberireland.ie/ci-event/cybersecurity-industry-research-workshop-crci2024-carlow/" target="_blank">
Cybersecurity Research Workshop @ CRCI 2024: Bridge Academia & Industry for Real-World Impact</a></center>
</div>
<center><h1>Videos/Demos</h1></center>
<div class="video-container">
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/qsDt4w8ZQtw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://platformcon.com/sessions/the-ghost-in-the-machine-securing-ai-agent-skills" target="_blank" data-tags="platformcon, instruqt">
The ghost in the machine: Securing AI agent skills</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/IQPYklbTJQ4" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://platformcon.com/sessions/audit-ready-kubernetes-how-to-leverage-policy-as-code-for-continuous-compliance" target="_blank" data-tags="platformcon, instruqt">
Audit-ready Kubernetes: How to leverage policy-as-code for continuous compliance</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/G5SENvYxZS8?si=DbITQtJasUTwrniC" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://instruqt.com/customer-stories/cloudsmith" target="_blank" data-tags="kubecon, instruqt">
Cloudsmith builds developer trust faster with Instruqt</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/lUN5jXAJdxU?si=b6mVc4PdJf4jpPdN" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://instruqt.com/customer-stories/sysdig-2" target="_blank" data-tags="kubecon, instruqt">
Live workshops and demos with Cloudsmith</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/_dueSBgfySg?si=rLJjUw6l5RoKB7fw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://instruqt.com/customer-stories/cloudsmith" target="_blank" data-tags="kubecon, instruqt">
Sysdig trains 80+ Falco workshop attendees with Instruqt at KubeCon</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/zdy3uLjeLnk?si=U1DYIsDzvit_tkEb" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://platformcon.com/sessions/what-supply-chain-risks-are-hidden-in-your-helm-charts" target="_blank" data-tags="platform engineering, platformcon, Kubernetes">
What supply chain risks are hidden in your Helm charts?</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/9Mo_kDe01RY?si=r1osgL0QWPNGbf9c" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://cfp.cloud-native.rejekts.io/cloud-native-rejekts-europe-london-2025/talk/S9WEJM/" target="_blank" data-tags="cloud-native rejekts, cloud native rejekts">
API-driven security automation for AKS: Falco Talon meets eBPF-powered Retina</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/H-7LAo1IalY?si=kqUZlpbxaikIY06J" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://www.cncf.io/online-programs/cloud-native-live-managing-threat-intelligence-in-falco/" target="_blank" data-tags="cncf, sysdig, cloud-native">Cloud Native Live: Managing threat intelligence in Falco</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/jRgZtniSXFQ?si=RhFgec_T2kLzd7Gc" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://osseu2025.sched.com/event/25VxP" target="_blank" data-tags="solarwinds, apm, tracing">
Integrating EPSS and CVSS in Open Policy Agent To Quarantine Real-world Vulnerabilies</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/1ewRLb4cack?si=mt_SZ-3Yq7uTkGkd" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://community.cncf.io/events/details/cncf-cncf-online-programs-presents-cloud-native-live-falcosidekick-the-swiss-army-knife-for-cloud-native-security-amp-observability" target="_blank" data-tags="cncf, sysdig, cloud-native">
Cloud Native Live: Falcosidekick</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/g6oD3jDi8fs?si=uiTrJFzA0oR-a35d" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://go.sysdig.com/Cloud-NativeSecurityRedefinedEMEA.html" target="_blank" data-tags="cncf, sysdig, cloud-native">
Cloud Native Live: Introduction to Falco Talon</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/r2D4KkynrHA?si=iXFXad8VuNWGxVeB&start=1364" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://community.cncf.io/events/details/cncf-cncf-online-programs-presents-cncf-on-demand-webinar-project-calico-network-policies/" target="_blank" data-tags="cncf, tigera, cloud-native">
CNCF Webinar: Project Calico Network Policies</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/b7w8yiRzg2Q?si=TaZPrrhcwE_49v3n" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://github.com/nigel-falco/falco-talon-testing" target="_blank" data-tags="cncf, sysdig, falco, cloud native">
Remediate Cloud-Native Threats in Real-Time with Talon</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/i15Owm589bs?si=b4lHHmTPJcwo3Nrw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://events.pinetool.ai/3152/#sessions/105132?referrer%5Bpathname%5D=%2Fsessions&referrer%5Bsearch%5D=&referrer%5Btitle%5D=Sessions" target="_blank" data-tags="dev days, sysdig, cloud-native">
Falco Talon Demo at CyberWiseCon</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/cVc84Bmz1EA?si=1hdvArpXkj809Hej" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://sharkfest.wireshark.org/retrospective/sfus/presentations24/19.pdf" target="_blank" data-tags="sharkfest, sysdig">
An API-Driven approach to automating packet captures in Kubernetes</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/MvglcSagpCc?si=hqvRhL6y_PlJnTv-" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://securitysenses.com/videos/detect-and-respond-workload-threats" target="_blank">
Sysdig Demo - Securing Cloud, Containers, and Kubernetes</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/bRNufzgl8iY?si=_PmpIn3xq8vf0SVn" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://app.tidalcyber.com/vendors/52f60c20-b265-5a8b-96a3-2bcee76941ac" target="_blank" data-tags="sysdig">
Updated MITRE ATT&CK coverage chart for Sysdig on Tidal Cyber</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/moPJlFK_LFc?si=UjAsEnJ2k91BndPO" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://www.containerdays.io/containerdays-conference-2023/speakers/" target="_blank" data-tags="sysdig, containerdays">OWASP Kubernetes in-depth</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/045GaWyviDA?si=MpYuUsthLDmq4Pk5" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://mobile.x.com/aicampai/status/1637832115206213633" target="_blank" data-tags="sysdig, cloud-native">Introduction to Kubernetes Cloud Native Runtime Security</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/VSaYoAM2z5s?si=bOwwvie3Ayr3yvI2" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://www.suse.com/c/test-and-configure-active-security-for-containers-and-kubernetes-on-rancher-desktop-via-calico-cloud/" target="_blank">
Kubernetes Security with Rancher RKE2 and Calico Cloud</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/_9xw2VcsxiU?si=o-u8LIKqnv-dGsiw" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://kube.fm/sysdig-announces-falco-feeds" target="_blank">
Sysdig announces Falco Feeds for enhanced cloud security and compliance</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/uKVnVK2P1ps?si=JZSlnGYFTD2HUDWR" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://www.sysdig.com/blog/denial-of-service-kubernetes-calico-falco" target="_blank" data-tags="tigera, project calico, networking">
How to control access to data on Containers and Kubernetes</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/V7LD_J8C_Mw?si=FgSusryYnHRQURhK" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://loop1.com/webinar/detect-troubleshoot-server-application-performance-issues-faster-with-solarwinds/" target="_blank" data-tags="solarwinds, apm, tracing">
AppOptics - Application Performance Monitoring</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/90gZGbt7MAo?si=D4-Rv8_L8su-CXTj" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://github.com/ndouglas-cloudsmith/hunt-the-malicious-package/blob/main/yarn.lock" target="_blank" data-tags="platformcon, platform enginering, security">
Finding malware in self-service templates</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/7E0NGyoWWMs?si=HpoRNwxYbI_Zwds6" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://coderlegion.com/18336/3-actionable-security-upgrades-to-fix-npms-trust-problem" target="_blank" data-tags="platformcon, platform enginering, security">
Role of SBOM in maintaining regulatory compliance</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/5HAdFULDSak?si=Cp3lTKwPqQP9GDdB" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://cloudsmith.com/events/workshops/capture-the-flag-hunt-the-malicious-package" target="_blank" data-tags="ctf, chainguard, mend">
Capture The Flag hosted by Cloudsmith</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/yAi2xZp_nOY?si=oo_hGtFBuY0j0pxb" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://cloudsmith.com/blog/axios-npm-attack-response" target="_blank" data-tags="node.js, package, registry, worm">
Axios npm supply chain attack</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/bB-VDeQElf8?si=a0dnkv7pdNTbRMqu" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://devworldconference.com/" target="_blank" data-tags="DevWorld, AI, security">
Using AI to abuse the SSC</a></div>
<div class="video-block">
<iframe width="560" height="315" src="https://www.youtube.com/embed/zpd3C-k_VSo?si=l3hdvn5dQIXSQh9K" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
<a href="https://cloudsmith.com/blog/miasma-worms-path-of-destruction" target="_blank" data-tags="DevWorld, AI, security, Miasma, worm">
The Miasma worm explained: How it Hit Red Hat and Microsoft</a></div>
</div>
<center><a href="https://github.com/ndouglas-cloudsmith/ndouglas-cloudsmith.github.io/deployments/github-pages" target="_blank">
Github Pages Deployment Status</a></center>
</div>
<!-- CV CONTENT -->
<div id="cvContent">
<button class="btn" id="downloadCvBtn" style="width:100%"><i class="fa fa-download"></i> Download Resumé</button>
<h1>Nigel Douglas</h1>
<div class="contact">
<b>Email:</b> <a href="mailto:mossydouglas@gmail.com">mossydouglas@gmail.com</a></br>
<b>Phone:</b> (+353)834743639</br>
<b>Location:</b> Crosshaven, Co. Cork, Republic of Ireland
</div>
<div class="section">
<h2>Job Title</h2>
<p>Head of Developer Relations @ Cloudsmith</p>
</div>
<div class="section">
<h2>Short Introduction</h2>
<p>Experienced Technical Marketer from Cork, Republic of Ireland, with several years of experience in the DevOps, Platform Engineering and <b>Kubernetes</b> security. Currently leading the Developer Relations program at Cloudsmith, heading the global efforts to secure the software supply chain software through open source software development best practices, community outreach, and providing policy-as-code practices to improve existing pipelines. Active Subject Matter Expert (SME) cloud-native security, serving as a regular Program Committee Member for the Cloud-Native Computing Foundating (CNCF) since 2023, where I have contributed to the review process for security-specific papers that are submitted to conferences such as <b>KubeCon</b> and the <b>Cloud-Native Security Con</b>. Recognised in the CNCF, OpenSSF and OWASP communities for contributions to open source projects, such as Falco, Sysdig Inspect, OPA, Wireshark, OSV-Scanner, Calico, and Dependency-Track to name a few.</p>
</div>
<div class="section">
<h2>Employment History</h2>
<h3>Cloudsmith (March 2025 - Present)</h3>
<p><strong>Head of Developer Relations</strong></p>
<ul>
<li>Joining Cloudsmith, I was tasked with building out the Developer Relations program.</li>
<li>A heavy focus area was improving Cloudsmith's visibility in the OpenSSF & CNCF ecosystems.</li>
<li>This involved building out PoC Labs, publishing blogs in open-source publications, and public speaking</li>
<li><b>OpenSSF:</b> <small><a href="https://openssf.org/blog/2026/05/20/detecting-malicious-packages-using-the-osv-api" target="_blank">https://openssf.org/blog/2026/05/20/detecting-malicious-packages-using-the-osv-api</a></small></li>
<li><b>Open Source Summit:</b> <small><a href="https://www.youtube.com/watch?v=jRgZtniSXFQ" target="_blank">https://www.youtube.com/watch?v=jRgZtniSXFQ</a></small></li>
</ul>
<br/><br/>
<h3>Sysdig (July 2022 – March 2025)</h3>
<p><strong>Senior Open Source Security Architect</strong></p>
<ul>
<li>Originally joined to work on detection & response marketing segment of the Sysdig Enterprise platform.</li>
<li>Transitioned into the open-source software team - working with Sysdig Inspect, <b>Falco</b>, Wireshark and more.</li>
<li>Built workshop content around custom Falco rule creation, Days 2 operations, and kernel-level introspection.</li>
<li>Worked closely within the CNCF community - directly helping Falco in its graduation process from CNCF sandbox.</li>
</ul>
<p><strong>Skills:</strong> <b>syscall</b> inspection, <b>eBPF</b> and the Linux kernel, Falco policy curation</p>
<br/><br/>
<h3>Tigera (March 2021 – July 2022)</h3>
<p><strong>Senior Solutions Architect</strong></p>
<ul>
<li>Assisting prospects with demos, qualification, architecture, PoCs, and lab trials.</li>
<li>Specialised in Kubernetes network security through Network Policies & zero-trust architecture design practices.</li>
<li>Troubleshooted <b>IPTables</b> & <b>eBPF</b> dataplanes, integrating observability, and L7 policy enforcement through <b>Envoy</b>.</li>
<li>Contributed to Calico open source <b>docs</b>, weekly office hours, CNCF workshops/webinars/community meetups etc.</li>
</ul>
<p><strong>Skills:</strong> Kubernetes, Docker, Linux, Python & Bash, Container Security, Zero-trust network architecture design principles</p>
<br/><br/>
<h3>Solarwinds (August 2019 – March 2021)</h3>
<p><strong>Sales Engineer</strong></p>
<ul>
<li>Primarily working on the AppOptics Application Performance Monitoring (APM) solution.</li>
<li>Monitoring various application runtimes, Docker containers and <b>Kubernetes</b> for performance bottlenecks.</li>
<li>Demonstrated the value of event logging and tracing for the relevant container runtimes via Solarwinds Loggly.</li>
</ul>
<p><strong>Skills:</strong> Linux & container monitoring, virtualisation, traditional networking kits - routers, switches, firewalls</p>
<br/><br/>
<h3>Malwarebytes (January 2018 – July 2019)</h3>
<p><strong>Sales Engineer</strong></p>
<ul>
<li>Demonstrated the value of Malwarebytes' heuristic endpoint detection scanner.</li>
<li>Handle MD5 hash VirusTotal samples, in some cases testing samples in approved sandbox.</li>
<li>Lead workshops on evolving threats such as WannaCry ransomware and InfoStealer worms.</li>
</ul>
</div>
<br/><br/>
<div class="section">
<h2>Education</h2>
<p><strong>South East Technological University(2023–2024)</strong><br />
MSc in Cybersecurity, Privacy and Trust - First Class Honours (1:1)</p>
<p><strong>Technological University of the Shannon (2011–2014)</strong><br />
BSc in Creative Multimedia</p>
</div>
<div class="section">
<h2>Certifications</h2>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">PlatformCon 2026 Speaker (London)</h3>
<p style="margin: 5px 0;">Platform Engineering</p>
<p style="margin: 5px 0; color: #888;">Issued June 2026</p>
<small>Credential ID: <a href="https://www.virtualbadge.io/certificate-validator?credential=367e6530-6bfd-45e3-b014-1c552432131f" target="_blank">https://www.virtualbadge.io/certificate-validator?credential=367e6530-6bfd-45e3-b014-1c552432131f</a></small>
</div>
<a href="https://www.virtualbadge.io/certificate-validator?credential=5107f4ba-5f47-4ea5-a493-91041874a401" target="_blank">
<img src="https://vbeventstorage.blob.core.windows.net/cert-kgu9ratujvxe01gd-niyz/openbadges/badges/367e6530-6bfd-45e3-b014-1c552432131f.png?484" alt="Badge" class="cert-badge" /></a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">PlatformCon 2026 Virtual Workshops</h3>
<p style="margin: 5px 0;">Platform Engineering</p>
<p style="margin: 5px 0; color: #888;">Issued June 2026</p>
<small>Credential ID: <a href="https://www.virtualbadge.io/certificate-validator?credential=5107f4ba-5f47-4ea5-a493-91041874a401" target="_blank">https://www.virtualbadge.io/certificate-validator?credential=5107f4ba-5f47-4ea5-a493-91041874a401</a></small>
</div>
<a href="https://www.virtualbadge.io/certificate-validator?credential=5107f4ba-5f47-4ea5-a493-91041874a401" target="_blank">
<img src="https://vbeventstorage.blob.core.windows.net/cert-o0pukifnjliouamo-3yte/openbadges/badges/5107f4ba-5f47-4ea5-a493-91041874a401.png" alt="Badge" class="cert-badge" /></a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">Platform Engineering Ambassador</h3>
<p style="margin: 5px 0;">Platform Engineering</p>
<p style="margin: 5px 0; color: #888;">Issued March 2026 | Expires March 2027</p>
<small>Credential ID: <a href="https://www.virtualbadge.io/certificate-validator?credential=adb338b8-be5d-4095-afa1-ae0f1203be83" target="_blank">https://www.virtualbadge.io/certificate-validator?credential=adb338b8-be5d-4095-afa1-ae0f1203be83</a></small>
</div>
<a href="https://www.virtualbadge.io/certificate-validator?credential=adb338b8-be5d-4095-afa1-ae0f1203be83" target="_blank">
<img src="https://vbeventstorage.blob.core.windows.net/cert-15jiyitgp5ee6dzv-5qrc/openbadges/badges/adb338b8-be5d-4095-afa1-ae0f1203be83.png" alt="Badge" class="cert-badge" /></a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">Program Committee Member: KubeCon + CloudNativeCon Europe 2026</h3>
<p style="margin: 5px 0;">The Linux Foundation</p>
<p style="margin: 5px 0; color: #888;">Issued December 2025</p>
<small>Credential ID: <a href="https://www.credly.com/badges/72386db5-4ec9-458b-91fa-8ad370c1455b/public_url" target="_blank">https://www.credly.com/badges/72386db5-4ec9-458b-91fa-8ad370c1455b/public_url</a></small>
</div>
<a href="https://www.credly.com/badges/72386db5-4ec9-458b-91fa-8ad370c1455b/public_url" target="_blank">
<img src="https://images.credly.com/size/340x340/images/f09ecd0d-af5b-4933-9919-5db84511eae4/blob" alt="Badge" class="cert-badge" />
</a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">Speaker: Open Source Summit Europe 2025</h3>
<p style="margin: 5px 0;">The Linux Foundation</p>
<p style="margin: 5px 0; color: #888;">Issued September 2025</p>
<small>Credential ID: <a href="https://www.credly.com/badges/095f7415-7eba-495a-b7ed-06615f55da4d/public_url" target="_blank">https://www.credly.com/badges/095f7415-7eba-495a-b7ed-06615f55da4d/public_url</a></small>
</div>
<a href="https://www.credly.com/badges/095f7415-7eba-495a-b7ed-06615f55da4d/public_url" target="_blank">
<img src="https://images.credly.com/size/340x340/images/01c72962-d77b-4b19-9533-e5c40ce03ece/blob" alt="Badge" class="cert-badge" />
</a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">Program Committee Member: KubeCon + CloudNativeCon India 2025</h3>
<p style="margin: 5px 0;">The Linux Foundation</p>
<p style="margin: 5px 0; color: #888;">Issued May 2025</p>
<small>Credential ID: <a href="https://www.credly.com/badges/35b09775-a005-4207-8b75-db8c574e98fe/public_url" target="_blank">https://www.credly.com/badges/35b09775-a005-4207-8b75-db8c574e98fe/public_url</a></small>
</div>
<a href="https://www.credly.com/badges/35b09775-a005-4207-8b75-db8c574e98fe/public_url" target="_blank">
<img src="https://images.credly.com/size/340x340/images/22b06bbc-75ce-45b7-b39a-eddf5750847c/blob" alt="Badge" class="cert-badge" />
</a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">Program Committee Member: KubeCon + CloudNativeCon China 2025</h3>
<p style="margin: 5px 0;">The Linux Foundation</p>
<p style="margin: 5px 0; color: #888;">Issued March 2025</p>
<small>Credential ID: <a href="https://www.credly.com/badges/f348301e-03b4-45fb-b506-1898480a7b00/public_url" target="_blank">https://www.credly.com/badges/f348301e-03b4-45fb-b506-1898480a7b00/public_url</a></small>
</div>
<a href="https://www.credly.com/badges/f348301e-03b4-45fb-b506-1898480a7b00/public_url" target="_blank">
<img src="https://images.credly.com/size/340x340/images/43195a73-9ee6-40c7-bd75-eae8515ac836/blob" alt="Badge" class="cert-badge" />
</a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">Program Committee Member: KubeCon + CloudNativeCon Europe 2025</h3>
<p style="margin: 5px 0;">The Linux Foundation</p>
<p style="margin: 5px 0; color: #888;">Issued January 2025</p>
<small>Credential ID: <a href="https://www.credly.com/badges/92c3c619-d0e6-4d8a-8796-2680f617abc4/public_url" target="_blank">https://www.credly.com/badges/92c3c619-d0e6-4d8a-8796-2680f617abc4/public_url</a></small>
</div>
<a href="https://www.credly.com/badges/92c3c619-d0e6-4d8a-8796-2680f617abc4/public_url" target="_blank">
<img src="https://images.credly.com/size/340x340/images/5be4c74d-322f-476b-9fc9-72fda9c31ff2/blob" alt="Badge" class="cert-badge" />
</a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">Program Committee Member: KubeCon + CloudNativeCon India 2024</h3>
<p style="margin: 5px 0;">The Linux Foundation</p>
<p style="margin: 5px 0; color: #888;">Issued October 2024</p>
<small>Credential ID: <a href="https://www.credly.com/badges/28a89999-3320-4914-b098-cc4f7ecbdf02/public_url" target="_blank">https://www.credly.com/badges/28a89999-3320-4914-b098-cc4f7ecbdf02/public_url</a></small>
</div>
<a href="https://www.credly.com/badges/28a89999-3320-4914-b098-cc4f7ecbdf02/public_url" target="_blank">
<img src="https://images.credly.com/size/340x340/images/68359281-14a2-4996-8d88-057bfbf4cf69/blob" alt="Badge" class="cert-badge" />
</a>
</div>
<div class="cert-block">
<div class="cert-text">
<h3 style="margin-top: 0; border: none; padding: 0;">Program Committee Member</h3>
<p style="margin: 5px 0;">eBPF Summit</p>
<p style="margin: 5px 0; color: #888;">Issued September 2024</p>
</div>
<a href="https://www.cncf.io/blog/2024/11/06/why-falcos-new-response-engine-is-a-game-changer-for-open-source-cloud-native-security" target="_blank">
<img src="https://explore-feed.github.com/topics/ebpf/ebpf.png" alt="Badge" class="cert-badge" /></a>
</div>