-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
785 lines (717 loc) · 59.1 KB
/
index.html
File metadata and controls
785 lines (717 loc) · 59.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
<html>
<head>
<title>ndouglas resume</title>
<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;
}
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; }
}
body.light-mode {
background-color: white;
color: black;
}
body.light-mode h1,
body.light-mode a {
color: black;
text-shadow: none;
}
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;
}
.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: #0d0d0d;
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; }
</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><h1>Miscellaneous</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://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">Decentralized Smart Contract manager for distributing native tokens</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>Blog Posts</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>
<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.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><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 Prioritize 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://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>
<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/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/_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/sysdig-2" 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>
<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">
<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>Summary</h2>
<p>Head of Developer Relations @ Cloudsmith</p>
</div>
<div class="section">
<h2>Summary</h2>
<p>Experienced Technical Marketer from Cork, Republic of Ireland, with several years of experience in DevOps and Kubernetes security. Currently leading Developer Relations efforts at Cloudsmith, driving global efforts to secure the software supply chain software through software development best practices, community outreach, and providing policy-as-code automation solutions in Git pipelines, build processes and container orchestration. Active Subject Matter Expert in compiling the Kubernetes release notes in the cloud-native ecosystem, serving as a regular program committee member for the Cloud-Native Computing Foundating (CNCF) since 2019, where I contribute to the assessment of security-specific papers that are submitted to conferences such as KubeCon and the cloud-native security con. Recognised for long-standing contributions to open-source projects, such as Falco, Sysdig Inspect, OPA and Trivy.</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>In the process of writing something interesting.</li>
</ul>
<p><strong>Achievements:</strong></p>
<ul>
<li>Won the 2025 “Noob of the Year” awards for exceptional contributions to Cloudsmith in my first year.</li>
</ul>
<h3>Sysdig (July 2022 – March 2025)</h3>
<p><strong>Senior Open Source Security Architect</strong></p>
<ul>
<li>In the process of writing something interesting.</li>
</ul>
<h3>Tigera (March 2021 – July 2022)</h3>
<p><strong>Senior Solutions Architect</strong></p>
<ul>
<li>Assisting potential customers 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 IPTables activity, integrating with Prometheus & Grafana, as well as enforcing Layer 7 policies.</li>
<li>Responding to proposals and RFIs/RFPs for direct customers and channel partners.</li>
</ul>
<p><strong>Skills:</strong> Kubernetes, Docker, Linux, Python & Bash, Container Security, Zero-trust architecture design principles</p>
<h3>Solarwinds (August 2019 – March 2021)</h3>
<p><strong>Sales Engineer</strong></p>
<ul>
<li>Set and managed expectations with senior stakeholders and team members.</li>
<li>Improved and developed upon technical marketing documentation for multiple products.</li>
</ul>
<p><strong>Skills:</strong> Windows Admin, Traditional network kit - routers, switches, firewalls</p>
<h3>Malwarebytes (January 2018 – July 2019)</h3>
<p><strong>Web Application Security Researcher</strong></p>
<ul>
<li>Established integrations with IT Service Management solutions such as ServiceNow and Splunk.</li>
<li>Extensive working experience with ITSM tools and ITIL best-practices.</li>
<li>Leadership of EMEA support ops when collaborating with Product Management.</li>
</ul>
</div>
<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>Achievements</h2>
<ul>
<li><a href="https://www.credly.com/badges/095f7415-7eba-495a-b7ed-06615f55da4d/public_url">Speaker - Open Source Summit Europe 2025</a></li>
<li><a href="https://www.credly.com/badges/e2356222-1d23-4cf8-8917-f9bc201e9f8b/public_url">Program Committee Member: KubeCon + CloudNativeCon Europe 2025</a></li>
</ul>
</div>
<div class="section">
<h2>Recommendations</h2>
<div class="recommendation">
<p><strong>Juliana Kelly – VP Marketing, Cloudsmith:</strong><br />
"Nigel was tasked with setting up new community engagement training material at Cloudsmith, from scratch. These Instruqt training labs served as a solution for internal and external training. Nigel completely over-delivered in this area, and if his work had been done by a team of 5 people, it would still have been impressive."
</p>
</div>
<div class="recommendation">
<p><strong>Blair Howard – Principal Product Marketing Manager, Sysdig:</strong><br />
"Nigel has top-notch skills as both a technical marketer and as a developer advocate. While on the team, he over delivered on his personal assignments, worked to improve our team processes and shared his skills and knowledge with the rest of the marketing organisation to help up-level and upskill them on developments within the cloud-native ecosystem, in open-source Falco, as well as overall security awareness."
</p>
</div>
<div class="recommendation">
<p><strong>Philippe Bogaerts – Senior Solutions Architect, Tigera:</strong><br /></p>
<p>"Working with Nigel has been one of those rare professional experiences where you quickly realize you're collaborating with someone operating at a different level. Nigel brings a calm confidence and quiet intensity to his work that consistently elevates everything and everyone around him.</p>
<p>Nigel has a deep intuition for threat research and an uncanny ability to spot patterns and behaviors others might miss. Whether he's investigating large-scale bot campaigns or digging into obscure edge cases, he brings clarity and rigor to every project. He has a sharp eye for technical detail, but also the broader perspective to understand how those details affect real-world security.</p>
<p>What I appreciate most about Nigel is that he's not only a strong individual contributor, but also a team-first kind of guy. He takes the time to share what he knows, helps others level up without ego, and genuinely makes the team better by being part of it.</p>
<p>If you're looking for someone who will raise the bar in meaningful, lasting ways, Dean is that person."</p>
</div>
<div class="recommendation">
<p><strong>Owen Murphy - Principal Product Marketing Manager, Solarwinds</strong><br />
"I had the absolute pleasure of working alongside Nigel at Solarwinds, and I can say without hesitation that he’s one of the most technically brilliant and resourceful people I’ve met. He has a rare mix of deep technical expertise, creativity, and fearless problem-solving, the kind of person who will take on any challenge head-on and find an elegant, effective solution.</p>
<p>From building smart, automated systems to catch bad actors based on domain reputation to designing mitigation policies by clustering the highest-performing detection rules, Nigel consistently delivered work that made a lasting impact. One of my favourite moments was collaborating with him on the company-wide hackathon, which we won; the idea we developed together went on to become a part of the company’s flagship offerings.</p>
<p>Beyond his technical skills, Nigel is a joy to work with - funny, positive, down-to-earth, and the easiest person to collaborate with. His punctuality, work ethic, and ability to bring out the best in his teammates make him a huge asset to any company lucky enough to have him."</p>
</div>
<div class="recommendation">
<p><strong>Shane Duggan – Account Executive, Malwarebytes</strong><br /></p>
<p>"Nigel consistently exceeded expectations during my time working with him, demonstrating exceptional technical expertise and innovation. He managed client relationships with outstanding professionalism, whether remotely or in person. He took client problems from concept and design through to full production implementation.</p>
<p>His combination of technical excellence, client management, and ability to deliver on complex projects makes him an invaluable asset to any organisation.</p>
</div>
</div>
</div>
<script>
let boldFlickerTimers = [];
let dimLoopTimer = null;
function startBoldFlicker() {
const bolds = Array.from(document.getElementsByTagName('b'));
function flickerElement(el) {
el.classList.add('flicker');
setTimeout(() => el.classList.remove('flicker'), 100 + Math.random() * 200);
}
function scheduleFlicker(el) {
const delay = Math.floor(Math.random() * 1500) + 200;
const id = setTimeout(() => {
flickerElement(el);
scheduleFlicker(el);
}, delay);
boldFlickerTimers.push(id);
}
bolds.forEach(scheduleFlicker);
}
function stopBoldFlicker() {
boldFlickerTimers.forEach(clearTimeout);
boldFlickerTimers = [];
}
function startDimLoop() {
function loop() {
document.body.classList.toggle('dim', Math.random() > 0.5);
dimLoopTimer = setTimeout(loop, Math.floor(Math.random() * 450) + 80);
}
loop();
}
function stopDimLoop() {
clearTimeout(dimLoopTimer);
document.body.classList.remove('dim');
}
document.getElementById('darkModeToggle').addEventListener('click', () => {
document.body.classList.toggle('light-mode');
const darkMode = !document.body.classList.contains('light-mode');
if (darkMode) {
startBoldFlicker(); startDimLoop(); document.getElementById('darkModeToggle').textContent = '☾';
} else {
stopBoldFlicker(); stopDimLoop(); document.getElementById('darkModeToggle').textContent = '☀';
}
});
startBoldFlicker(); startDimLoop();
// SEARCH HANDLING
document.getElementById('linkSearch').addEventListener('input', function () {
const query = this.value.trim().toLowerCase();
const mainContent = document.getElementById('mainContent');
const cvContent = document.getElementById('cvContent');
if (['cv','resume','curriculum vitae'].includes(query)) {
mainContent.style.display = 'none';
cvContent.style.display = 'block';
} else {
mainContent.style.display = 'block';
cvContent.style.display = 'none';
// normal filtering
const links = document.querySelectorAll('#mainContent a');
links.forEach(link => {
const text = link.textContent.toLowerCase();
const tags = (link.getAttribute('data-tags') || '').toLowerCase();
const parent = link.closest('center, div, p') || link;
if (query === '' || text.includes(query) || tags.includes(query)) {
parent.style.display = '';
} else {
parent.style.display = 'none';
}
});
}
});
document.getElementById('clearSearch').addEventListener('click', () => {
const searchInput = document.getElementById('linkSearch');
searchInput.value = '';
searchInput.dispatchEvent(new Event('input'));
});
</script>
</body>
</html>