-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpress.htm
2807 lines (1858 loc) · 121 KB
/
press.htm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="EN" lang="EN" dir="ltr">
<head profile="http://gmpg.org/xfn/11">
<title>Justin Cappos's Press Coverage</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="imagetoolbar" content="no" />
<link rel="stylesheet" href="styles/jout.css" type="text/css" />
</head>
<body id="top">
<div class="wrapper row1">
<div id="header" class="clear">
<div class="fl_right" >
<p><a href="http://nyu.edu/"> <img style="margin-right: 0px; padding-right:
80px;" src="images/nyu.png" alt="NYU Logo" width="200" /></a> <a
href="http://engineering.nyu.edu/"><img style="margin-right: 0px; padding-right: 80px;" src="images/NYU_Tandon_logo.png" alt="NYU Tandon Logo" width="200" /></a></p>
</div>
<div class="fl_left">
<h1 ><a href="index.htm">Prof. Justin Cappos</a></h1>
<p style="color:#FFF; font-size:14px">Professor <br/>
Computer Science & Engineering
</p>
</div>
</div>
<!-- ####################################################################################################### -->
<div class="wrapper row2">
<div id="topnav">
<ul>
<li class="active"><a href="index.htm">Home</a></li>
<!-- <li><a href="projects.htm">Projects</a></li> -->
<li><a href="publications.htm">Publications</a>
<li><a href="press.htm">Press</a></li>
<li><a href="philosophy.htm">Research Philosophy</a></li>
<li><a href="teaching.htm">Teaching</a></li>
<li><a href="calendar.htm">Calendar</a></li>
</li>
</ul>
<div class="clear"></div>
</div>
</div>
<!-- ####################################################################################################### -->
<div class="wrapper row4">
<div id="container" class="clear">
<!-- ####################################################################################################### -->
<div id="homepage" class="clear">
<div class="fl_right">
<h3>Quick links</h3>
<ul>
<li><a href="#video">Television Appearances (English)</a></li>
<li><a href="#video-foreign">Television Appearances (Foreign Language)</a></li>
<li><a href="#audio">Audio: Radio, Podcasts, etc.</a></li>
<li><a href="#books">Popular Books</a></li>
<li><a href="#print">Print Media: Newspapers, Magazines, etc.</a></li>
</ul>
<p><span><em>For press inquiries, please email <A href="mailto:[email protected]">[email protected]</a> and I will respond promptly.</em>
</span></p>
<hr/>
<br />
<a name="video"></a><h2>Video (English): TV, Webcasts, etc.</h2>
<p><strong>"ChatGPT may share user inputs, security experts say"</strong>
<a href="https://www.fox5ny.com/video/1617575">Video</a><br/>
Fox 5, March 2025.</p>
<p><strong>"New York attorney general will warn 23andMe customers to delete their data after bankruptcy filing"</strong>
<a href="https://www.cbsnews.com/newyork/news/23andme-bankruptcy-filing-data-privacy-letitia-james/">Video</a><br/>
CBS News, March 2025.</p>
<p><strong>"AI voicemail scams on the rise: What you need to know"</strong>
<a href="https://www.fox5ny.com/news/ai-voicemail-scams-rise-what-you-need-know">Video</a><br/>
Fox 5, January 2025.</p>
<p><strong>"Federal court moves TikTok closer to U.S. ban"</strong>
<a href="https://www.fox5ny.com/video/1558615">Video</a><br/>
Fox 5, December 2024.</p>
<p><strong>"Are we too dependent on Microsoft?"</strong>
<p><strong>"Exploring the extremes of open-source code safety with Professor Justin Cappos"</strong>
<a href="https://www.youtube.com/watch?v=DmYp6JQ2RKs">Video</a><br/>
Dr. Mirman's Accelerometer, October 2024.</p>
<p><strong>"What we know about the walkie-talkie explosions in Lebanon"</strong>
<a href="https://youtu.be/krksU6WkFGE?feature=shared">Video</a><br/>
DW News, September 2024.</p>
<p><strong>"Today's Verdict: Everything You Need To Know About CrowdStrike"</strong>
<a href="https://www.youtube.com/watch?v=yOe3al5ChIM">Video</a><br/>
BronxNet, August 2024.</p>
<p><strong>"Are we too dependent on Microsoft?"</strong>
<a href="https://www.youtube.com/watch?v=s4hoEjRh1Eo">Video</a><br/>
CBC, August 2024.</p>
<p><strong>"What caused the CrowdStrike-Microsoft global tech outage?"</strong>
<a href="https://www.cbsnews.com/video/what-caused-crowdstrike-microsoft-global-tech-outage/">Video</a><br/>
CBS, July 2024.</p>
<p><strong>"NYU professor talks impact of global technology outage"</strong>
<a href="https://ny1.com/nyc/all-boroughs/news-all-day/2024/07/19/nyu-professor-talks-impact-of-global-technology-outage">Video</a><br/>
NY1, July 2024.</p>
<p><strong>"Cybersecurity expert shocked by extent of CrowdStrike IT issue"</strong>
<a href="https://abcnews.go.com/Technology/video/cybersecurity-expert-shocked-extent-crowdstrike-issue-112107032">Video</a><br/>
ABC, July 2024.</p>
<p><strong>"AT&T Pays Hacker To Delete Stolen Customer Data"</strong>
<a href="https://www.fox5ny.com/video/1485920">Video</a><br/>
Fox 5, July 2024.</p>
<p><strong>"How Should AT&T Customers React To the Company's Data Breach"</strong>
<a href="https://www.cbsnews.com/newyork/video/how-should-at-t-customers-react-to-the-companys-data-breach/">Video</a><br/>
CBS, July 2024.</p>
<p><strong>"Call and text records of 'nearly all' AT&T cell customers exposed in massive breach"</strong>
<a href="https://thenationaldesk.com/news/americas-news-now/call-and-text-records-of-nearly-all-att-cell-customers-exposed-in-massive-breach-april-illegally-downloaded-third-party-cloud-platform-mobile-virtual-network-operators-landline-investigation-illegal-access-point">Video</a><br/>
Sinclair Media Group (over 100 local TV stations), July 2024.</p>
<p><strong>"New York small businesses concerned over possible TikTok ban"</strong>
<a href="https://ny1.com/nyc/all-boroughs/politics/2024/04/25/new-york-small-businesses-concerned-over-possible-tiktok-ban">Video</a><br/>
NY1, April 2024.</p>
<p><strong>"AT&T data leak from 73 million customers; what you need to do next"</strong>
<a href="https://t.dripemail2.com/c/eyJhbGciOiJIUzI1NiJ9.eyJhdWQiOiJkZXRvdXIiLCJpc3MiOiJtb25vbGl0aCIsInN1YiI6ImRldG91cl9saW5rIiwiaWF0IjoxNzEyMjQ2NDkwLCJuYmYiOjE3MTIyNDY0OTAsImFjY291bnRfaWQiOiI2MTU4MTkyIiwiZGVsaXZlcnlfaWQiOiJrMnVqY2xvcjcxb3VkanB1bXZxMiIsInVybCI6Imh0dHBzOi8vZHJpdmUuZ29vZ2xlLmNvbS9maWxlL2QvMURZSlA2SXhiRllYTXNiSDdPN0pBNTI0Y09wUW5kd2w1L3ZpZXc_dXNwPXNoYXJpbmcmX19zPWhzOWEzaXBkc2RwbTdzdmg2enN4In0._0wvKfHcZXt-yES678kop0lOxzlFdsQG2fsnznE70y0">Video</a><br/>
Fox 5, April 2024.</p>
<p><strong>"EV Hacking: This Is How Easy It Is to Sabotage the Power Grid"</strong>
<a href="https://www.youtube.com/watch?v=J_6BZDnSpGE">Video</a><br/>
Wall Street Journal, March 2024.</p>
<p><strong>"Facebook's "Look Who Died" scam"</strong>
<br/>
Fox 5, January 2024.</p>
<p><strong>"NYC joins wave of federal agencies in banning TikTok on government-owned devices"</strong>
<a href="https://brooklyn.news12.com/nyc-joins-wave-of-federal-agencies-in-banning-tiktok-on-government-owned-devices">Video</a><br/>
News 12, September 2023.</p>
<p><strong>"Zelle scams on the rise"</strong>
<a href="https://www.fox5ny.com/news/zelle-scams-on-the-rise">Video</a><br/>
Fox 5, September 2023.</p>
<p><strong>"Australia joins EU, US in kicking TikTok off govt phones"</strong>
<a href="https://www.youtube.com/watch?v=i_vnxdVMJUE">Video</a><br/>
Money Talks (TRT World), April 2023.</p>
<p><strong>"The Hacker Halter"</strong>
<a href="https://www.youtube.com/watch?v=mJ9l5lj4NqQ">Video</a><br/>
YouTube (NYU marketed 10 professors as Marvel-style super heroes),
December 2022.</p>
<p><strong>"Voting machines in Harris County will be new for many, but officials say they are prepared to deal with any issues"</strong>
<a href="https://www.click2houston.com/news/local/2022/10/19/voting-machines-in-harris-county-will-be-new-for-many-but-officials-say-they-are-prepared-to-deal-with-any-issues/">Video</a><br/>
Click 2 Houston (NBC), October 2022.</p>
<p><strong>"Pro-Russia Killnet DDoS attacks target U.S. airports"</strong>
<a href="https://www.fox5ny.com/news/killnet-ddos-attacks-us-airports">Video</a><br/>
Fox 5, October 2022.</p>
<p><strong>"Experts share cybersecurity tips as remote learning resumes for some and work from home continues"</strong>
<a href="https://www.pix11.com/news/coronavirus/experts-share-cybersecurity-tips-as-remote-learning-resumes-for-some-and-work-from-home-continues">Video</a><br/>
PIX 11, September 2020.</p>
<p><strong>"Are US systems ready to handle massive work-at-home traffic?"</strong>
<a href="https://www.youtube.com/watch?v=OflLC1C_pdw">Video</a><br/>
CNBC, March 2020.</p>
<p><strong>"Iran's cyberwar threat following the death of Gen. Qassem Soleimani in US strike"</strong>
<a href="https://video.foxnews.com/v/6120356822001#sp=show-clips">Video</a><br/>
Fox News, January 2020.</p>
<p><strong>"Privacy And Power: Your Digital Fingerprint (Part 1) - NBC Nightly News"</strong>
<a href="https://www.nbcnews.com/nightly-news/video/privacy-and-power-your-digital-fingerprint-74787909699">Video</a><br/>
NBC News, December 2019.</p>
<p><strong>"How to Open Locks When You Don't Have the Combination"</strong>
<a href="https://www.youtube.com/watch?v=NLOEnN0ojLs">Video</a><br/>
Extended YouTube tutorial, March 2019.</p>
<p><strong>"Expert: Hotel chain to blame for security breach"</strong>
<a href="https://www.youtube.com/watch?v=dagZDCimJQI">Video</a><br/>
Dozens of TV stations (Associated Press), November 2018.</p>
<p><strong>"Biggest Cyber Monday Sales Expected, But Beware Shopping From Work"</strong>
<a href="https://newyork.cbslocal.com/2018/11/26/cyber-monday-sales-expected-to-be-largest-shopping-day-in-history/">Video</a><br/>
CBS, November 2018.</p>
<p><strong>"Is America's Next Election Safe From Hackers?"</strong>
<a href="https://cheddar.com/videos/is-americas-next-election-safe-from-hackers">Video</a><br/>
Facebook Live, YouTube Live, Hulu, Cheddar, etc. (over 6.5M views), October 2018.</p>
<p><strong>"Millions of Facebook Accounts Breached"</strong><br/>
NBC, September 2018.</p>
<p><strong>"SciTech Now episode 420"</strong>
(coverage of <a href="https://uptane.github.io/">Uptane<a>)
<a href="http://www.scitechnow.org/videos/scitech-now-episode-420/">Video</a> (7:50-12:16)<br/>
PBS / WLIW 21, March 2018.</p>
<p><strong>"Is It Safe To Get Your DNA Tested?"</strong>
<a href="https://www.youtube.com/watch?v=uyRgk8Cqmzg">Video</a><br/>
MinuteEarth YouTube Channel (430K+ views), February 2018.</p>
<p><strong>"Charging your phone in ride-sharing services, airports could put your information at risk"</strong>
<a href="http://www.wbrc.com/story/37188090/charging-your-phone-in-ride-sharing-services-airports-could-put-your-information-at-risk">Video</a><br/>
WBRC Fox 6, January 2018.</p>
<p><strong>"Could charging your phone put your information at risk?"</strong>
<a href="https://www.clickorlando.com/news/investigators/could-charging-your-phone-put-your-information-at-risk-">Video</a><br/>
KPRC Channel 6, December 2017.</p>
<p><strong>"Channel 2 Investigates: Syncing into the unknown, 'Data is like gold'"</strong>
<a href="https://www.click2houston.com/news/investigates/channel-2-investigates-syncing-into-the-unknown-data-is-like-gold">Video</a><br/>
Channel 2 Houston, October 2017.</p>
<p><strong>"Malware Uses Software Updates To Spread Worldwide"</strong>
<br/>
Fox 5, June 2017.
</p>
<p><strong>"Can big data analysis swing a political election?"</strong>
<a href="http://www.fox5ny.com/news/256571281-story">Video</a><br/>
Fox 5, May 2017.</p>
<p><strong>"WannaCry malware exploited OS weakness to spread"</strong>
<a href="http://www.fox5ny.com/news/254781695-story">Video</a><br/>
Fox 5, May 2017.</p>
<p><strong>"You really should read an app's service terms"</strong>
<a href="http://www.fox5ny.com/news/250748947-story">Video</a><br/>
Fox 5, April 2017.</p>
<p><strong>"Selling Your Online Search History"</strong>
<a href="https://vimeo.com/211720861">Video</a><br/>
Fox 5, March 2017.</p>
<p><strong>"Is Privacy Real? The CIA Is Jeopardizing America's Digital Security, Experts Warn"</strong>
<a href="http://www.ibtimes.com/privacy-real-cia-jeopardizing-americas-digital-security-experts-warn-2514062">Video</a><br/>
Business Insider, March 2017.</p>
<p><strong>"What Should Consumers Know About the Wikileaks Dump"</strong> <br />
Fox 5, March 2017.</p>
<p><strong>"WikiLeaks to Help Shield Tech Firms From CIA's Hacking Tools"</strong>
<a href="http://www.nbcnewyork.com/on-air/as-seen-on/WikiLeaks-to-Help-Shield-Tech-Firms-From-CIA_s-Hacking-Tools_New-York-415815273.html">Video</a><br/>
NBC, March 2017.</p>
<p><strong>"WikiLeaks publishes 1000s of CIA cyber-espionage documents"</strong>
<a href="http://www.fox5ny.com/news/240011940-story">Video</a><br/>
Fox 5, March 2017.</p>
<p><strong>"How Uptane Can Protect Your Car From Hackers"</strong>
(coverage of <a href="https://uptane.github.io/">Uptane<a>)
<a href="https://www.facebook.com/Reuters/videos/1364617036891982/">Video</a><br/>
Reuters (via Facebook Live), January 2017.</p>
<p><strong>"Are smart devices worth the hacking risk?"</strong>
<a href="http://www.fox5ny.com/news/218034961-story">Video</a><br />
Fox 5, November 2016.</p>
<p><strong>"How you can stop your email from getting hacked"</strong>
<a href="https://vimeo.com/189976055">Video</a><br />
Fox 5, November 2016.</p>
<p><strong>"Clinton email investigation intensifies"</strong>
<a href="http://pix11.com/2016/10/31/clinton-emails-investigation-bombshell-dominates-campaign-trail-for-both-candidates/">Video</a><br />
PIX-11, October 2016.
<p><strong>"Clinton email investigation intensifies"</strong>
<a href="http://pix11.com/2016/10/31/clinton-emails-investigation-bombshell-dominates-campaign-trail-for-both-candidates/">Video</a><br />
PIX-11, October 2016.
<p><strong>"Why you shouldn't confide in the Confide App"</strong>
<!-- Video unavailable? -->
<br />
Fox 5, September 2016.</p>
<p><strong>"Why hacking is so easy"</strong>
<a href="http://www.fox5ny.com/news/155611462-video">Video</a> <br />
Fox 5, June 2016.</p>
<p><strong>"Are credit cards with chips increasing online fraud?"</strong>
<!-- Video unavailable? -->
<br />
Fox 5, May 2016.</p>
<p><strong>"Ransomware attack takes down LA hospital for hours"</strong>
<a href="http://www.pbs.org/newshour/bb/ransomware-attack-takes-down-la-hospital-for-hours/">Video</a> <br />
PBS Newshour, February 2016. </p>
<p><strong>"How Do Cyber Criminals Use the Darkweb?"</strong>
<a href="https://video.foxnews.com/v/4549094087001/how-do-cyber-criminals-use-the-dark-web/">Video</a>.
<br />
Fox News, October 2015.</p>
<p><strong>"China denies hacking of U.S. government computers"</strong>
<!-- Video removed? <a href="http://www.myfoxny.com/story/29243777/massive-breach-of-federal-personnel-data">Video</a>. -->
<br />
Fox 5, June 2015.</p>
<p><strong>"The hack attack that takes your computer hostage till you pay"</strong>
<a href="http://www.pbs.org/newshour/bb/ransomware-hack-attacks-holding-data-hostage-avoid/">Video</a> <br />
PBS Newshour, April 2015. </p>
<p><strong>"How a password manager can help you stay more secure online"</strong>
<a href="http://www.cbsnews.com/news/how-a-password-manager-can-help-you-stay-more-secure-online/">Video</a> <br />
CBS, August 2014. </p>
<p><strong>"Swatting"</strong>
<a href="https://news.vice.com/video/swatting">Video</a> <br />
VICE News, June 2014. </p>
<p><strong>"NYU Poly's Hacknight"</strong>
<a href="http://vimeo.com/86998918">Video</a> <br />
Al Jazeera America, February 2014. </p>
<p><strong>"Darknet: The anonymous underbelly of the internet"</strong>
<a href="http://video.pix11.com/Darknet-The-anonymous-underbelly-of-the-internet-25631166">Video</a> <br />
PIX11, February 2014. </p>
<p><strong>"The NSA is Examining Call Records From World Leaders"</strong>
<a href="http://vimeo.com/78068978">Video</a> <br />
Al Jazeera America, October 2013. </p>
<p><strong>"Protecting Yourself Against the Miss Teen USA Hack and Why You Might Avoid Owning a Smartphone"</strong>
<a href="http://vimeo.com/75900188">Video</a> <br />
Al Jazeera America, September 2013. </p>
<p><strong>"The message behind the hack attack: What does the SEA want?"</strong>
<a href="http://video.pix11.com/The-message-behind-the-hack-attack-What-does-the-SEA-want-25100454">Video</a> <br />
Channel 11 news (PIX11), August 2013. </p>
<p><strong>"Zuckerpunched! Facebook founder gets hacked"</strong>
<a href="http://video.pix11.com/Zuckerpunched-Facebook-founder-gets-hacked-25048356">Video</a> <br />
Channel 11 news (PIX11), August 2013. </p>
<p><strong>"The NSA has been hacking Chinese systems for years: Snowden"</strong>
<a href="http://pix11.com/2013/06/12/the-nsa-has-been-hacking-chinese-systems-for-years-snowden/#axzz2W6SXG6yq">Video</a> <br />
Channel 11 news (PIX11), June 2013. </p>
<p><strong>"NYU Poly Hack Nights Helping To Train Whitehat Hackers"</strong>
<a href="http://mms.tveyes.com/PlaybackPortal.aspx?SavedEditID=df3e5f16-8aaf-47d6-a3a1-645d65f0c8cb">Video</a> <br />
Channel 1 news (NY1), May 2013. <br />
Also shown on: It Ain't Rocket Science, Episode 11, Part 2, May 2013.
<a href="http://www.connectamillionminds.com/campaigns/itaintrocketscience/episode/11">Video</a> </p>
<p><strong>"Developers defend site that lets you "fake" tweets"</strong>
<a href="http://landing.newsinc.com/wpix/video.html?freewheel=91044&sitesection=wpix_pix11newsvideo&VID=24777494">Video</a>
<br />Channel 11 news (PIX11), April 2013. </p>
<p><strong>"Your Smartphone Is Tracking You In Ways You've Never Imagined"</strong>
<a href="http://www.businessinsider.com/smartphone-privacy-concerns-2013-4">Article w/ Video</a>
<br />Business Insider, April 2013. </p>
<p><strong>"App attack? Developer says his software can hijack a cockpit during flight"</strong>
<a href="http://pix11.com/2013/04/11/scary-app-hacks-into-airplane-cockpit-controls/#axzz2m6PsUBg4">Article w/ Video</a>
Channel 11 news (PIX11), April 2013. </p>
<p><strong>"Ask Asa: Breaking Down The LinkedIn Security-Breach Situation"</strong>
<a href="http://newyork.cbslocal.com/2012/06/08/ask-asa-breaking-down-the-linkedin-security-breach-situation/">Video</a> <br />
CBS, June 2012. </p>
<p><strong>"Ask Asa: Text Message Scammers Pose As Friends In Need"</strong>
<a href="http://newyork.cbslocal.com/2012/06/11/ask-asa-text-message-scammers-pose-as-friends-in-need/">Article w/ Video</a> <br />
CBS, June 2012. </p>
<p><strong>"CyberSecurity Awareness Week on NY Channel 1"</strong>
<a href="http://vimeo.com/32280561">Video</a> <br />
Channel 1 News, November 2011. </p>
<p><strong>"CyberSecurity Awareness Week featured on News 12 Brooklyn"</strong>
<a href="http://vimeo.com/32467171">Video</a>
<br />Channel 12 News, November 2011. </p>
<p><strong>"Improving Mobility Infrastructure Security Standards"</strong>
<a href="http://techchannel.att.com/play-video.cfm/2012/1/3/The-Mobile-Security-Show-Improving-Mobility-Infrastructure-Security-Standards">Video</a> <br />
AT&T Tech Channel, November 2011. </p>
<hr/>
<a name="video-foreign"></a><h2>Video (Foreign): TV, Webcasts, etc.</h2>
<p><strong>"EBS documentary about AI / Voice Fakes"</strong>
<a href="https://www.youtube.com/watch?v=nnmhjk4aR8A">Video (Korean)</a> <br />
EBS Documentary, December 2024.</p>
<p><strong>"Why Zuckerberg covers his laptop's camera"</strong>
<a href="http://www.rtvi.com/video/50071">Video</a> <br />
Russian Television International (RTVi), October 2016.</p>
<p><strong>"Suicide after the publication of a sextape. In Italy, Tiziana Cantone Buried"</strong> <a href="http://www.rtvi.com/video/49494">Video</a> <br />
Russian Television International (RTVi), September 2016.</p>
<p><strong>"`Crackas with attitude' hacked the CIA head's e-mail"</strong> <a href="http://www.rtvi.com/video/49339">Video</a> <br />
Russian Television International (RTVi), September 2016.</p>
<p><strong>"Russian hackers in the United States suspected of hacking into the voter registration system"</strong> <a href="http://rtvi.com/video/49158">Video</a> <br />
Russian Television International (RTVi), August 2016.</p>
<p><strong>"A new surge of Cyberwar between Moscow and Washington"</strong> <a href="http://rtvi.com/video/49131">Video</a> <br />
Russian Television International (RTVi), August 2016.</p>
<p><strong>"Security concerns with the Apple Watch"</strong><br />
NHK, April 2015.</p>
<p><strong>"SWATting"</strong><br />
Russia Today, September 2014.</p>
<p><strong>"Hacker's New Trends---Trojans in Home Appliances"</strong>
<a href="http://www.ntdtv.com/xtr/b5/2013/11/20/atext1007886.html">Video / Article</a> <br />
NTDTV, November 2013. </p>
<p><strong>"US Congress Has Its First BitCoin Hearing: BitCoin's Value Increases"</strong>
<a href="http://www.ntdtv.com/xtr/b5/2013/11/19/atext1007190.html">Video / Article</a> <br />
NTDTV, November 2013. </p>
<p><strong>"How Internet Filtering Works and What You Can Do About It"</strong> <a href="https://www.torproject.org/">Link to Tor</a> <a href="https://seattle.poly.edu">Link To Seattle</a>
<!-- No video available <a href="http://video.pix11.com/The-message-behind-the-hack-attack-What-does-the-SEA-want-25100454">Video</a> --> <br />
Nuestra Tele Noticias 24 Horas (NTN24), September 2013. </p>
<p><strong>"The Syrian Electronic Army's Latest Hack"</strong>
<!-- No video available <a href="http://video.pix11.com/The-message-behind-the-hack-attack-What-does-the-SEA-want-25100454">Video</a> --> <br />
Nuestra Tele Noticias 24 Horas (NTN24), August 2013. </p>
<hr/>
<a name="audio"></a><h2>Audio: Radio, Podcasts, etc.</h2>
<p><strong>"How gamers can prevent being targets for cyber criminals"</strong>
<a href="https://omny.fm/shows/kcbsam-on-demand/how-gamers-can-prevent-being-targets-for-cyber-cri">Article</a> <br />
KCBS Radio, October 2022.
</p>
<p><strong>"Is Cyberwar War? NYU security expert Justin Cappos and what can be done about state-sponsored hacking"</strong>
<a href="https://spectrum.ieee.org/is-cyberwar-war">Article</a> <br />
IEEE Spectrum, March 2021.
</p>
<p><strong>"SecureWorld's SolarWinds Data Breach Impact Podcast"</strong>
(press coverage related to <a href="https://in-toto.io/">in-toto</a>)
<a href="https://www.trexin.com/secureworlds-solarwinds-data-breach-impact-podcast/">Article</a> <br />
SecureWorld's SolarWinds Data Breach Impact, February 2021.
</p>
<p><strong>"AAA's Car Conversation with Justin Cappos"</strong>
(press coverage related to <a href="https://uptane.github.io/">Uptane</a>)
<a href="https://www.youtube.com/watch?v=RV4USm1Mrhc">Article</a> <br />
AAA, September 2020.
</p>
<p><strong>"People are pretty reluctant to embrace self driving cars, survey says"</strong>
(press coverage related to <a href="https://uptane.github.io/">Uptane</a>)
<a href="https://nj1015.com/people-are-pretty-reluctant-to-embrace-self-driving-cars-survey-says/">Article</a> <br />
New Jersey 101.5, March 2020.
</p>
<p><strong>"Data Privacy And Consumer Protection"</strong>
<a href="https://www.wshu.org/post/data-privacy-and-consumer-protection#stream/0">Article</a></br />
Public Radio (WHSU), June 2019.
</p>
<p><strong>"Does Better Care At Hospitals Come With a Security Risk?"</strong>
<a href="https://marketscale.com/industries/healthcare/hospitals-security-risk/">Article</a></br />
MarketScale, May 2019.
</p>
<p><strong>"Now more than ever, cars are just rolling computers"</strong>
<a href="https://www.marketplace.org/2018/05/25/tech/now-more-ever-cars-are-just-rolling-computers">Article</a></br />
Marketplace, May 2018.
</p>
<p><strong>"Worries grow over privacy, security and tech: NYU Cyber Security Expert Justin Cappos"</strong>
<a href="http://www.techstination.com/interview.jsp?interviewId=3350">Article</a></br />
Techstination, May 2018.
</p>
<p><strong>"Software Protecting Future Cars, Starting To Make Inroads"</strong> (press coverage related to <a href="https://uptane.github.io/">Uptane</a>)
<a href="http://tpr.org/post/software-protecting-future-cars-starting-make-inroads#stream/0">Article</a></br />
Texas Public Radio, June 2017.
</p>
<p><strong>"Phishing, Hacks And Better Online Security"</strong>
<a href="http://www.wbur.org/onpoint/2017/05/04/phishing-security-gmail-hacks">Article</a></br />
NPR -- On Point, May 2017.
</p>
<p><strong>"Uptane on NPR's Here and Now"</strong> (press coverage related to <a href="https://uptane.github.io/">Uptane</a>)
<a href="http://www.wbur.org/hereandnow/2017/03/17/researchers-software-car-hacking">Article</a></br />
NPR -- Here and Now, March 2017.
</p>
<p><strong>"The Update Framework -- Securing Your Software Updates with Justin Cappos -- Episode 99"</strong> (press coverage related to <a href="https://theupdateframework.io/">TUF</a>, <a href="https://in-toto.io/">in-toto</a>, and <a href="https://uptane.github.io/">Uptane</a>)
<a href="https://www.podcastinit.com/episode-99-the-update-framework-with-justin-cappos/">Article</a></br />
Podcast.__init__, March 2017.
</p>
<p><strong>"A Future Car May Be Protected From Hacking By Software Developed
In San Antonio"</strong> (press coverage related to
<a href="https://uptane.github.io/">Uptane</a>)
<a href="http://tpr.org/post/future-car-may-be-protected-hacking-software-developed-san-antonio#stream/0">Article</a><br />
Texas Public Radio, January 2017.
</p>
<p><strong>"How Did the Russian Hacks Happen?" </strong>
<a href="http://media.wwl.com/a/118041079/1-9-6am-bob-mitchell-how-did-the-russian-hacks-happen.htm?pageid=401032">Article</a><br />
WWL AM 870 / FM 105.3, January 2017.
</p>
<p><strong> "The New WhatsApp Encryption Format" </strong>
<a href="http://uptownradio.org/2016/04/08/the-new-whatsapp-encryption-format/">Article</a> <br />
WBAI 99.5 NYC / Uptown Radio, April 2016.
</p>
<p><strong> "Beaconsfield Teens Victims of Swatting" </strong>
<a href="http://www.cjad.com/cjad-news/2014/09/29/beaconsfield-teens-victims-of-swatting">Article</a> <br />
CJAD 800 AM Montreal, September 2014.
</p>
<p><strong> "How Target hackers hit the bullseye" </strong>
<a href="http://www.mprnews.org/story/2014/01/15/how-target-hackers-hit-the-bullseye">Audio / Article</a> <br />
Minnesota Public Radio News, January 2014.
</p>
<p><strong> "Obamacare Interview" </strong>
<a href="http://dam.poly.edu/?c=1242&k=68c88e57ef">Audio</a> <br />
KFWB News Talk 980, November 2013.
</p>
<hr/>
<a name="books"></a><h2>Print Media: Books</h2>
<p><strong>"Phippy's AI Friend: Story and Workshop for Kids and Parent"</strong>
(includes TUF's mascot and information about <a href="https://theupdateframework.io/">TUF</a>) </br>
<a href="https://www.amazon.com/Phippys-AI-Friend-Workshop-Parents/dp/B0CWYF8JT6/">Book</a> <br/>
by Cassandra Yuting Chin (Author) and Romain Therenty (Illustrator)<br/>
ASIN: B0CWYF8JT6 Publisher : Cassandra Chin, February 29, 2024
</p>
<p><strong>"Open and Secure: Mastering 'Threat Modeling' in Assessing the Security of Open Source Projects"</strong>
<a href="https://github.com/cncf/tag-security/blob/main/community/assessments/Open_and_Secure.pdf">Early Access PDF (free!)</a></br>
by Justin Cappos with Andres Vega (and feedback and support of the CNCF Security Technical Advisory Group)<br/>
CC-BY 4.0, 2023
</p>
<p><strong>"Cyber Spy Hunters! (Scientists in Action)"</strong> (bio and
content on the
<a href="https://polypasswordhasher.github.io/PolyPasswordHasher/">PolyPasswordHasher project</a>)
<a href="http://www.amazon.com/Cyber-Spy-Hunters-Scientists-Action/dp/142223424X">Book</a> <br/>
by Mari Rich<br/>
Mason Crest Publishers, 2015
</p>
<hr/>
<a name="print"></a><h2>Print Media: Newspapers, Magazines, Tech Journals, Blogs, etc.</h2>
<p><strong>"New Yorkers are reporting a lot of internet fraud (and these other scams, cons and concerns)"</strong>
<a href="https://gothamist.com/news/new-yorkers-are-reporting-a-lot-of-internet-fraud-and-these-other-scams-cons-and-concerns">Article</a> </br>
Gothamist, March 2025.
</p>
<p><strong>"Security, Open Source, and Hands-On Learning with Justin Cappos - Techstrong Unplugged - EP36"</strong>
<a href="https://www.youtube.com/watch?v=iPdlxTM7yKU">Article / Video</a> </br>
Tech Strong, January 2025.
</p>
<p><strong>"The Best VPN Services of 2025"</strong>
<a href="https://allaboutcookies.org/best-vpn-services">Article</a> </br>
All About Cookies, December 2024.
</p>
<p><strong>"How do video game companies like Game Freak keep getting hacked?"</strong>
<a href="https://www.polygon.com/analysis/465967/pokemon-game-freak-nintendo-hack-leak">Article</a> </br>
Polygon, October 2024.
</p>
<p><strong>"Targeted by cyber crime? This study says you're probably about 40 or younger"</strong>
<a href="https://www.newsday.com/long-island/crime/cyber-crimes-study-ki6igb9e">Article</a> </br>
Newsday, October 2024.
</p>
<p><strong>"Steckt Israel hinter Vorfällen im Libanon?"</strong>
<a href="https://www.zdf.de/nachrichten/politik/ausland/pager-explosion-hisbollah-libanon-israel-100.html">Article (German)</a> </br>
ZDF, September 2024.
</p>
<p><strong>"We still don't know how the Lebanon pager attack happened. Here's what we do know about our own electronic devices"</strong>
<a href="https://www.cnn.com/2024/09/17/business/pagers-cell-phones-batteries/index.html">Article</a> </br>
CNN, September 2024.
</p>
<p><strong>"How a Routine CrowdStrike Update Crashed the World's Computers"</strong>
<a href="https://www.bloomberg.com/news/features/2024-07-19/crowdstrike-outage-reveals-global-it-fragility-leaving-airports-banks-paralyzed?embedded-checkout=true">Article</a> </br>
Bloomberg, July 2024.
</p>
<p><strong>"Researcher says deleted GitHub data can be accessed 'forever'"</strong>
<a href="https://www.techtarget.com/searchsecurity/news/366599096/Researcher-says-deleted-GitHub-data-can-be-accessed-forever">Article</a> </br>
TechTarget, July 2024.
</p>
<p><strong>"Could the 'Blue Screen of Death' happen again? Some cyber experts think so."</strong>
<a href="https://www.newsday.com/long-island/crowdstrike-blue-screen-of-death-iievpi5y">Article</a> </br>
Newsday, July 2024.
</p>
<p><strong>"CrowdStrike outages underscores importance of incident planning"</strong>
<a href="https://www.itopstimes.com/itsec/crowdstrike-outages-underscores-importance-of-incident-planning/">Article</a> </br>
IT Ops Times, July 2024.
</p>
<p><strong>"Lessons learned from CrowdStrike outages on releasing software updates"</strong>
<a href="https://sdtimes.com/test/lessons-learned-from-crowdstrike-outages-on-releasing-software-updates/">Article</a> </br>
SD Times, July 2024.
</p>
<p><strong>"Lessons from CrowdStrike’s Buggy Update: The Critical Importance of Robust Release Processes"</strong>
<a href="https://www.cncf.io/blog/2024/07/19/lessons-from-crowdstrikes-buggy-update-the-critical-importance-of-robust-release-processes/">Article</a>
(press coverage related to <a href="https://in-toto.io/">in-toto</a>) </br>
CNCF Blog, July 2024.
</p>
<p><strong>"Artifact Attestations is generally available"</strong>
<a href="https://github.blog/changelog/2024-06-25-artifact-attestations-is-generally-available/">Article</a>
(press coverage related to <a href="https://in-toto.io/">in-toto</a>) </br>
Github Blog, June 2024.
</p>
<p><strong>"How TikTok is Revolutionizing Small Business Success in the U.S."</strong>
<a href="https://www.msn.com/en-us/money/smallbusiness/how-tiktok-is-revolutionizing-small-business-success-in-the-u-s/ar-BB1ow3rt">Article</a> </br>
MSN, June 2024.
</p>
<p><strong>"Apple alerted Amazon about a potential cloud security risk, prompting a change in AWS's data-deletion process"</strong>
<a href="https://www.businessinsider.com/apple-alerted-amazon-potential-cloud-security-risk-aws-2024-6">Article</a> </br>
Business Insider, June 2024.
</p>
<p><strong>"UnitedHealth Cyberattack Highlights Sprawling Third-Party Risk"</strong>
Article Not Publicly Available</br>
Agenda, May 2024.
</p>
<p><strong>"Securing Git repositories with gittuf"</strong>
<a href="https://lwn.net/SubscriberLink/972467/b8382b13424b808b/">Article</a>
(press coverage related to <a href="https://gittuf.dev/">gittuf</a>) </br>
LWN, May 2024.
</p>
<p><strong>"Not Our Problem"</strong>
<a href="https://cacm.acm.org/news/not-our-problem/?__s=xxxxxxx">Article</a> </br>
CACM, April 2024.
</p>
<p><strong>"GitHub vulnerability leaks sensitive security reports"</strong>
<a href="https://www.techtarget.com/searchsecurity/news/366582060/GitHub-vulnerability-leaks-sensitive-security-reports">Article</a> </br>
Tech Target, April 2024.
</p>
<p><strong>"How games companies can protect themselves from cyber attacks"</strong>
<a href="https://www.gamesindustry.biz/how-games-companies-can-protect-themselves-from-cyber-attacks">Article</a> </br>
GamesIndustry.biz, March 2024.
</p>
<p><strong>"Top.gg supply chain attack highlights subtle risks"</strong>
<a href="https://www.techtarget.com/searchsecurity/news/366575534/Topgg-supply-chain-attack-highlights-subtle-risks">Article</a>
(press coverage related to <a href="https://theupdateframework.io/">TUF</a>) </br>
TechTarget, March 2024.
</p>
<p><strong>"The case against the TikTok ban bill"</strong>
<a href="https://www.engadget.com/the-case-against-the-tiktok-ban-bill-161517973.html">Article</a> </br>
Engadget, Yahoo Finance, etc., March 2024.
</p>
<p><strong>"TikTok's fate in the U.S. hangs in the balance. What would the sale of the popular app mean?"</strong>
<a href="https://www.cbsnews.com/news/tiktok-ban-us/">Article</a> </br>
CBS News, March 2024.
</p>
<p><strong>"Introducing gittuf: A Security Layer for Git Repositories"</strong>
<a href="https://openssf.org/blog/2024/01/18/introducing-gittuf-a-security-layer-for-git-repositories/">Article</a>
(press coverage related to <a href="https://gittuf.dev/">gittuf</a>) </br>
Linux Foundation, January 2024.
</p>
<p><strong>"OpenSSF Election Results for Technical Advisory Council and Representatives to the Governing Board"</strong>
<a href="https://openssf.org/blog/2024/01/04/openssf-election-results-for-technical-advisory-council-and-representatives-to-the-governing-board/">Article</a>
(My election to the Governing Board of the <a href="https://openssf.org/">OpenSSF</a>)</br>
Linux Foundation, January 2024.
</p>
<p><strong>"Introducing SBOMit: Adding Verification to SBOMs"</strong>
<a href="https://openssf.org/blog/2023/12/13/introducing-sbomit-adding-verification-to-sboms/">Article</a>
(press coverage related to <a href="https://sbomit.dev/">SBOMit</a>) </br>
Linux Foundation, December 2023.
</p>
<p><strong>"How bad could the cyberattack on Long Beach be? Experts and other cities offer clues."</strong>
<a href="https://lbpost.com/news/how-bad-cyberattack-ransom-experts-long-beach-clues/">Article</a></br>
Long Beach Post, November 2023.
</p>
<p><strong>"Announcing our latest book release: a comprehensive security guide to assess and fortify open source security"</strong>
<a href="https://www.cncf.io/blog/2023/11/22/announcing-our-latest-book-release-a-comprehensive-security-guide-to-assess-and-fortify-open-source-security/">Article</a></br>
CNCF Blog, November 2023.
</p>
<p><strong>"US Tech Hubs (Chinese Language)"</strong>
<a href="https://www.voachinese.com/a/7329167.html">Article</a></br>
Voice of America, November 2023.
</p>
<p><strong>"KubeCon NA 2023, Day 2: Hitting Our STRIDE"</strong>
<a href="https://medium.com/@alexfloydmarshall/kubecon-na-2023-day-2-hitting-our-stride-866fc70f4fd3">Article</a>
(press coverage related to <a href="https://in-toto.io/">in-toto</a>) </br>
Medium, October 2023.
</p>
<p><strong>"Gittuf - a security layer for Git"</strong>
<a href="https://news.ycombinator.com/item?id=38004178">Article</a>
(press coverage related to <a href="https://gittuf.github.io/">gittuf</a>) </br>
Hacker News, October 2023.
</p>
<p><strong>"GitHub boosts secrets scanning: A necessary step, but supply chain security is key to managing risk"</strong>
<a href="https://www.reversinglabs.com/blog/github-boosts-secrets-scanning-why-supply-chain-security-is-key">Article</a> </br>
Reversing Labs (and other outlets), October 2023.
</p>
<p><strong>"Signing Docker Official Images Using OpenPubkey"</strong>
<a href="https://www.docker.com/blog/signing-docker-official-images-using-openpubkey/">Article</a>
(press coverage related to <a href="https://theupdateframework.io/">TUF</a>) </br>
Docker Blog, October 2023.
</p>
<p><strong>"Using Psychology to Bolster Cybersecurity"</strong>
<a href="https://cacm.acm.org/magazines/2023/10/276621-using-psychology-to-bolster-cybersecurity/fulltext?__s=hs9a3ipdsdpm7svh6zsx">Article</a></br>
Communications of the ACM, September 2023.
</p>
<p><strong>"NIST supply chain security guidance for CI/CD environments: What you need to know"</strong>
<a href="https://www.reversinglabs.com/blog/nists-supply-chain-security-guidelines-for-ci/cd-what-you-need-to-know?hs_preview=PkbyXfZe-136965689481">Article</a></br>
Reversing Labs, September 2023.
</p>
<p><strong>"Over-The-Air (Ota) Updates Explained: What They Do And How They Impact Your EV"</strong>
<a href="https://www.slashgear.com/1394126/over-the-air-update-explained-what-they-do-ev/">Article</a></br>
SlashGear, September 2023.
</p>
<p><strong>"Public Wi-Fi Safety: 1 in 4 People Have Experienced a Security Issue From Browsing on Unsecured Networks"</strong>
<a href="https://allaboutcookies.org/public-wifi-safety">Article</a></br>
All About Cookies, September 2023.
</p>
<p><strong>"Security of Software Update Systems in 2023"</strong>
<a href="https://thenewstack.io/security-of-software-update-systems-in-2023/">Article</a>
(press coverage related to <a href="https://theupdateframework.io/">TUF</a>) </br>
The New Stack, August 2023.
</p>
<p><strong>"$1.2M Grant To Help NYU Team Secure Digital Legal Material"</strong>
<a href="https://www.law360.com/articles/1708540/-1-2m-grant-to-help-nyu-team-secure-digital-legal-material">Article</a></br>
Law 360, August 2023.
</p>
<p><strong>"National Science Foundation funds NYU Tandon School of Engineering project to safeguard U.S. laws and legal information against cyberattacks and malicious actors"</strong>
<a href="https://engineering.nyu.edu/news/national-science-foundation-funds-nyu-tandon-school-engineering-project-safeguard-us-laws-and">Article</a></br>
NYU Tandon Press Release, August 2023.
</p>
<p><strong>"TikTok Bans - Top 3 Pros and Cons"</strong>
<a href="https://www.procon.org/headlines/tiktok-bans-top-3-pros-and-cons/">Article</a></br>
Brittanica ProCon, May 2023.
</p>
<p><strong>"New DDoS attacks on Israel's enterprises, infrastructure should be a wake-up call"</strong>
<a href="https://www.techrepublic.com/article/ddos-attack-israel/?__s=hs9a3ipdsdpm7svh6zsx">Article</a></br>
Tech Republic, April 2023.
</p>
<p><strong>"Introducing npm package provenance"</strong>
<a href="https://github.blog/2023-04-19-introducing-npm-package-provenance/">Article</a>
(press coverage related to <a href="https://in-toto.io/">in-toto</a>) </br>
Github Blog, April 2023.
</p>
<p><strong>"TikTok's Disastrous Day (Chinese Language)"</strong>
<a href="https://www.voachinese.com/a/tiktok-disastrous-day-20230323/7018998.html">Article</a></br>
Voice of America, March 2023.
</p>
<p><strong>"Hashtag Trending Mar.13- Google riles Canadian government committee; GitHub to improve security; real-life lawyer sues robot lawyer"</strong>
<a href="https://www.itworldcanada.com/article/hashtag-trending-mar-13-google-riles-canadian-government-committee-github-to-improve-security-real-life-lawyer-sues-robot-lawyer/532425">Article</a> </br>
IT World Canada, March 2023.
</p>
<p><strong>"GitHub rolling out two-factor authentication to millions of users"</strong>
<a href="https://www.techrepublic.com/article/github-rolling-out-2fa/">Article</a> </br>
Tech Republic, March 2023.
</p>
<p><strong>"The Montana Senate advanced a total TikTok ban: Are bans like these realistic, or even unconstitutional?"</strong>
<a href="https://www.deseret.com/2023/3/9/23628035/the-montana-senate-advanced-a-total-tiktok-ban">Article</a> </br>
Deseret News, March 2023.
</p>
<p><strong>"TikTok is as dangerous as any social media app"</strong>
<a href="https://finance.yahoo.com/news/tiktok-is-as-dangerous-as-any-social-media-app-211526495.html">Article</a> </br>
Yahoo Finance, March 2023.
</p>
<p><strong>"Why Countries Are Trying to Ban TikTok"</strong>
<a href="https://www.nytimes.com/article/tiktok-ban.html">Article</a> </br>
New York Times, March 2023.
</p>
<p><strong>"Lack of insurance may have signaled Suffolk's vulnerability to cyberattack"</strong>
<a href="https://www.newsday.com/long-island/politics/suffolk-county-cyberattack-steve-bellone-insurance-ransomware-xiirfv2z">Article</a> </br>
Newsday, March 2023.
</p>
<p><strong>"What Twitter's outage says about (over) zealous downsizing"</strong>
<a href="https://www.techrepublic.com/article/twitter-outage-downsizing/">Article</a> </br>
Tech Republic, February 2023.