-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path2.1_vulnerability_sectors_part3.html
More file actions
664 lines (612 loc) · 49.2 KB
/
2.1_vulnerability_sectors_part3.html
File metadata and controls
664 lines (612 loc) · 49.2 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>2.1 Compromise of privacy by obtaining, leaking or correctly inferring sensitive information - Vulnerability (Sectors)</title>
<link href="https://fonts.googleapis.com/css2?family=Figtree:wght@300;400;500;600;700&display=swap" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
background-color: #ffffff;
color: #000000;
line-height: 1.3;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 8px;
flex: 1;
min-width: 200px;
overflow-wrap: break-word;
word-break: break-word;
}
h1 {
text-align: center;
margin-bottom: 8px;
color: #000000;
font-weight: 600;
font-size: 18px;
}
.selection-title {
text-align: center;
font-size: 14px;
font-weight: 600;
color: #666666;
margin-bottom: 10px;
}
.nav-pills {
display: flex;
flex-wrap: wrap;
gap: 4px;
margin-bottom: 15px;
justify-content: center;
}
.nav-pill {
background: #f8f9fa;
border: 1px solid #e0e0e0;
border-radius: 25px;
padding: 12px 20px;
cursor: pointer;
font-family: 'Figtree', sans-serif;
font-size: 16px;
font-weight: 500;
transition: all 0.3s ease;
color: #000000;
}
.nav-pill:hover {
background: #e9ecef;
border-color: #000000;
}
.nav-pill.active {
background: #000000;
color: white;
border-color: #000000;
}
.entity-section {
display: none;
}
.entity-section.active {
display: block;
}
.content-grid {
display: flex;
width: 100%;
gap: 4px;
}
.content-column {
background: #ffffff;
border: 1px solid #e0e0e0;
border-radius: 8px;
padding: 8px;
flex: 1;
min-width: 200px;
overflow-wrap: break-word;
word-break: break-word;
}
.criteria-header {
font-size: 12px;
font-weight: 600;
margin-bottom: 15px;
padding-bottom: 10px;
border-bottom: 2px solid;
}
.criteria-header.higher {
color: #FF0000;
border-bottom-color: #FF0000;
}
.criteria-header.lower {
color: #2E5C8A;
border-bottom-color: #2E5C8A;
}
.summary-section {
margin-bottom: 20px;
}
.summary-text {
margin-bottom: 15px;
font-weight: 500;
color: #000000;
font-size: 15px;
}
.quote-details {
margin-top: 15px;
}
.quote-toggle {
cursor: pointer;
color: #000000;
font-weight: 500;
font-size: 16px;
background-color: #ffff00;
padding: 10px 15px;
border-radius: 4px;
display: inline-block;
}
.quote-toggle:hover {
color: #333333;
}
.quote-list {
margin-top: 15px;
padding-left: 20px;
}
.quote-list li {
margin-bottom: 12px;
font-size: 16px;
padding: 10px 15px;
line-height: 1.3;
color: #000000;
}
@media (max-width: 768px) {
.content-grid {
gap: 4px;
}
.selection-title {
text-align: center;
font-size: 14px;
font-weight: 600;
color: #666666;
margin-bottom: 10px;
}
.nav-pills {
justify-content: flex-start;
}
.nav-pill {
font-size: 16px;
padding: 4px 8px;
}
}
</style>
</head>
<body>
<div class="container">
<h1>2.1 Compromise of privacy by obtaining, leaking or correctly inferring sensitive information - Vulnerability (Sectors)</h1>
<div class="selection-title">Select a sector:</div>
<div class="nav-pills">
<button class="nav-pill active" data-target="EducationalServices">
Educational Services
</button>
<button class="nav-pill" data-target="HealthCareandSocialAssistance">
Health Care and Social Assistance
</button>
<button class="nav-pill" data-target="ArtsEntertainmentRecreation">
Arts Entertainment Recreation
</button>
<button class="nav-pill" data-target="AccommodationFoodOtherServices">
Accommodation Food Other Services
</button>
</div>
<div class="content-sections">
<div class="entity-section active" id="EducationalServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Multiple respondents emphasized high-to-extreme vulnerability because educational institutions increasingly use AI for personalized learning, student data analysis, and administrative automation, handling sensitive personal and academic data. Breaches could impact minors, students, and institutional integrity. Institutions handle extremely sensitive student data—personal, academic, behavioral, financial, sometimes biometric. SIS/LMS platforms, tutoring/proctoring tools, admissions/financial-aid workflows, and teacher/staff use of AI over student work create regular model contact with identifiable content. Records include minors' data, grades, IEPs/disability accommodations, immigration and aid info where harms from leakage are significant and long-lived with regulatory implications.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Educational Services - moved to High
Exposure: SIS/LMS platforms, tutoring/proctoring tools, admissions/financial-aid workflows, and teacher/staff use of LLMs over student work create regular model contact with identifiable content; districts often mix vendors, creating broad logging/telemetry surfaces.
Sensitivity: Records include minors' data, grades, IEPs/disability accommodations, immigration and aid info; harms from leakage or inference (e.g., disability/discipline status) are significant and long-lived, with FERPA/COPPA/state-law implications.
Why High (not Extreme): Many deployments keep strict access controls and vendor segregation. I would move to Extreme where proctoring/biometric video, audio, or full transcript logs are retained or centrally searchable across systems."</li> <li>"Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data. Educational and Professional Services are also highly vulnerable. Sectors with less personal data collection show lower vulnerability to privacy compromise."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="HealthCareandSocialAssistance">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Multiple respondents emphasized extreme vulnerability because AI is used for diagnostics, patient monitoring, and administrative tasks with highly sensitive personal data. Breaches could directly harm individuals and violate privacy regulations with maximum exposure and sensitivity. One changed rating to extremely vulnerable (from highly) due to large potential for abuse, particularly by insurance companies, despite mostly good privacy practices in healthcare. The sector handles data that when compromised has severe consequences.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data. Educational and Professional Services are also highly vulnerable. Sectors with less personal data collection show lower vulnerability to privacy compromise."</li> <li>"My assessments are highly aligned to the consensus of other experts. The main area of divergence is for healthcare and social assistance. While my assessment on that was "highly vulnerable" rather than "extremely vulnerable" due to the mostly good privacy practices in the healthcare field, I have changed my rating to "extremely vulnerable" (matching the consensus) because of the large potential for abuse, particularly by insurance companies."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ArtsEntertainmentRecreation">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "I note a lack of comments on the vulnerability of arts, entertainment and recreation and accommodation, food and other services. My ratings are lower than the majority. I think that I am more closely exposed to these sectors professionally than most other experts and I am confident in my lower relative ratings, mostly due to the robust and physical nature of the networks in which these systems operate and their lower penetration to full-stack tech dangers compared to, say, finance and communication sectors."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"I note a lack of comments on the vulnerability of arts, entertainment and recreation and accommodation, food and other services. My ratings are lower than the majority. I think that I am more closely exposed to these sectors professionally than most other experts and I am confident in my lower relative ratings, mostly due to the robust and physical nature of the networks in which these systems operate and their lower penetration to full-stack tech dangers compared to, say, finance and communication sectors."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<div class="entity-section" id="AccommodationFoodOtherServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Accommodation and food again have different types of data depending on the organization. A group feeding the poor probably does not record personal data about their clients has low risk. A high-end caterer has clients who are more likely to care about data collected and what is done with it. Housing for homeless people and a high-end resort or hotel have similar differences in the data available and its value."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Accommodation and food again have different types of data depending on the organization. A group feeding the poor probably does not record personal data about their clients has low risk. A high-end caterer has clients who are more likely to care about data collected and what is done with it. Housing for homeless people and a high-end resort or hotel have similar differences in the data available and its value."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Experts note vulnerability varies by clientele - homeless shelters with minimal data face low risk while high-end hotels with valuable client data face higher exposure. One expert with sector experience rates vulnerability lower than consensus, citing robust physical networks and lower tech penetration compared to finance. The sector handles customer service and bookings but rarely highly sensitive information.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Accommodation and food again have different types of data depending on the organization. A group feeding the poor probably does not record personal data about their clients has low risk. A high-end caterer has clients who are more likely to care about data collected and what is done with it. Housing for homeless people and a high-end resort or hotel have similar differences in the data available and its value."</li> <li>"I note a lack of comments on the vulnerability of arts, entertainment and recreation and accommodation, food and other services. My ratings are lower than the majority. I think that I am more closely exposed to these sectors professionally than most other experts and I am confident in my lower relative ratings, mostly due to the robust and physical nature of the networks in which these systems operate and their lower penetration to full-stack tech dangers compared to, say, finance and communication sectors."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="entity-section" id="FinanceandInsurance">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Multiple respondents emphasized extreme vulnerability because AI is used for fraud detection, credit scoring, and customer service, processing highly sensitive financial and personal data where leaks or inferences could have severe consequences. These sectors are data-rich, highly regulated, tightly interconnected, and mission-critical, making AI both a force multiplier and potential single point of failure. High adoption in financial institutions makes them more vulnerable. The sector is among the 16 critical infrastructure sectors most exposed to AI risk.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (3)</summary>
<ul class="quote-list">
<li>"Finance, insurance, and the 16 critical infrastructure sectors (as defined by CISA in the U.S.) are among the most exposed industries to AI risk, and are extremely vulnerable from an AI risk perspective. These sectors are data-rich, highly regulated, tightly interconnected, and mission-critical - which makes AI both a force multiplier and a potential single point of failure."</li> <li>"Vulnerability by sector is likely linked to the adoption rate. High adoption in Financial institutions make them more vulnerable where sectors will look AI adoption will logically have less exposure/vulnerability. Might be interesting to see correlation between adoption rate vs vulnerability in a graphical format in the final report."</li> <li>"Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data. Educational and Professional Services are also highly vulnerable. Sectors with less personal data collection show lower vulnerability to privacy compromise."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="Information">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Increased my evaluation of information sector. However it will be highly contingent on the the types of information services being provided, and how they may relate to or be used to infer personal information."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Increased my evaluation of information sector. However it will be highly contingent on the the types of information services being provided, and how they may relate to or be used to infer personal information."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ProfessionalandTechnicalServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> vulnerability due to handling highly sensitive personal data; handle information that is just as sensitive as healthcare or finance -- but subject to far less regulation, so the vulnerability levels ought to reflect that.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data. Educational and Professional Services are also highly vulnerable. Sectors with less personal data collection show lower vulnerability to privacy compromise."</li> <li>"Real estate | Professional services | Scientific research | Admin: All of these sectors to some extent handle information that is just as sensitive as healthcare or finance -- but subject to far less regulation, so the vulnerability levels ought to reflect that."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ScientificServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One comment: "This sector to some extent handle information that is just as sensitive as healthcare or finance -- but subject to far less regulation, so the vulnerability levels ought to reflect that."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Real estate | Professional services | Scientific research | Admin: All of these sectors to some extent handle information that is just as sensitive as healthcare or finance -- but subject to far less regulation, so the vulnerability levels ought to reflect that."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ManagementAdministrativeSupportServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Respondents noted moderate-to-high vulnerability because these services use AI for scheduling, HR analytics, and operational support, handling moderate amounts of employee and customer data. While they may not handle highly sensitive data directly, they often interface with systems that do. Risks include leaks of personal information through misconfigured AI tools or chatbots, and inference risks where AI in hiring or HR processes deduces sensitive traits leading to discrimination or privacy breaches. However, this is a diverse set with different resources and data—cleaning services have low risk while private equity using AI for holdings and strategy has much higher risk due to high-value data. These sectors contain very interesting information making them vulnerable, and handle information as sensitive as healthcare or finance but subject to far less regulation.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (3)</summary>
<ul class="quote-list">
<li>"Management, Administrative, Support Services are containing very interesting information and therefore highly vulnerable"</li> <li>"As with my prior comment on AI stakeholders, Management, Administrative, Support Services is a diverse set with different resources and different data they work with. Cleaning services have low risk unless they deploy robots to empty trash and mop floors. Private equity using AI to manage their holdings and develop strategy is a completely different matter, because the data they work is often high value with and ramifications of risk being realized being larger dollar amounts."</li> <li>"Real estate | Professional services | Scientific research | Admin: All of these sectors to some extent handle information that is just as sensitive as healthcare or finance -- but subject to far less regulation, so the vulnerability levels ought to reflect that."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "As with my prior comment on AI stakeholders, Management, Administrative, Support Services is a diverse set with different resources and different data they work with. Cleaning services have low risk unless they deploy robots to empty trash and mop floors. Private equity using AI to manage their holdings and develop strategy is a completely different matter, because the data they work is often high value with and ramifications of risk being realized being larger dollar amounts."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"As with my prior comment on AI stakeholders, Management, Administrative, Support Services is a diverse set with different resources and different data they work with. Cleaning services have low risk unless they deploy robots to empty trash and mop floors. Private equity using AI to manage their holdings and develop strategy is a completely different matter, because the data they work is often high value with and ramifications of risk being realized being larger dollar amounts."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<div class="entity-section" id="EducationalServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Multiple respondents emphasized high-to-extreme vulnerability because educational institutions increasingly use AI for personalized learning, student data analysis, and administrative automation, handling sensitive personal and academic data. Breaches could impact minors, students, and institutional integrity. Institutions handle extremely sensitive student data—personal, academic, behavioral, financial, sometimes biometric. SIS/LMS platforms, tutoring/proctoring tools, admissions/financial-aid workflows, and teacher/staff use of AI over student work create regular model contact with identifiable content. Records include minors' data, grades, IEPs/disability accommodations, immigration and aid info where harms from leakage are significant and long-lived with regulatory implications.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Educational Services - moved to High
Exposure: SIS/LMS platforms, tutoring/proctoring tools, admissions/financial-aid workflows, and teacher/staff use of LLMs over student work create regular model contact with identifiable content; districts often mix vendors, creating broad logging/telemetry surfaces.
Sensitivity: Records include minors' data, grades, IEPs/disability accommodations, immigration and aid info; harms from leakage or inference (e.g., disability/discipline status) are significant and long-lived, with FERPA/COPPA/state-law implications.
Why High (not Extreme): Many deployments keep strict access controls and vendor segregation. I would move to Extreme where proctoring/biometric video, audio, or full transcript logs are retained or centrally searchable across systems."</li> <li>"Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data. Educational and Professional Services are also highly vulnerable. Sectors with less personal data collection show lower vulnerability to privacy compromise."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="HealthCareandSocialAssistance">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Multiple respondents emphasized extreme vulnerability because AI is used for diagnostics, patient monitoring, and administrative tasks with highly sensitive personal data. Breaches could directly harm individuals and violate privacy regulations with maximum exposure and sensitivity. One changed rating to extremely vulnerable (from highly) due to large potential for abuse, particularly by insurance companies, despite mostly good privacy practices in healthcare. The sector handles data that when compromised has severe consequences.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data. Educational and Professional Services are also highly vulnerable. Sectors with less personal data collection show lower vulnerability to privacy compromise."</li> <li>"My assessments are highly aligned to the consensus of other experts. The main area of divergence is for healthcare and social assistance. While my assessment on that was "highly vulnerable" rather than "extremely vulnerable" due to the mostly good privacy practices in the healthcare field, I have changed my rating to "extremely vulnerable" (matching the consensus) because of the large potential for abuse, particularly by insurance companies."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="ArtsEntertainmentRecreation">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "I note a lack of comments on the vulnerability of arts, entertainment and recreation and accommodation, food and other services. My ratings are lower than the majority. I think that I am more closely exposed to these sectors professionally than most other experts and I am confident in my lower relative ratings, mostly due to the robust and physical nature of the networks in which these systems operate and their lower penetration to full-stack tech dangers compared to, say, finance and communication sectors."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"I note a lack of comments on the vulnerability of arts, entertainment and recreation and accommodation, food and other services. My ratings are lower than the majority. I think that I am more closely exposed to these sectors professionally than most other experts and I am confident in my lower relative ratings, mostly due to the robust and physical nature of the networks in which these systems operate and their lower penetration to full-stack tech dangers compared to, say, finance and communication sectors."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<div class="entity-section" id="AccommodationFoodOtherServices">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Accommodation and food again have different types of data depending on the organization. A group feeding the poor probably does not record personal data about their clients has low risk. A high-end caterer has clients who are more likely to care about data collected and what is done with it. Housing for homeless people and a high-end resort or hotel have similar differences in the data available and its value."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Accommodation and food again have different types of data depending on the organization. A group feeding the poor probably does not record personal data about their clients has low risk. A high-end caterer has clients who are more likely to care about data collected and what is done with it. Housing for homeless people and a high-end resort or hotel have similar differences in the data available and its value."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Experts note vulnerability varies by clientele - homeless shelters with minimal data face low risk while high-end hotels with valuable client data face higher exposure. One expert with sector experience rates vulnerability lower than consensus, citing robust physical networks and lower tech penetration compared to finance. The sector handles customer service and bookings but rarely highly sensitive information.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Accommodation and food again have different types of data depending on the organization. A group feeding the poor probably does not record personal data about their clients has low risk. A high-end caterer has clients who are more likely to care about data collected and what is done with it. Housing for homeless people and a high-end resort or hotel have similar differences in the data available and its value."</li> <li>"I note a lack of comments on the vulnerability of arts, entertainment and recreation and accommodation, food and other services. My ratings are lower than the majority. I think that I am more closely exposed to these sectors professionally than most other experts and I am confident in my lower relative ratings, mostly due to the robust and physical nature of the networks in which these systems operate and their lower penetration to full-stack tech dangers compared to, say, finance and communication sectors."</li>
</ul>
</details>
</div>
</div>
</div>
</div>
<div class="entity-section" id="TradeTransportationUtilities">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One comment: "Trade, transportation, utilities: These sectors are increasingly sophisticated at delivering "personalized" (or more pinpointed) services; the ability to through these services to either maliciously or inadvertently compromise people's privacy is only rising. Also, I'm not sure if autonomous vehicles are in scope, but if they are, the vulnerability is even greater."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Trade, transportation, utilities: These sectors are increasingly sophisticated at delivering "personalized" (or more pinpointed) services; the ability to through these services to either maliciously or inadvertently compromise people's privacy is only rising. Also, I'm not sure if autonomous vehicles are in scope, but if they are, the vulnerability is even greater."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="RealEstateRentalLeasing">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One comment: "Exposure: Leasing CRMs, tenant-screening tools, payments, maintenance/ticketing, access control/IoT, and lease-abstraction/chatbots mean frequent LLM/RAG use over leases, IDs, paystubs, and background-check data. Logs/telemetry and multi-vendor pipelines increase touchpoints. Sensitivity: Data often includes SSNs, bank details, employment/income, biometrics/geolocation, and background checks-leakage or correct inference can drive fraud, doxxing, FCRA/GLBA/CCPA exposure, and tenant-harassment risks"</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (2)</summary>
<ul class="quote-list">
<li>"Real Estate & Rental & Leasing - moved to High
Exposure: Leasing CRMs, tenant-screening tools, payments, maintenance/ticketing, access control/IoT, and lease-abstraction/chatbots mean frequent LLM/RAG use over leases, IDs, paystubs, and background-check data. Logs/telemetry and multi-vendor pipelines increase touchpoints.
Sensitivity: Data often includes SSNs, bank details, employment/income, biometrics/geolocation, and background checks-leakage or correct inference can drive fraud, doxxing, FCRA/GLBA/CCPA exposure, and tenant-harassment risks.
Why High (not Extreme): Many operators can segment data, mask documents, and use zero-retention inference or "no-training" vendor terms. I would revisit to Extreme if raw tenant PII flows into model logs, screening outputs, or third-party LLMs with retention."</li> <li>"Real estate | Professional services | Scientific research | Admin: All of these sectors to some extent handle information that is just as sensitive as healthcare or finance -- but subject to far less regulation, so the vulnerability levels ought to reflect that."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="PublicAdministrationexcludingNationalSecurity">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> Citizen-service portals, benefits/tax/permits casework, and AI assistants for intake/summarization/RAG routinely handle cross-agency records, with legacy systems and multi-vendor stacks adding misconfiguration and logging risk. Files contain extensive PII/financial/health-adjacent data on vulnerable populations where compromise undermines public trust and triggers statutory breach duties. There's often datasets covering multiple services where more personal information or characteristics can be inferred, especially if AI is applied across datasets.</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (3)</summary>
<ul class="quote-list">
<li>"Public Administration (excl. National Security) - kept at High
Exposure: Citizen-service portals, benefits/tax/permits casework, and AI assistants for intake/summarization/RAG routinely handle cross-agency records; legacy systems and multi-vendor stacks add misconfiguration and logging risk.
Sensitivity: Files contain extensive PII/financial/health-adjacent data on vulnerable populations; compromise or correct inference undermines public trust and can trigger statutory breach duties and legal exposure.
Why not Extreme: Many agencies use compartmentalized systems, formal DPIAs, and strict retention/FOIA processes that reduce broad plaintext access. I would rate Extreme for agencies processing particularly sensitive files at scale (e.g., welfare/health, child services, criminal justice) with model/output logs retained by vendors."</li> <li>"Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data. Educational and Professional Services are also highly vulnerable. Sectors with less personal data collection show lower vulnerability to privacy compromise."</li> <li>"Increased assessment of public administration, after evaluating that there is often datasets covering multiple services and that more personal information or characteristics can be inferred, especially if AI is applied across data sets."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
<div class="entity-section" id="NationalSecurity">
<div class="content-grid">
<div class="content-column">
<h3 class="criteria-header higher">Reasons for Higher Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> One expert commented: "Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data."</p>
<details class="quote-details">
<summary class="quote-toggle">See all expert comments (1)</summary>
<ul class="quote-list">
<li>"Healthcare, Finance, National Security, and Public Administration face extreme vulnerability due to handling highly sensitive personal data. Educational and Professional Services are also highly vulnerable. Sectors with less personal data collection show lower vulnerability to privacy compromise."</li>
</ul>
</details>
</div>
</div>
<div class="content-column">
<h3 class="criteria-header lower">Reasons for Lower Vulnerability</h3>
<div class="summary-section">
<p class="summary-text"><strong>AI-generated summary:</strong> [NO EXPERT COMMENTS PROVIDED]</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
document.addEventListener('DOMContentLoaded', function() {
const pills = document.querySelectorAll('.nav-pill');
const sections = document.querySelectorAll('.entity-section');
pills.forEach(pill => {
pill.addEventListener('click', function() {
pills.forEach(p => p.classList.remove('active'));
sections.forEach(s => s.classList.remove('active'));
this.classList.add('active');
const targetId = this.getAttribute('data-target');
const targetSection = document.getElementById(targetId);
if (targetSection) {
targetSection.classList.add('active');
}
});
});
});
</script>
</body>
</html>