-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathmeetings.html
More file actions
1695 lines (1678 loc) · 119 KB
/
meetings.html
File metadata and controls
1695 lines (1678 loc) · 119 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="robots" content="index, follow, max-snippet:-1, max-image-preview:large">
<meta name="description" content="Weekly cloud security meeting recaps from CSOH - topic-by-topic notes on AI governance, supply-chain attacks, conferences and community discussions.">
<meta name="keywords" content="cloud security meeting recaps, CSOH meetings, weekly cloud security, Friday Zoom, AI security, supply chain, cloud incidents">
<title>Cloud Security Meeting Recaps - Cloud Security Office Hours</title>
<link rel="canonical" href="https://csoh.org/meetings.html">
<link rel="alternate" hreflang="en-US" href="https://csoh.org/meetings.html">
<link rel="alternate" hreflang="x-default" href="https://csoh.org/meetings.html">
<link rel="alternate" type="application/rss+xml" title="CSOH Cloud Security News" href="/feed.xml">
<link rel="icon" type="image/png" href="/favicon.png">
<link rel="manifest" href="/manifest.json">
<link rel="author" type="text/plain" href="/humans.txt">
<meta name="theme-color" content="#0f172a">
<meta name="apple-mobile-web-app-title" content="CSOH">
<meta property="og:title" content="Cloud Security Meeting Recaps - CSOH">
<meta property="og:description" content="Weekly cloud security meeting recaps from CSOH - 94 sessions of vendor-neutral practitioner discussion.">
<meta property="og:site_name" content="Cloud Security Office Hours">
<meta property="og:locale" content="en_US">
<meta property="og:type" content="website">
<meta property="og:url" content="https://csoh.org/meetings.html">
<meta property="og:image" content="https://csoh.org/img/og/meetings.jpg">
<meta name="twitter:card" content="summary_large_image">
<meta name="twitter:title" content="Cloud Security Meeting Recaps">
<meta name="twitter:description" content="Weekly cloud security meeting recaps from 94 CSOH sessions.">
<meta name="twitter:image" content="https://csoh.org/img/og/meetings.jpg">
<!-- Resource hints: warm up TCP+TLS to high-traffic external origins
(the Zoom signup, GitHub, sponsor link, and YouTube image CDN
that hosts the presentation card thumbnails). Saves 100-300ms
on the first navigation/hover-to-fetch to each. -->
<link rel="preconnect" href="https://csoh.kit.com" crossorigin>
<link rel="preconnect" href="https://github.com" crossorigin>
<link rel="dns-prefetch" href="https://github.com">
<link rel="dns-prefetch" href="https://www.paypal.com/us/home">
<link rel="dns-prefetch" href="https://img.youtube.com">
<link rel="preload" href="/style.css?v=524a821c" as="style"
integrity="sha384-TGMgRMztBpuCJ/qqYOeAQiFtuvBJ005mxKFqNb7ZHkiRtMqWvI6Mthr44eXWOulQ">
<link rel="stylesheet" href="/style.css?v=524a821c"
integrity="sha384-TGMgRMztBpuCJ/qqYOeAQiFtuvBJ005mxKFqNb7ZHkiRtMqWvI6Mthr44eXWOulQ">
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "CollectionPage",
"name": "Cloud Security Meeting Recaps",
"description": "Weekly cloud security meeting recaps - topic-by-topic notes from 94 CSOH sessions.",
"url": "https://csoh.org/meetings.html",
"isAccessibleForFree": true,
"inLanguage": "en-US",
"publisher": {
"@type": "Organization",
"name": "Cloud Security Office Hours",
"url": "https://csoh.org/",
"logo": "https://csoh.org/banner.png"
}
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "BreadcrumbList",
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"name": "Home",
"item": "https://csoh.org/"
},
{
"@type": "ListItem",
"position": 2,
"name": "Meeting Recaps",
"item": "https://csoh.org/meetings.html"
}
]
}
</script>
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "ItemList",
"name": "Cloud Security Meeting Recaps",
"description": "Weekly cloud-security meeting recaps from CSOH Friday Zoom sessions.",
"numberOfItems": 94,
"itemListElement": [
{
"@type": "ListItem",
"position": 1,
"url": "https://csoh.org/meetings/2026-05-08.html",
"name": "2026-05-08: Cloud backup strategies, securing local AI agents, ServiceNow's Armis acquisition"
},
{
"@type": "ListItem",
"position": 2,
"url": "https://csoh.org/meetings/2026-05-01.html",
"name": "2026-05-01: CSOH website overhaul, SBOMs and the EU Cyber Resilience Act, DevSecOps hiring"
},
{
"@type": "ListItem",
"position": 3,
"url": "https://csoh.org/meetings/2026-04-24.html",
"name": "2026-04-24: AI 'token-maxxing' debate, Bitwarden CLI supply-chain breach, funding open-source maintainers"
},
{
"@type": "ListItem",
"position": 4,
"url": "https://csoh.org/meetings/2026-04-17.html",
"name": "2026-04-17: AI's impact on cybersecurity, Microsoft Red Sun zero-day, HSBC password controversy"
},
{
"@type": "ListItem",
"position": 5,
"url": "https://csoh.org/meetings/2026-04-10.html",
"name": "2026-04-10: Open-source supply chain attacks, GitHub Actions hardening, early-computing nostalgia"
},
{
"@type": "ListItem",
"position": 6,
"url": "https://csoh.org/meetings/2026-04-03.html",
"name": "2026-04-03: RSA recap, Claude code leak, "Meeple" talk, AI governance and graph-backed ontologies"
},
{
"@type": "ListItem",
"position": 7,
"url": "https://csoh.org/meetings/2026-03-27.html",
"name": "2026-03-27: LiteLLM compromise, RSA attendance dip, supply-chain mitigations"
},
{
"@type": "ListItem",
"position": 8,
"url": "https://csoh.org/meetings/2026-03-20.html",
"name": "2026-03-20: Guest speaker Maria Thomas on behavioral science and online harassment"
},
{
"@type": "ListItem",
"position": 9,
"url": "https://csoh.org/meetings/2026-03-13.html",
"name": "2026-03-13: Wiz acquired by Google, Unicode supply-chain attacks, grad-school advice"
},
{
"@type": "ListItem",
"position": 10,
"url": "https://csoh.org/meetings/2026-03-06.html",
"name": "2026-03-06: Java auth vulnerability, SBOM debates, RSA OPSEC, DEF CON war stories"
},
{
"@type": "ListItem",
"position": 11,
"url": "https://csoh.org/meetings/2026-02-27.html",
"name": "2026-02-27: RSA Conference Planning and Updates"
},
{
"@type": "ListItem",
"position": 12,
"url": "https://csoh.org/meetings/2026-02-20.html",
"name": "2026-02-20: Password security, MFA > complexity, RSA planning, AI coding agents"
},
{
"@type": "ListItem",
"position": 13,
"url": "https://csoh.org/meetings/2026-02-13.html",
"name": "2026-02-13: 3-year anniversary, new AI-built CSOH website, policy as code"
},
{
"@type": "ListItem",
"position": 14,
"url": "https://csoh.org/meetings/2026-02-06.html",
"name": "2026-02-06: AI in coding, data provenance, and homeschooling with LLMs"
},
{
"@type": "ListItem",
"position": 15,
"url": "https://csoh.org/meetings/2026-01-30.html",
"name": "2026-01-30: Insider threats, AI policy challenges, GRC frameworks"
},
{
"@type": "ListItem",
"position": 16,
"url": "https://csoh.org/meetings/2026-01-23.html",
"name": "2026-01-23: Cloud Security Office Hours Launch"
},
{
"@type": "ListItem",
"position": 17,
"url": "https://csoh.org/meetings/2026-01-16.html",
"name": "2026-01-16: Technical Troubleshooting and Light Banter"
},
{
"@type": "ListItem",
"position": 18,
"url": "https://csoh.org/meetings/2026-01-09.html",
"name": "2026-01-09: Dungeons & Dragons Masterclass Discussion"
},
{
"@type": "ListItem",
"position": 19,
"url": "https://csoh.org/meetings/2026-01-02.html",
"name": "2026-01-02: LinkedIn and Python Group Updates"
},
{
"@type": "ListItem",
"position": 20,
"url": "https://csoh.org/meetings/2025-12-26.html",
"name": "2025-12-26: 2026 Cloud Security Predictions"
},
{
"@type": "ListItem",
"position": 21,
"url": "https://csoh.org/meetings/2025-12-19.html",
"name": "2025-12-19: Quick Catch-Up on Recent Activities"
},
{
"@type": "ListItem",
"position": 22,
"url": "https://csoh.org/meetings/2025-12-12.html",
"name": "2025-12-12: Cloud Security Vendor Collaboration Meeting"
},
{
"@type": "ListItem",
"position": 23,
"url": "https://csoh.org/meetings/2025-12-05.html",
"name": "2025-12-05: Prague Travel Plans Discussion"
},
{
"@type": "ListItem",
"position": 24,
"url": "https://csoh.org/meetings/2025-11-28.html",
"name": "2025-11-28: Thanksgiving Reflection and Planning"
},
{
"@type": "ListItem",
"position": 25,
"url": "https://csoh.org/meetings/2025-11-21.html",
"name": "2025-11-21: Religion Building and Hacking Discussion"
},
{
"@type": "ListItem",
"position": 26,
"url": "https://csoh.org/meetings/2025-11-14.html",
"name": "2025-11-14: Open Source Security Funding Challenges"
},
{
"@type": "ListItem",
"position": 27,
"url": "https://csoh.org/meetings/2025-11-07.html",
"name": "2025-11-07: Cloud Security Collaboration Introduction"
},
{
"@type": "ListItem",
"position": 28,
"url": "https://csoh.org/meetings/2025-10-31.html",
"name": "2025-10-31: Patrick's Halloween Costume Discussion"
},
{
"@type": "ListItem",
"position": 29,
"url": "https://csoh.org/meetings/2025-10-24.html",
"name": "2025-10-24: Cyber Threats and Security Awareness"
},
{
"@type": "ListItem",
"position": 30,
"url": "https://csoh.org/meetings/2025-10-17.html",
"name": "2025-10-17: Cryptocurrency and Security Discussion"
},
{
"@type": "ListItem",
"position": 31,
"url": "https://csoh.org/meetings/2025-10-10.html",
"name": "2025-10-10: Cybersecurity Career Journey Discussion"
},
{
"@type": "ListItem",
"position": 32,
"url": "https://csoh.org/meetings/2025-10-03.html",
"name": "2025-10-03: Cloud Security Office Hours Discussion"
},
{
"@type": "ListItem",
"position": 33,
"url": "https://csoh.org/meetings/2025-09-26.html",
"name": "2025-09-26: Business Updates and Personal Check-ins"
},
{
"@type": "ListItem",
"position": 34,
"url": "https://csoh.org/meetings/2025-09-19.html",
"name": "2025-09-19: Event Planning and Platform Discussion"
},
{
"@type": "ListItem",
"position": 35,
"url": "https://csoh.org/meetings/2025-09-12.html",
"name": "2025-09-12: Cloud Security Office Hours Discussion"
},
{
"@type": "ListItem",
"position": 36,
"url": "https://csoh.org/meetings/2025-09-05.html",
"name": "2025-09-05: Cloud Security Office Hours Overview"
},
{
"@type": "ListItem",
"position": 37,
"url": "https://csoh.org/meetings/2025-08-29.html",
"name": "2025-08-29: Security Protocols and Threat Detection"
},
{
"@type": "ListItem",
"position": 38,
"url": "https://csoh.org/meetings/2025-08-22.html",
"name": "2025-08-22: DIY Threat Intelligence Platform Workshop"
},
{
"@type": "ListItem",
"position": 39,
"url": "https://csoh.org/meetings/2025-08-15.html",
"name": "2025-08-15: Cloud Security Presentation Planning"
},
{
"@type": "ListItem",
"position": 40,
"url": "https://csoh.org/meetings/2025-08-08.html",
"name": "2025-08-08: Russia Investigation Origins and Media Influence"
},
{
"@type": "ListItem",
"position": 41,
"url": "https://csoh.org/meetings/2025-08-01.html",
"name": "2025-08-01: Patrick Burke (Chainguard) on minimal container images and FedRAMP SLAs"
},
{
"@type": "ListItem",
"position": 42,
"url": "https://csoh.org/meetings/2025-07-25.html",
"name": "2025-07-25: Technical Difficulties and Presentation Planning"
},
{
"@type": "ListItem",
"position": 43,
"url": "https://csoh.org/meetings/2025-07-18.html",
"name": "2025-07-18: Tech Topics and Encryption Claims"
},
{
"@type": "ListItem",
"position": 44,
"url": "https://csoh.org/meetings/2025-07-11.html",
"name": "2025-07-11: Cybersecurity Rotational Programs Discussion"
},
{
"@type": "ListItem",
"position": 45,
"url": "https://csoh.org/meetings/2025-07-04.html",
"name": "2025-07-04: Meeting Attendance and Group Dynamics"
},
{
"@type": "ListItem",
"position": 46,
"url": "https://csoh.org/meetings/2025-06-27.html",
"name": "2025-06-27: Making Choices and Taking Initiative"
},
{
"@type": "ListItem",
"position": 47,
"url": "https://csoh.org/meetings/2025-06-20.html",
"name": "2025-06-20: Cloud Security Community Networking Event"
},
{
"@type": "ListItem",
"position": 48,
"url": "https://csoh.org/meetings/2025-06-13.html",
"name": "2025-06-13: Cloud Security Community Engagement"
},
{
"@type": "ListItem",
"position": 49,
"url": "https://csoh.org/meetings/2025-06-06.html",
"name": "2025-06-06: Seeking Healing and Connection"
},
{
"@type": "ListItem",
"position": 50,
"url": "https://csoh.org/meetings/2025-05-30.html",
"name": "2025-05-30: Cloud Security Office Hours Introduction"
},
{
"@type": "ListItem",
"position": 51,
"url": "https://csoh.org/meetings/2025-05-23.html",
"name": "2025-05-23: Meeting Introduction and Presenter Overview"
},
{
"@type": "ListItem",
"position": 52,
"url": "https://csoh.org/meetings/2025-05-16.html",
"name": "2025-05-16: Team Celebrates Shawn's Medical News"
},
{
"@type": "ListItem",
"position": 53,
"url": "https://csoh.org/meetings/2025-05-09.html",
"name": "2025-05-09: Cloud Security Office Hours Introduction"
},
{
"@type": "ListItem",
"position": 54,
"url": "https://csoh.org/meetings/2025-05-02.html",
"name": "2025-05-02: Cloud Security Office Hours Discussion"
},
{
"@type": "ListItem",
"position": 55,
"url": "https://csoh.org/meetings/2025-04-25.html",
"name": "2025-04-25: Cloud Security Office Hours Meeting"
},
{
"@type": "ListItem",
"position": 56,
"url": "https://csoh.org/meetings/2025-04-18.html",
"name": "2025-04-18: Dance, Tesla, and Hospitality Discussion"
},
{
"@type": "ListItem",
"position": 57,
"url": "https://csoh.org/meetings/2025-04-11.html",
"name": "2025-04-11: Security Officers' Open Discussion Meeting"
},
{
"@type": "ListItem",
"position": 58,
"url": "https://csoh.org/meetings/2025-04-04.html",
"name": "2025-04-04: Shawn's Recovery Update and Team Discussion"
},
{
"@type": "ListItem",
"position": 59,
"url": "https://csoh.org/meetings/2025-03-28.html",
"name": "2025-03-28: New Members and Surgery Update"
},
{
"@type": "ListItem",
"position": 60,
"url": "https://csoh.org/meetings/2025-03-21.html",
"name": "2025-03-21: Wiz Acquisition and Shawn's Recovery"
},
{
"@type": "ListItem",
"position": 61,
"url": "https://csoh.org/meetings/2025-03-14.html",
"name": "2025-03-14: Upcoming Activities and Team Updates"
},
{
"@type": "ListItem",
"position": 62,
"url": "https://csoh.org/meetings/2025-03-07.html",
"name": "2025-03-07: Gathering and Tech Issue Discussion"
},
{
"@type": "ListItem",
"position": 63,
"url": "https://csoh.org/meetings/2025-02-28.html",
"name": "2025-02-28: Understanding Acronyms and Cloud Security"
},
{
"@type": "ListItem",
"position": 64,
"url": "https://csoh.org/meetings/2025-02-21.html",
"name": "2025-02-21: Request Timeline and PM Transition"
},
{
"@type": "ListItem",
"position": 65,
"url": "https://csoh.org/meetings/2025-02-14.html",
"name": "2025-02-14: New Members Join Cloud Security Office"
},
{
"@type": "ListItem",
"position": 66,
"url": "https://csoh.org/meetings/2025-02-07.html",
"name": "2025-02-07: Career Pivot Challenges and Networking"
},
{
"@type": "ListItem",
"position": 67,
"url": "https://csoh.org/meetings/2025-01-31.html",
"name": "2025-01-31: Cloud Security Professionals Network"
},
{
"@type": "ListItem",
"position": 68,
"url": "https://csoh.org/meetings/2025-01-24.html",
"name": "2025-01-24: Cybersecurity Concerns and Election Integrity"
},
{
"@type": "ListItem",
"position": 69,
"url": "https://csoh.org/meetings/2025-01-17.html",
"name": "2025-01-17: Welcome and AI Presentation Discussion"
},
{
"@type": "ListItem",
"position": 70,
"url": "https://csoh.org/meetings/2025-01-10.html",
"name": "2025-01-10: Azure Cloud Community Leader Presentation"
},
{
"@type": "ListItem",
"position": 71,
"url": "https://csoh.org/meetings/2025-01-03.html",
"name": "2025-01-03: Cloud Detection Engineering Presentation"
},
{
"@type": "ListItem",
"position": 72,
"url": "https://csoh.org/meetings/2024-12-27.html",
"name": "2024-12-27: Christmas Celebrations and Newcomers"
},
{
"@type": "ListItem",
"position": 73,
"url": "https://csoh.org/meetings/2024-12-20.html",
"name": "2024-12-20: Casual Conversation and Job Opportunity"
},
{
"@type": "ListItem",
"position": 74,
"url": "https://csoh.org/meetings/2024-12-13.html",
"name": "2024-12-13: AI Recording and Team Introductions"
},
{
"@type": "ListItem",
"position": 75,
"url": "https://csoh.org/meetings/2024-11-29.html",
"name": "2024-11-29: Addressing AI Risks in Security Reports"
},
{
"@type": "ListItem",
"position": 76,
"url": "https://csoh.org/meetings/2024-11-22.html",
"name": "2024-11-22: New Attendees and Wiz Implementation"
},
{
"@type": "ListItem",
"position": 77,
"url": "https://csoh.org/meetings/2024-11-15.html",
"name": "2024-11-15: New Members Introduce Themselves"
},
{
"@type": "ListItem",
"position": 78,
"url": "https://csoh.org/meetings/2024-11-08.html",
"name": "2024-11-08: Diverse Group Shares Cloud Security Experiences"
},
{
"@type": "ListItem",
"position": 79,
"url": "https://csoh.org/meetings/2024-11-01.html",
"name": "2024-11-01: Addressing Vulnerabilities and RDP Security"
},
{
"@type": "ListItem",
"position": 80,
"url": "https://csoh.org/meetings/2024-10-25.html",
"name": "2024-10-25: Transitioning to Cloud-Based Systems Challenges"
},
{
"@type": "ListItem",
"position": 81,
"url": "https://csoh.org/meetings/2024-10-18.html",
"name": "2024-10-18: Water Polo Dedication, Workout Routines, and Dogs"
},
{
"@type": "ListItem",
"position": 82,
"url": "https://csoh.org/meetings/2024-10-11.html",
"name": "2024-10-11: Overcoming Fear of Flying and Aviation"
},
{
"@type": "ListItem",
"position": 83,
"url": "https://csoh.org/meetings/2024-10-04.html",
"name": "2024-10-04: New Member's Cloud Security Transition"
},
{
"@type": "ListItem",
"position": 84,
"url": "https://csoh.org/meetings/2024-09-27.html",
"name": "2024-09-27: AI, Job Replacement, and Office Hours Discussion"
},
{
"@type": "ListItem",
"position": 85,
"url": "https://csoh.org/meetings/2024-08-30.html",
"name": "2024-08-30: Managing Multi-Factor Authentication and SIM Cards"
},
{
"@type": "ListItem",
"position": 86,
"url": "https://csoh.org/meetings/2024-08-23.html",
"name": "2024-08-23: Schooling Dilemma and Sales Kickoff Events"
},
{
"@type": "ListItem",
"position": 87,
"url": "https://csoh.org/meetings/2024-08-09.html",
"name": "2024-08-09: Recent Activities and New Members Discussed"
},
{
"@type": "ListItem",
"position": 88,
"url": "https://csoh.org/meetings/2024-07-26.html",
"name": "2024-07-26: YouTube Growth, Crowdstrike Incident, and ATMs"
},
{
"@type": "ListItem",
"position": 89,
"url": "https://csoh.org/meetings/2024-07-19.html",
"name": "2024-07-19: Equinix Team Addresses Infrastructure Outage"
},
{
"@type": "ListItem",
"position": 90,
"url": "https://csoh.org/meetings/2024-07-12.html",
"name": "2024-07-12: Team Introduction and Campus Group Discussion"
},
{
"@type": "ListItem",
"position": 91,
"url": "https://csoh.org/meetings/2024-05-10.html",
"name": "2024-05-10: Jay's Critique of Trade Show Strategies"
},
{
"@type": "ListItem",
"position": 92,
"url": "https://csoh.org/meetings/2024-04-26.html",
"name": "2024-04-26: Managing Secrets and Preventing Unauthorized Access"
},
{
"@type": "ListItem",
"position": 93,
"url": "https://csoh.org/meetings/2024-04-05.html",
"name": "2024-04-05: Heavy Rainfall and Cloud Security News"
},
{
"@type": "ListItem",
"position": 94,
"url": "https://csoh.org/meetings/2024-03-01.html",
"name": "2024-03-01: Security Engineer's Career Advancement and Networking Importance"
}
]
}
</script>
<noscript><style>.js-enabled header nav{display:block !important}</style></noscript>
</head>
<body class="js-enabled">
<a href="#main-content" class="skip-link">Skip to main content</a>
<header>
<div class="header-content">
<a href="index.html" class="logo-link">
<svg class="logo-mark" viewBox="0 0 32 32" width="32" height="32" role="img" aria-label="CSOH logo"><defs><linearGradient id="lm-cloud" x1="0" y1="0" x2="1" y2="1"><stop offset="0%" stop-color="#7dd3fc"/><stop offset="100%" stop-color="#0284c7"/></linearGradient></defs><path d="M7 19 a4 4 0 0 1 4-4 a6 6 0 0 1 11 0 a3.5 3.5 0 0 1 3.5 3.5 a3.5 3.5 0 0 1 -3.5 3.5 H8 a3.5 3.5 0 0 1 -1-7 z" fill="url(#lm-cloud)"/><path d="M11 13 L21 13 L21 18 a5 5.5 0 0 1 -5 5 a5 5.5 0 0 1 -5 -5 z" fill="#f59e0b"/><path d="M13.5 16.7 L15.3 18.4 L18.6 15" stroke="#fff" stroke-width="1.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></svg>
<div class="logo">
<div class="logo-title">CSOH</div>
<p>Cloud Security Office Hours</p>
</div>
</a>
<button class="hamburger" aria-label="Toggle navigation" aria-expanded="false">☰</button>
<button class="theme-toggle" aria-label="Switch to dark mode">🌙</button>
<nav>
<ul>
<li class="has-dropdown has-mega">
<button class="dropdown-toggle" aria-expanded="false" aria-haspopup="true">Learn <span class="caret" aria-hidden="true">▾</span></button>
<div class="dropdown-menu mega-menu mega-5col">
<div class="mega-col">
<span class="mega-heading">Foundations</span>
<ul>
<li><a href="what-is-cloud-security.html">What is Cloud Security?</a></li>
<li><a href="shared-responsibility-model.html">Shared Responsibility</a></li>
<li><a href="cspm-vs-cnapp.html">CSPM vs CNAPP</a></li>
<li><a href="cloud-security-best-practices.html">Best Practices</a></li>
<li><a href="vendor-landscape.html">Vendor Landscape</a></li>
<li><a href="glossary.html">Glossary</a></li>
<li><a href="faq.html">FAQ</a></li>
</ul>
</div>
<div class="mega-col">
<span class="mega-heading">Workloads & Platform</span>
<ul>
<li><a href="containers.html">Containers</a></li>
<li><a href="kubernetes.html">Kubernetes</a></li>
<li><a href="serverless.html">Serverless</a></li>
<li><a href="service-mesh-security.html">Service Mesh</a></li>
<li><a href="ci-cd.html">CI/CD</a></li>
<li><a href="landing-zones.html">Landing Zones</a></li>
</ul>
</div>
<div class="mega-col">
<span class="mega-heading">Security Domains</span>
<ul>
<li><a href="iam.html">IAM & Identity</a></li>
<li><a href="zero-trust.html">Zero Trust</a></li>
<li><a href="network-security.html">Network Security</a></li>
<li><a href="data-security.html">Data Security & KMS</a></li>
<li><a href="vulnerability-management.html">Vulnerability Management</a></li>
<li><a href="api-security.html">API Security</a></li>
<li><a href="saas-security.html">SaaS Security (SSPM)</a></li>
</ul>
</div>
<div class="mega-col">
<span class="mega-heading">Governance & AI</span>
<ul>
<li><a href="backup-dr.html">Backup, DR & Ransomware</a></li>
<li><a href="threat-modeling.html">Threat Modeling</a></li>
<li><a href="grc.html">GRC</a></li>
<li><a href="compliance-frameworks.html">Compliance Frameworks</a></li>
<li><a href="ai-learning.html">AI Learning</a></li>
<li><a href="ai-ml-security.html">AI/ML Security</a></li>
</ul>
</div>
<div class="mega-col">
<span class="mega-heading">Build It</span>
<ul>
<li class="mega-featured"><a href="cloud-deployment.html">Multi-Cloud Secure Deploy<span class="mega-tag">AWS · GCP · Azure, end to end</span></a></li>
<li><a href="github-actions.html">GitHub Actions</a></li>
<li><a href="terraform.html">Terraform</a></li>
<li><a href="version-control.html">Git & Version Control</a></li>
</ul>
</div>
</div>
</li>
<li><a href="resources.html">Resources</a></li>
<li class="has-dropdown">
<button class="dropdown-toggle" aria-expanded="false" aria-haspopup="true">By Cloud <span class="caret" aria-hidden="true">▾</span></button>
<ul class="dropdown-menu">
<li><a href="aws-security.html">AWS Security</a></li>
<li><a href="azure-security.html">Azure Security</a></li>
<li><a href="gcp-security.html">GCP Security</a></li>
<li><a href="cloud-security-comparison.html">AWS vs Azure vs GCP</a></li>
</ul>
</li>
<li class="has-dropdown">
<button class="dropdown-toggle" aria-expanded="false" aria-haspopup="true">Threat Intel <span class="caret" aria-hidden="true">▾</span></button>
<ul class="dropdown-menu">
<li><a href="news.html">News</a></li>
<li><a href="threat-research.html">Threat Research</a></li>
<li><a href="breach-timeline.html">Breach Kill Chains</a></li>
<li><a href="cloud-soc.html">Cloud SOC</a></li>
<li><a href="detection-engineering.html">Detection Engineering</a></li>
<li><a href="incident-response.html">Incident Response</a></li>
<li><a href="cloud-pentesting.html">Cloud Pentesting</a></li>
<li><a href="ctfs.html">CTFs</a></li>
</ul>
</li>
<li class="has-dropdown has-mega">
<button class="dropdown-toggle" aria-expanded="false" aria-haspopup="true">Careers <span class="caret" aria-hidden="true">▾</span></button>
<div class="dropdown-menu mega-menu mega-3col">
<div class="mega-col">
<span class="mega-heading">Getting Started</span>
<ul>
<li><a href="cloud-security-careers.html">Careers Overview</a></li>
<li><a href="learning-path.html">Learning Path</a></li>
<li><a href="help-desk-to-cloud-security.html">Help Desk → Cloud Security</a></li>
<li><a href="cloud-security-certifications.html">Certifications</a></li>
<li><a href="cloud-security-degree-programs.html">Degree Programs</a></li>
<li><a href="cloud-security-home-lab.html">Home Lab</a></li>
<li><a href="cloud-security-portfolio-projects.html">Portfolio Projects</a></li>
<li><a href="cloud-security-reading-list.html">Reading List</a></li>
<li><a href="mentorship.html">Mentorship</a></li>
</ul>
</div>
<div class="mega-col">
<span class="mega-heading">Engineering Roles</span>
<ul>
<li><a href="cloud-security-engineer.html">Cloud Security Engineer</a></li>
<li><a href="cloud-security-architect.html">Security Architect</a></li>
<li><a href="cloud-security-platform-engineer.html">Platform / Security SRE</a></li>
<li><a href="cloud-security-appsec-engineer.html">AppSec / IaC Engineer</a></li>
<li><a href="cloud-security-cnapp-analyst.html">CSPM / CNAPP Analyst</a></li>
<li><a href="cloud-security-iam-architect.html">IAM / Identity Architect</a></li>
</ul>
</div>
<div class="mega-col">
<span class="mega-heading">Specialist & Field Roles</span>
<ul>
<li><a href="cloud-security-detection-engineer.html">Detection Engineer</a></li>
<li><a href="cloud-security-incident-responder.html">Incident Responder (DFIR)</a></li>
<li><a href="cloud-security-penetration-tester.html">Penetration Tester / Red Team</a></li>
<li><a href="cloud-security-grc-engineer.html">GRC / Compliance Engineer</a></li>
<li><a href="cloud-security-sales-engineer.html">Sales Engineer</a></li>
<li><a href="cloud-security-customer-success-engineer.html">Customer Success Engineer</a></li>
</ul>
</div>
</div>
</li>
<li class="has-dropdown has-mega">
<button class="dropdown-toggle active" aria-expanded="true" aria-haspopup="true">Community <span class="caret" aria-hidden="true">▾</span></button>
<div class="dropdown-menu mega-menu mega-2col">
<div class="mega-col">
<span class="mega-heading">Live</span>
<ul>
<li><a href="sessions.html">Friday Zoom Sessions</a></li>
<li><a href="community.html">Community & Signal</a></li>
<li><a href="mentorship.html">Mentorship</a></li>
<li><a href="conferences.html">Conferences</a></li>
</ul>
</div>
<div class="mega-col">
<span class="mega-heading">Archive</span>
<ul>
<li><a href="meetings.html" aria-current="page">Meeting Recaps</a></li>
<li><a href="presentations.html">Presentations</a></li>
<li><a href="chat-resources.html">Chat Resources</a></li>
</ul>
</div>
</div>
</li>
<li class="nav-cta-item"><a href="https://csoh.kit.com/39feb4f397" class="nav-cta" target="_blank" rel="noopener noreferrer">Join Friday Zoom →</a></li>
</ul>
</nav>
</div>
</header>
<nav class="breadcrumb-nav" aria-label="Breadcrumb">
<ol>
<li><a href="index.html">Home</a></li>
<li><span aria-current="page">Meeting Recaps</span></li>
</ol>
</nav>
<section class="hero hero--compact">
<picture><source srcset="banner.webp" type="image/webp"><img src="banner.png" alt="Cloud Security Office Hours Banner" width="1200" height="400" class="hero-img" decoding="async" loading="eager"></picture>
<h1>Cloud Security Meeting Recaps</h1>
<p>Topic-by-topic recaps from 94 weekly CSOH sessions. Search by topic or speaker, click any recap to read the full discussion.</p>
</section>
<main class="container" id="main-content">
<figure class="page-photo">
<picture>
<source srcset="/img/photos/brainstorm.webp" type="image/webp">
<img src="/img/photos/brainstorm.jpg" alt="Coworkers engaged in a creative brainstorming session with colorful Post-it notes" width="1880" height="1253" loading="lazy" decoding="async">
</picture>
<figcaption>Photo by Walls.io on Pexels</figcaption>
</figure>
<figure class="page-photo">
<picture>
<source srcset="/img/photos/meeting-notes.webp" type="image/webp">
<img src="/img/photos/meeting-notes.jpg" alt="Three colleagues engaged in a collaborative meeting taking notes and reviewing documents" width="1880" height="1253" loading="lazy" decoding="async">
</picture>
<figcaption>Photo by Pavel Danilyuk on Pexels</figcaption>
</figure>
<blockquote class="pull-quote">
Every recap below was written by a community member, not a marketer.
<cite>- how this archive stays useful</cite>
</blockquote>
<section class="section meeting-filter-section">
<p class="meeting-count"><span id="visibleMeetings">94</span> meetings, newest first.</p>
<div class="filter-bar">
<div class="search-box">
<label for="meetingSearch" class="visually-hidden">Search meeting recaps</label>
<input type="text" id="meetingSearch" placeholder="Search by topic or date - try "AI" or "2026-04"…" autocomplete="off" spellcheck="false">
</div>
<div class="filter-buttons" id="meetingFilters">
<button class="filter-btn active" data-filter="all" type="button">All</button>
<!-- Year + topical-tag buttons auto-generated by /meetings.js -->
</div>
</div>
<p id="noMeetingResults" class="no-results is-hidden">
No meetings match your search.
<button class="clear-search-btn" id="clearMeetingSearch" type="button">clear filters</button>
</p>
</section>
<div class="meeting-list">
<article class="section meeting-card" id="meeting-2026-05-08">
<a class="meeting-card-link" href="meetings/2026-05-08.html">
<h2><time datetime="2026-05-08">Friday, May 8, 2026</time> - Cloud backup strategies, securing local AI agents, ServiceNow's Armis acquisition</h2>
<p class="meeting-card-summary">The Cloud Security Office Hours meeting focused primarily on discussions about data backup strategies and security implications of AI agents. The group extensively discussed recent security breaches, including the Instructure/Canvas…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-05</span><span class="tag">AI</span><span class="tag">Industry News</span><span class="tag">Vulnerabilities</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-05-01">
<a class="meeting-card-link" href="meetings/2026-05-01.html">
<h2><time datetime="2026-05-01">Friday, May 1, 2026</time> - CSOH website overhaul, SBOMs and the EU Cyber Resilience Act, DevSecOps hiring</h2>
<p class="meeting-card-summary">This meeting was Cloud Security Office Hours, where participants discussed recent website updates and shared insights on cloud security practices. Shawn presented new navigation and content sections on the website, including "What Is…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-05</span><span class="tag">SBOM</span><span class="tag">Supply Chain</span><span class="tag">Governance</span><span class="tag">Community</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-04-24">
<a class="meeting-card-link" href="meetings/2026-04-24.html">
<h2><time datetime="2026-04-24">Friday, April 24, 2026</time> - AI 'token-maxxing' debate, Bitwarden CLI supply-chain breach, funding open-source maintainers</h2>
<p class="meeting-card-summary">The Cloud Security Office Hours meeting focused on discussions about AI token usage and supply chain security threats. Participants, including Tyler, Stryker, and Neil, debated the merits and challenges of "token maxing" in AI…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-04</span><span class="tag">AI</span><span class="tag">Supply Chain</span><span class="tag">Vulnerabilities</span><span class="tag">SBOM</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-04-17">
<a class="meeting-card-link" href="meetings/2026-04-17.html">
<h2><time datetime="2026-04-17">Friday, April 17, 2026</time> - AI's impact on cybersecurity, Microsoft Red Sun zero-day, HSBC password controversy</h2>
<p class="meeting-card-summary">The Cloud Security Office Hours meeting focused on discussing recent developments in AI's impact on cybersecurity, particularly around Microsoft's Mythos AI tool and its potential to accelerate vulnerability discovery and exploitation.…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-04</span><span class="tag">AI</span><span class="tag">Vulnerabilities</span><span class="tag">Passwords</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-04-10">
<a class="meeting-card-link" href="meetings/2026-04-10.html">
<h2><time datetime="2026-04-10">Friday, April 10, 2026</time> - Open-source supply chain attacks, GitHub Actions hardening, early-computing nostalgia</h2>
<p class="meeting-card-summary">The meeting focused on discussing the current crisis in open source security, particularly regarding supply chain attacks and the impact of generative AI tools like Claude on vulnerability research. Participants, including Neil, Jay,…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-04</span><span class="tag">Supply Chain</span><span class="tag">GitHub Actions</span><span class="tag">Community</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-04-03">
<a class="meeting-card-link" href="meetings/2026-04-03.html">
<h2><time datetime="2026-04-03">Friday, April 3, 2026</time> - RSA recap, Claude code leak, "Meeple" talk, AI governance and graph-backed ontologies</h2>
<p class="meeting-card-summary">Cloud Security Office Hours featured discussions about conference experiences, particularly RSA and Black Hat, with participants sharing insights about networking, speaking opportunities, and career development in cybersecurity. The group…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-04</span><span class="tag">Conferences</span><span class="tag">AI</span><span class="tag">Governance</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-03-27">
<a class="meeting-card-link" href="meetings/2026-03-27.html">
<h2><time datetime="2026-03-27">Friday, March 27, 2026</time> - LiteLLM compromise, RSA attendance dip, supply-chain mitigations</h2>
<p class="meeting-card-summary">The meeting focused on discussing the recent Light LLM security compromise, where a Python package used by 97 million monthly users was compromised, leading to the theft of credentials and sensitive information from affected systems. The…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-03</span><span class="tag">Supply Chain</span><span class="tag">Vulnerabilities</span><span class="tag">Conferences</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-03-20">
<a class="meeting-card-link" href="meetings/2026-03-20.html">
<h2><time datetime="2026-03-20">Friday, March 20, 2026</time> - Guest speaker Maria Thomas on behavioral science and online harassment</h2>
<p class="meeting-card-summary">Guest speaker Maria Thomas (digital investigator with the RISE Information Security Foundation, background in behavioral science) presented on the behavioral science behind online harassment - why people pile on, how anonymity shapes…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-03</span><span class="tag">Guest Speaker</span><span class="tag">Community</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-03-13">
<a class="meeting-card-link" href="meetings/2026-03-13.html">
<h2><time datetime="2026-03-13">Friday, March 13, 2026</time> - Wiz acquired by Google, Unicode supply-chain attacks, grad-school advice</h2>
<p class="meeting-card-summary">The meeting focused on several key topics, including the recent acquisition of Wiz by Google and its implications for the company and its employees. Participants discussed the potential risks and benefits of this acquisition, with some…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-03</span><span class="tag">Industry News</span><span class="tag">Supply Chain</span><span class="tag">Education</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-03-06">
<a class="meeting-card-link" href="meetings/2026-03-06.html">
<h2><time datetime="2026-03-06">Friday, March 6, 2026</time> - Java auth vulnerability, SBOM debates, RSA OPSEC, DEF CON war stories</h2>
<p class="meeting-card-summary">The meeting focused on discussing a critical Java authentication vulnerability and its implications for organizations. Participants shared their experiences with patching and vulnerability management, emphasizing the importance of…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-03</span><span class="tag">Vulnerabilities</span><span class="tag">SBOM</span><span class="tag">Conferences</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-02-27">
<a class="meeting-card-link" href="meetings/2026-02-27.html">
<h2><time datetime="2026-02-27">Friday, February 27, 2026</time> - RSA Conference Planning and Updates</h2>
<p class="meeting-card-summary">The Cloud Security Office Hours meeting focused on discussing password security practices and the importance of asking questions in technical environments. Tyler shared insights about using AI agents for software development and testing,…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-02</span><span class="tag">AI</span><span class="tag">Conferences</span><span class="tag">Passwords</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-02-20">
<a class="meeting-card-link" href="meetings/2026-02-20.html">
<h2><time datetime="2026-02-20">Friday, February 20, 2026</time> - Password security, MFA > complexity, RSA planning, AI coding agents</h2>
<p class="meeting-card-summary">The Cloud Security Office Hours meeting focused on discussing password security practices and the importance of asking questions in technical environments. Tyler shared insights about using AI agents for software development and testing,…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-02</span><span class="tag">Passwords</span><span class="tag">AI</span><span class="tag">Conferences</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-02-13">
<a class="meeting-card-link" href="meetings/2026-02-13.html">
<h2><time datetime="2026-02-13">Friday, February 13, 2026</time> - 3-year anniversary, new AI-built CSOH website, policy as code</h2>
<p class="meeting-card-summary">The Cloud Security Office Hours community celebrated its 3-year anniversary, with Shawn highlighting the growth of the global participant base and introducing a new website built using AI that is now community-editable via GitHub. The…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-02</span><span class="tag">Anniversary</span><span class="tag">Governance</span><span class="tag">Community</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-02-06">
<a class="meeting-card-link" href="meetings/2026-02-06.html">
<h2><time datetime="2026-02-06">Friday, February 6, 2026</time> - AI in coding, data provenance, and homeschooling with LLMs</h2>
<p class="meeting-card-summary">The Cloud Security Office Hours meeting began with introductions and casual conversation before transitioning into a discussion about AI's role in coding and development, including both its benefits and potential risks. The group explored…</p>
<div class="resource-tags meeting-tags"><span class="tag">2026-02</span><span class="tag">AI</span><span class="tag">Education</span></div>
<span class="meeting-card-cta">Read recap →</span>
</a>
</article>
<article class="section meeting-card" id="meeting-2026-01-30">
<a class="meeting-card-link" href="meetings/2026-01-30.html">
<h2><time datetime="2026-01-30">Friday, January 30, 2026</time> - Insider threats, AI policy challenges, GRC frameworks</h2>
<p class="meeting-card-summary">The meeting began with informal discussions before transitioning into Cloud Security Office Hours, where new participants introduced themselves and shared their backgrounds in cybersecurity and security architecture. The group engaged in…</p>